From 9a095602f87c945dcfd832451e0f6136ec9df5df Mon Sep 17 00:00:00 2001 From: Yara Tercero Date: Mon, 17 Apr 2023 14:05:55 -0700 Subject: [PATCH 001/144] [Security Solution][Exceptions] - Fix exception operator logic when mapping conflict (#155071) ## Summary Addresses https://github.com/elastic/kibana/issues/154962 . --- .../src/helpers/index.test.ts | 40 ++++++++++++++++++- .../src/helpers/index.ts | 10 ++++- .../src/types/index.ts | 10 ++--- .../tsconfig.json | 3 +- .../components/builder/entry_renderer.tsx | 10 +++-- 5 files changed, 61 insertions(+), 12 deletions(-) diff --git a/packages/kbn-securitysolution-list-utils/src/helpers/index.test.ts b/packages/kbn-securitysolution-list-utils/src/helpers/index.test.ts index 31a5ba496647f..6e06731798cc5 100644 --- a/packages/kbn-securitysolution-list-utils/src/helpers/index.test.ts +++ b/packages/kbn-securitysolution-list-utils/src/helpers/index.test.ts @@ -6,7 +6,7 @@ * Side Public License, v 1. */ -import { getMappingConflictsInfo } from '.'; +import { getMappingConflictsInfo, fieldSupportsMatches } from '.'; describe('Helpers', () => { describe('getMappingConflictsInfo', () => { @@ -143,4 +143,42 @@ describe('Helpers', () => { ]); }); }); + + describe('fieldSupportsMatches', () => { + test('it returns true if esTypes is keyword', () => { + expect( + fieldSupportsMatches({ name: 'field', type: 'conflict', esTypes: ['keyword'] }) + ).toBeTruthy(); + }); + + test('it returns true if one of the esTypes is kibana type string and another is not', () => { + expect( + fieldSupportsMatches({ name: 'field', type: 'conflict', esTypes: ['keyword', 'object'] }) + ).toBeTruthy(); + }); + + test('it returns true if one of the esTypes is keyword', () => { + expect( + fieldSupportsMatches({ name: 'field', type: 'conflict', esTypes: ['keyword', 'unmapped'] }) + ).toBeTruthy(); + }); + + test('it returns true if one of the esTypes is text', () => { + expect( + fieldSupportsMatches({ name: 'field', type: 'conflict', esTypes: ['text', 'unmapped'] }) + ).toBeTruthy(); + }); + + test('it returns true if all of the esTypes is map to kibana type string', () => { + expect( + fieldSupportsMatches({ name: 'field', type: 'conflict', esTypes: ['text', 'keyword'] }) + ).toBeTruthy(); + }); + + test('it returns false if none of the esTypes map to kibana type string', () => { + expect( + fieldSupportsMatches({ name: 'field', type: 'conflict', esTypes: ['bool', 'unmapped'] }) + ).toBeFalsy(); + }); + }); }); diff --git a/packages/kbn-securitysolution-list-utils/src/helpers/index.ts b/packages/kbn-securitysolution-list-utils/src/helpers/index.ts index 403b07c0ba058..42a442d7e3be1 100644 --- a/packages/kbn-securitysolution-list-utils/src/helpers/index.ts +++ b/packages/kbn-securitysolution-list-utils/src/helpers/index.ts @@ -35,6 +35,7 @@ import { getDataViewFieldSubtypeNested, isDataViewFieldSubtypeNested, } from '@kbn/es-query'; +import { castEsToKbnFieldTypeName, KBN_FIELD_TYPES } from '@kbn/field-types'; import { ALL_OPERATORS, @@ -676,8 +677,13 @@ export const getEntryOnOperatorChange = ( } }; -const fieldSupportsMatches = (field: DataViewFieldBase) => { - return field.type === 'string'; +export const isKibanaStringType = (type: string) => { + const kbnFieldType = castEsToKbnFieldTypeName(type); + return kbnFieldType === KBN_FIELD_TYPES.STRING; +}; + +export const fieldSupportsMatches = (field: DataViewFieldBase) => { + return field.esTypes?.some(isKibanaStringType); }; /** diff --git a/packages/kbn-securitysolution-list-utils/src/types/index.ts b/packages/kbn-securitysolution-list-utils/src/types/index.ts index ccd0ab68799bb..e73381fc2d151 100644 --- a/packages/kbn-securitysolution-list-utils/src/types/index.ts +++ b/packages/kbn-securitysolution-list-utils/src/types/index.ts @@ -26,6 +26,10 @@ import { EXCEPTION_LIST_NAMESPACE_AGNOSTIC, } from '@kbn/securitysolution-list-constants'; +export interface DataViewField extends DataViewFieldBase { + conflictDescriptions?: Record; +} + export interface OperatorOption { message: string; value: string; @@ -35,7 +39,7 @@ export interface OperatorOption { export interface FormattedBuilderEntry { id: string; - field: DataViewFieldBase | undefined; + field: DataViewField | undefined; operator: OperatorOption; value: string | string[] | undefined; nested: 'parent' | 'child' | undefined; @@ -117,7 +121,3 @@ export const exceptionListAgnosticSavedObjectType = EXCEPTION_LIST_NAMESPACE_AGN export type SavedObjectType = | typeof EXCEPTION_LIST_NAMESPACE | typeof EXCEPTION_LIST_NAMESPACE_AGNOSTIC; - -export interface DataViewField extends DataViewFieldBase { - conflictDescriptions?: Record; -} diff --git a/packages/kbn-securitysolution-list-utils/tsconfig.json b/packages/kbn-securitysolution-list-utils/tsconfig.json index c0aaedaafd845..d75eb1f98314c 100644 --- a/packages/kbn-securitysolution-list-utils/tsconfig.json +++ b/packages/kbn-securitysolution-list-utils/tsconfig.json @@ -16,7 +16,8 @@ "@kbn/securitysolution-io-ts-list-types", "@kbn/securitysolution-io-ts-utils", "@kbn/securitysolution-list-constants", - "@kbn/securitysolution-utils" + "@kbn/securitysolution-utils", + "@kbn/field-types" ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx b/x-pack/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx index 708fced42af4f..e5a5cf4fd14ba 100644 --- a/x-pack/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx +++ b/x-pack/plugins/lists/public/exceptions/components/builder/entry_renderer.tsx @@ -221,7 +221,7 @@ export const BuilderEntryItem: React.FC = ({ <> = ({ } arrowDisplay="none" + data-test-subj="mappingConflictsAccordion" >
{conflictsInfo.map((info) => { @@ -265,8 +266,9 @@ export const BuilderEntryItem: React.FC = ({ const customOptionText = entry.nested == null && allowCustomOptions ? i18n.CUSTOM_COMBOBOX_OPTION_TEXT : undefined; + const helpText = - entry.field?.type !== 'conflict' ? ( + entry.field?.conflictDescriptions == null ? ( customOptionText ) : ( <> @@ -422,7 +424,9 @@ export const BuilderEntryItem: React.FC = ({ } const warning = validateFilePathInput({ os, value: wildcardValue }); actualWarning = - warning === FILENAME_WILDCARD_WARNING ? getWildcardWarning(warning) : warning; + warning === FILENAME_WILDCARD_WARNING + ? warning && getWildcardWarning(warning) + : warning; } return ( From ce912a923155291a7358145fe79c69051abda8c3 Mon Sep 17 00:00:00 2001 From: Nicolas Chaulet Date: Mon, 17 Apr 2023 18:06:35 -0400 Subject: [PATCH 002/144] [Fleet] Fix request diagnostics tests (#155092) --- .../apis/agents/request_diagnostics.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts b/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts index 7f5ad510723d3..492be32f22861 100644 --- a/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts +++ b/x-pack/test/fleet_api_integration/apis/agents/request_diagnostics.ts @@ -44,7 +44,7 @@ export default function (providerContext: FtrProviderContext) { .set('kbn-xsrf', 'xxx') .expect(200); - verifyActionResult(1); + await verifyActionResult(1); }); it('/agents/bulk_request_diagnostics should work for multiple agents by id', async () => { @@ -55,7 +55,7 @@ export default function (providerContext: FtrProviderContext) { agents: ['agent2', 'agent3'], }); - verifyActionResult(2); + await verifyActionResult(2); }); it('/agents/bulk_request_diagnostics should work for multiple agents by kuery', async () => { @@ -67,7 +67,7 @@ export default function (providerContext: FtrProviderContext) { }) .expect(200); - verifyActionResult(4); + await verifyActionResult(4); }); it('/agents/bulk_request_diagnostics should work for multiple agents by kuery in batches async', async () => { From 28b1f96d47aa85bfadd8908864a925b6b0d94be3 Mon Sep 17 00:00:00 2001 From: Rickyanto Ang Date: Mon, 17 Apr 2023 15:18:27 -0700 Subject: [PATCH 003/144] [Cloud Posture] Fix for Flaky test Column Sort (#154877) ## Summary This PR for fixing the 'Flakiness' for our FTR Column Sort test cases. The fix includes adding a 1 second delay or sleep between the test clicking on the column its trying to sort and the test getting values for that column. There seems to be a problem from time to time where the values on that column is not correct for a split second after clicking on the column to sort it. Adding 1 second delay allows enough time for the column to sort and show the correct value before we get the value for comparison with the sorted (using our sorting function on the test) This delay also fix the issue where the test fails because it checks for an element while the page is still loading. I ran this 'fix' on our flaky test runner for over 1000 runs and it hasn't fail so far, whereas back then It would fail 3-4 times out of 450 runs ### Some other stuff that I tried before choosing this fix includes: - Breaking the Column sort test cases into smaller test, currently we test all Column sort in 1 test thus when 1 fail it might fail the next one too. - wait until loading element doesn't exist but I seem to be encountering some issue when i use waitFor. Thus, I switch it to check if loading element don't exist but It doesnt seem to help that much on fixing column sort issue --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../pages/findings.ts | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/x-pack/test/cloud_security_posture_functional/pages/findings.ts b/x-pack/test/cloud_security_posture_functional/pages/findings.ts index 8877bc8146804..a35200d540069 100644 --- a/x-pack/test/cloud_security_posture_functional/pages/findings.ts +++ b/x-pack/test/cloud_security_posture_functional/pages/findings.ts @@ -175,8 +175,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { }); }); - // FLAKY: https://github.com/elastic/kibana/issues/152913 - describe.skip('Table Sort', () => { + describe('Table Sort', () => { type SortingMethod = (a: string, b: string) => number; type SortDirection = 'asc' | 'desc'; // Sort by lexical order will sort by the first character of the string (case-sensitive) @@ -187,6 +186,11 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { return a.localeCompare(b); }; + /* This sleep or delay is added to allow some time for the column to settle down before we get the value and to prevent the test from getting the wrong value*/ + const sleep = (num: number) => { + return new Promise((res) => setTimeout(res, num)); + }; + it('sorts by a column, should be case sensitive/insensitive depending on the column', async () => { type TestCase = [string, SortDirection, SortingMethod]; const testCases: TestCase[] = [ @@ -201,13 +205,19 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { ]; for (const [columnName, dir, sortingMethod] of testCases) { await latestFindingsTable.toggleColumnSort(columnName, dir); + /* This sleep or delay is added to allow some time for the column to settle down before we get the value and to prevent the test from getting the wrong value*/ + await sleep(1000); const values = (await latestFindingsTable.getColumnValues(columnName)).filter(Boolean); expect(values).to.not.be.empty(); - const sorted = values .slice() .sort((a, b) => (dir === 'asc' ? sortingMethod(a, b) : sortingMethod(b, a))); - values.forEach((value, i) => expect(value).to.be(sorted[i])); + values.forEach((value, i) => { + expect(value).to.be.eql( + sorted[i], + `Row number ${i + 1} missmatch, expected value: ${value}. Instead got: ${sorted[i]}` + ); + }); } }); }); From 0a5b4233d16addb309eb9ca980fcf9af2cc68074 Mon Sep 17 00:00:00 2001 From: Karl Godard Date: Mon, 17 Apr 2023 16:22:28 -0700 Subject: [PATCH 004/144] Session view and k8s dashboard fixes (#154982) ## Summary - fixes some issues in session_view wrt to logs-cloud_defend.process* data. - added a 'collapse all' children feature. with sticky scroll session leader! - k8s dashboard session table: user.name -> user.id (id is more likely to be set for both endpoint and cloud-defend) - Fixed a major bug when 'searching within terminal'. If a process is highlighted it would cause kibana to blow up. - session view handling of session leader user info improved. - codeowners updated. awp-viz -> sec-cloudnative-integrations - a badge will be added to the selector header when it's not in used by a response flow ### Screenshots ![image](https://user-images.githubusercontent.com/16198204/232567236-98e57a3a-913c-4a25-8271-e1ee138b25dd.png) Sticky session leader demo: https://www.loom.com/share/b039e48fdfd647b291f293d643339660 ### Checklist Delete any items that are not applicable to this PR. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .github/CODEOWNERS | 8 ++-- api_docs/kubernetes_security.mdx | 2 +- api_docs/plugin_directory.mdx | 4 +- api_docs/session_view.mdx | 2 +- renovate.json | 2 +- .../cloud_defend/public/common/utils.test.ts | 3 +- .../components/control_general_view/index.tsx | 5 +++ .../control_general_view/translations.ts | 8 ++++ .../index.test.tsx | 7 +++ .../control_general_view_selector/index.tsx | 28 +++++++----- .../hooks/policy_schema.json | 20 --------- .../control_yaml_view/index.test.tsx | 2 +- .../plugins/cloud_defend/public/test/mocks.ts | 4 +- x-pack/plugins/cloud_defend/public/types.ts | 9 +--- .../plugins/kubernetes_security/kibana.jsonc | 2 +- .../__snapshots__/index.test.tsx.snap | 2 +- .../sessions_viewer/default_headers.ts | 6 +-- .../sessions_viewer/translations.ts | 6 +-- .../common/types/process_tree/index.ts | 2 +- x-pack/plugins/session_view/kibana.jsonc | 2 +- .../detail_panel_alert_list_item/index.tsx | 4 +- .../public/components/process_tree/helpers.ts | 14 ++++++ .../public/components/process_tree/index.tsx | 12 ++++++ .../public/components/process_tree/styles.ts | 2 - .../__snapshots__/index.test.tsx.snap | 2 + .../process_tree_node/index.test.tsx | 2 +- .../components/process_tree_node/index.tsx | 43 ++++++++++++++++--- .../components/process_tree_node/styles.ts | 26 ++++++++--- .../process_tree_node/text_highlight.tsx | 1 - .../public/components/session_view/index.tsx | 4 ++ .../utils/alert_category_display_test.test.ts | 10 ++--- .../utils/alert_category_display_text.ts | 2 +- .../translations/translations/fr-FR.json | 2 - .../translations/translations/ja-JP.json | 2 - .../translations/translations/zh-CN.json | 2 - 35 files changed, 162 insertions(+), 90 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d2825a26e3b15..80515067f7294 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -431,7 +431,7 @@ src/plugins/kibana_overview @elastic/appex-sharedux src/plugins/kibana_react @elastic/appex-sharedux src/plugins/kibana_usage_collection @elastic/kibana-core src/plugins/kibana_utils @elastic/kibana-app-services -x-pack/plugins/kubernetes_security @elastic/awp-viz +x-pack/plugins/kubernetes_security @elastic/sec-cloudnative-integrations packages/kbn-language-documentation-popover @elastic/kibana-visualizations x-pack/plugins/lens @elastic/kibana-visualizations x-pack/plugins/license_api_guard @elastic/platform-deployment-management @@ -567,7 +567,7 @@ packages/kbn-securitysolution-utils @elastic/security-solution-platform packages/kbn-server-http-tools @elastic/kibana-core packages/kbn-server-route-repository @elastic/apm-ui test/plugin_functional/plugins/session_notifications @elastic/kibana-core -x-pack/plugins/session_view @elastic/awp-viz +x-pack/plugins/session_view @elastic/sec-cloudnative-integrations packages/kbn-set-map @elastic/kibana-operations examples/share_examples @elastic/kibana-app-services src/plugins/share @elastic/appex-sharedux @@ -1176,8 +1176,8 @@ x-pack/plugins/security_solution/cypress/README.md @elastic/security-engineering x-pack/test/security_solution_cypress @elastic/security-engineering-productivity ## Security Solution sub teams - adaptive-workload-protection -x-pack/plugins/security_solution/public/common/components/sessions_viewer @elastic/awp-viz -x-pack/plugins/security_solution/public/kubernetes @elastic/awp-viz +x-pack/plugins/security_solution/public/common/components/sessions_viewer @elastic/sec-cloudnative-integrations +x-pack/plugins/security_solution/public/kubernetes @elastic/sec-cloudnative-integrations ## Security Solution sub teams - Protections Experience x-pack/plugins/security_solution/public/threat_intelligence @elastic/protections-experience diff --git a/api_docs/kubernetes_security.mdx b/api_docs/kubernetes_security.mdx index 29bf1e5b35372..9d881e0618bfe 100644 --- a/api_docs/kubernetes_security.mdx +++ b/api_docs/kubernetes_security.mdx @@ -15,7 +15,7 @@ import kubernetesSecurityObj from './kubernetes_security.devdocs.json'; -Contact [@elastic/awp-viz](https://github.com/orgs/elastic/teams/awp-viz) for questions regarding this plugin. +Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) for questions regarding this plugin. **Code health stats** diff --git a/api_docs/plugin_directory.mdx b/api_docs/plugin_directory.mdx index 5cc6aad4ef05d..ed98c651524f0 100644 --- a/api_docs/plugin_directory.mdx +++ b/api_docs/plugin_directory.mdx @@ -113,7 +113,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 185 | 1 | 153 | 5 | | kibanaUsageCollection | [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 | | | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 609 | 3 | 416 | 9 | -| | [@elastic/awp-viz](https://github.com/orgs/elastic/teams/awp-viz) | - | 3 | 0 | 3 | 1 | +| | [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) | - | 3 | 0 | 3 | 1 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Visualization editor allowing to quickly and easily configure compelling visualizations to use on dashboards and canvas workpads. Exposes components to embed visualizations and link into the Lens editor from within other apps in Kibana. | 608 | 0 | 513 | 53 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 8 | 0 | 8 | 0 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 4 | 0 | 4 | 1 | @@ -151,7 +151,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | searchprofiler | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides authentication and authorization features, and exposes functionality to understand the capabilities of the currently authenticated user. | 280 | 0 | 94 | 0 | | | [@elastic/security-solution](https://github.com/orgs/elastic/teams/security-solution) | - | 117 | 0 | 76 | 27 | -| | [@elastic/awp-viz](https://github.com/orgs/elastic/teams/awp-viz) | - | 7 | 0 | 7 | 1 | +| | [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) | - | 7 | 0 | 7 | 1 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Adds URL Service and sharing capabilities to Kibana | 118 | 0 | 59 | 10 | | | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 22 | 1 | 22 | 1 | | | [@elastic/kibana-security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides the Spaces feature, which allows saved objects to be organized into meaningful categories. | 253 | 0 | 65 | 0 | diff --git a/api_docs/session_view.mdx b/api_docs/session_view.mdx index 7994a4b709546..4dd6c4cd77f66 100644 --- a/api_docs/session_view.mdx +++ b/api_docs/session_view.mdx @@ -15,7 +15,7 @@ import sessionViewObj from './session_view.devdocs.json'; -Contact [@elastic/awp-viz](https://github.com/orgs/elastic/teams/awp-viz) for questions regarding this plugin. +Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/teams/sec-cloudnative-integrations) for questions regarding this plugin. **Code health stats** diff --git a/renovate.json b/renovate.json index ed5c6ee554f6a..bb1d043c30f48 100644 --- a/renovate.json +++ b/renovate.json @@ -270,7 +270,7 @@ { "groupName": "TTY Output", "matchPackageNames": ["xterm", "byte-size", "@types/byte-size"], - "reviewers": ["team:awp-viz"], + "reviewers": ["team:sec-cloudnative-integrations"], "matchBaseBranches": ["main"], "labels": ["Team: AWP: Visualization", "release_note:skip", "backport:skip"], "enabled": true, diff --git a/x-pack/plugins/cloud_defend/public/common/utils.test.ts b/x-pack/plugins/cloud_defend/public/common/utils.test.ts index f0342535d6d21..86f5d06b02365 100644 --- a/x-pack/plugins/cloud_defend/public/common/utils.test.ts +++ b/x-pack/plugins/cloud_defend/public/common/utils.test.ts @@ -54,7 +54,7 @@ describe('getSelectorConditions', () => { // check that process specific conditions are not included expect(options.includes('processExecutable')).toBeFalsy(); - expect(options.includes('processUserId')).toBeFalsy(); + expect(options.includes('sessionLeaderInteractive')).toBeFalsy(); }); it('grabs process conditions for process selectors', () => { @@ -70,7 +70,6 @@ describe('getSelectorConditions', () => { // check that process specific conditions are not included expect(options.includes('processExecutable')).toBeTruthy(); - expect(options.includes('processUserId')).toBeTruthy(); expect(options.includes('sessionLeaderInteractive')).toBeTruthy(); }); }); diff --git a/x-pack/plugins/cloud_defend/public/components/control_general_view/index.tsx b/x-pack/plugins/cloud_defend/public/components/control_general_view/index.tsx index 72a182820ae89..0a253b8c68a73 100644 --- a/x-pack/plugins/cloud_defend/public/components/control_general_view/index.tsx +++ b/x-pack/plugins/cloud_defend/public/components/control_general_view/index.tsx @@ -338,6 +338,10 @@ export const ControlGeneralView = ({ policy, onChange, show }: ViewDeps) => { {selectors.map((selector, i) => { + const usedByResponse = !!responses.find((response) => + response.match.includes(selector.name) + ); + return ( { index={i} selector={selector} selectors={selectors} + usedByResponse={usedByResponse} onDuplicate={onDuplicateSelector} onRemove={onRemoveSelector} onChange={onSelectorChange} diff --git a/x-pack/plugins/cloud_defend/public/components/control_general_view/translations.ts b/x-pack/plugins/cloud_defend/public/components/control_general_view/translations.ts index fc37da2fc6c86..d80ef8030ea6a 100644 --- a/x-pack/plugins/cloud_defend/public/components/control_general_view/translations.ts +++ b/x-pack/plugins/cloud_defend/public/components/control_general_view/translations.ts @@ -116,6 +116,14 @@ export const name = i18n.translate('xpack.cloudDefend.name', { defaultMessage: 'Name', }); +export const unusedSelector = i18n.translate('xpack.cloudDefend.unusedSelector', { + defaultMessage: 'Not in use', +}); + +export const unusedSelectorHelp = i18n.translate('xpack.cloudDefend.unusedSelectorHelp', { + defaultMessage: 'This selector is not in use by any response.', +}); + export const errorInvalidResourceLabel = i18n.translate( 'xpack.cloudDefend.errorInvalidResourceLabel', { diff --git a/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.test.tsx b/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.test.tsx index 4d3cfd0aa7623..df99541546c57 100644 --- a/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.test.tsx +++ b/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.test.tsx @@ -50,6 +50,7 @@ describe('', () => { onChange={onChange} onRemove={onRemove} onDuplicate={onDuplicate} + usedByResponse={false} /> ); @@ -68,6 +69,12 @@ describe('', () => { expect(getByTestId('cloud-defend-selectorcondition-operation')).toBeTruthy(); }); + it('renders a badge to show that the selector is unused', () => { + const { getByText } = render(); + + expect(getByText(i18n.unusedSelector)).toBeTruthy(); + }); + it('allows the user to add a limited set of operations', () => { const { getByTestId, rerender } = render(); diff --git a/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.tsx b/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.tsx index 6119e31386b5e..80ffff0a3bd6a 100644 --- a/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.tsx +++ b/x-pack/plugins/cloud_defend/public/components/control_general_view_selector/index.tsx @@ -184,6 +184,7 @@ const StringArrayCondition = ({ export const ControlGeneralViewSelector = ({ selector, selectors, + usedByResponse, index, onRemove, onDuplicate, @@ -393,17 +394,24 @@ export const ControlGeneralViewSelector = ({ css={styles.accordion} extraAction={ - {accordionState === 'closed' && ( -
- - {i18n.conditions} - - - {conditionsAdded.length} +
+ {accordionState === 'closed' && ( + <> + + {i18n.conditions} + + + {conditionsAdded.length} + + + )} + {!usedByResponse && ( + + {i18n.unusedSelector} -
-
- )} + )} +
+
', () => { ); expect(getByTestId('cloudDefendAdditionalErrors')).toBeTruthy(); - expect(getByText('"sessionLeaderName" values cannot exceed 16 bytes')).toBeTruthy(); + expect(getByText('"targetFilePath" values cannot exceed 255 bytes')).toBeTruthy(); }); }); diff --git a/x-pack/plugins/cloud_defend/public/test/mocks.ts b/x-pack/plugins/cloud_defend/public/test/mocks.ts index 0d90a8ed7ce1b..8ac1d9755bc03 100644 --- a/x-pack/plugins/cloud_defend/public/test/mocks.ts +++ b/x-pack/plugins/cloud_defend/public/test/mocks.ts @@ -55,8 +55,8 @@ export const MOCK_YAML_INVALID_STRING_ARRAY_CONDITION = `file: operation: - createExecutable - modifyExecutable - sessionLeaderName: - - reallylongsessionleadernamethatshouldnotbeallowed + targetFilePath: + - /bin/${new Array(256).fill('a').join()} responses: - match: - default diff --git a/x-pack/plugins/cloud_defend/public/types.ts b/x-pack/plugins/cloud_defend/public/types.ts index 7b35588d547e8..cd1135fefe5ac 100755 --- a/x-pack/plugins/cloud_defend/public/types.ts +++ b/x-pack/plugins/cloud_defend/public/types.ts @@ -78,9 +78,7 @@ export type SelectorCondition = | 'operation' | 'processExecutable' | 'processName' - | 'processUserId' - | 'sessionLeaderInteractive' - | 'sessionLeaderName'; + | 'sessionLeaderInteractive'; export interface SelectorConditionOptions { type: SelectorConditionType; @@ -141,9 +139,7 @@ export const SelectorConditionsMap: SelectorConditionsMapProps = { ignoreVolumeMounts: { selectorType: 'file', type: 'flag', not: ['ignoreVolumeFiles'] }, processExecutable: { selectorType: 'process', type: 'stringArray', not: ['processName'] }, processName: { selectorType: 'process', type: 'stringArray', not: ['processExecutable'] }, - processUserId: { selectorType: 'process', type: 'stringArray' }, sessionLeaderInteractive: { selectorType: 'process', type: 'boolean' }, - sessionLeaderName: { selectorType: 'process', type: 'stringArray', maxValueBytes: 16 }, }; export type ResponseAction = 'log' | 'alert' | 'block'; @@ -168,9 +164,7 @@ export interface Selector { // process selector properties processExecutable?: string[]; processName?: string[]; - processUserId?: string[]; sessionLeaderInteractive?: string[]; - sessionLeaderName?: string[]; // non yaml fields type: SelectorType; @@ -230,6 +224,7 @@ export interface ViewDeps extends SettingsDeps { export interface ControlGeneralViewSelectorDeps { selector: Selector; selectors: Selector[]; + usedByResponse: boolean; index: number; onChange(selector: Selector, index: number): void; onRemove(index: number): void; diff --git a/x-pack/plugins/kubernetes_security/kibana.jsonc b/x-pack/plugins/kubernetes_security/kibana.jsonc index e17a5dcde69d5..627ce99955b4c 100644 --- a/x-pack/plugins/kubernetes_security/kibana.jsonc +++ b/x-pack/plugins/kubernetes_security/kibana.jsonc @@ -1,7 +1,7 @@ { "type": "plugin", "id": "@kbn/kubernetes-security-plugin", - "owner": "@elastic/awp-viz", + "owner": "@elastic/sec-cloudnative-integrations", "plugin": { "id": "kubernetesSecurity", "server": true, diff --git a/x-pack/plugins/security_solution/public/common/components/sessions_viewer/__snapshots__/index.test.tsx.snap b/x-pack/plugins/security_solution/public/common/components/sessions_viewer/__snapshots__/index.test.tsx.snap index 130ac64b48310..30be4aca57ad6 100644 --- a/x-pack/plugins/security_solution/public/common/components/sessions_viewer/__snapshots__/index.test.tsx.snap +++ b/x-pack/plugins/security_solution/public/common/components/sessions_viewer/__snapshots__/index.test.tsx.snap @@ -33,7 +33,7 @@ exports[`SessionsView renders correctly against snapshot 1`] = ` Executable
- User + User ID
Interactive diff --git a/x-pack/plugins/security_solution/public/common/components/sessions_viewer/default_headers.ts b/x-pack/plugins/security_solution/public/common/components/sessions_viewer/default_headers.ts index fe40ea78369f5..48ef68679933e 100644 --- a/x-pack/plugins/security_solution/public/common/components/sessions_viewer/default_headers.ts +++ b/x-pack/plugins/security_solution/public/common/components/sessions_viewer/default_headers.ts @@ -13,7 +13,7 @@ import { DEFAULT_DATE_COLUMN_MIN_WIDTH } from '../../../timelines/components/tim import { COLUMN_SESSION_START, COLUMN_EXECUTABLE, - COLUMN_ENTRY_USER, + COLUMN_ENTRY_USER_ID, COLUMN_INTERACTIVE, COLUMN_HOST_NAME, COLUMN_ENTRY_TYPE, @@ -34,8 +34,8 @@ export const sessionsHeaders: ColumnHeaderOptions[] = [ }, { columnHeaderType: defaultColumnHeaderType, - id: 'process.entry_leader.user.name', - display: COLUMN_ENTRY_USER, + id: 'process.entry_leader.user.id', + display: COLUMN_ENTRY_USER_ID, }, { columnHeaderType: defaultColumnHeaderType, diff --git a/x-pack/plugins/security_solution/public/common/components/sessions_viewer/translations.ts b/x-pack/plugins/security_solution/public/common/components/sessions_viewer/translations.ts index 15e12212bb998..ef16595b99742 100644 --- a/x-pack/plugins/security_solution/public/common/components/sessions_viewer/translations.ts +++ b/x-pack/plugins/security_solution/public/common/components/sessions_viewer/translations.ts @@ -39,10 +39,10 @@ export const COLUMN_EXECUTABLE = i18n.translate( } ); -export const COLUMN_ENTRY_USER = i18n.translate( - 'xpack.securitySolution.sessionsView.columnEntryUser', +export const COLUMN_ENTRY_USER_ID = i18n.translate( + 'xpack.securitySolution.sessionsView.columnEntryUserID', { - defaultMessage: 'User', + defaultMessage: 'User ID', } ); diff --git a/x-pack/plugins/session_view/common/types/process_tree/index.ts b/x-pack/plugins/session_view/common/types/process_tree/index.ts index 4d8808d53999d..264d1685908ae 100644 --- a/x-pack/plugins/session_view/common/types/process_tree/index.ts +++ b/x-pack/plugins/session_view/common/types/process_tree/index.ts @@ -191,7 +191,7 @@ export interface ProcessEvent { '@timestamp'?: string; event?: { kind?: EventKind; - category?: string[]; + category?: string | string[]; action?: EventAction | EventAction[]; id?: string; }; diff --git a/x-pack/plugins/session_view/kibana.jsonc b/x-pack/plugins/session_view/kibana.jsonc index 647990ab6a977..47585565fffde 100644 --- a/x-pack/plugins/session_view/kibana.jsonc +++ b/x-pack/plugins/session_view/kibana.jsonc @@ -1,7 +1,7 @@ { "type": "plugin", "id": "@kbn/session-view-plugin", - "owner": "@elastic/awp-viz", + "owner": "@elastic/sec-cloudnative-integrations", "plugin": { "id": "sessionView", "server": true, diff --git a/x-pack/plugins/session_view/public/components/detail_panel_alert_list_item/index.tsx b/x-pack/plugins/session_view/public/components/detail_panel_alert_list_item/index.tsx index e6f68ce6ae230..cf1da761fde96 100644 --- a/x-pack/plugins/session_view/public/components/detail_panel_alert_list_item/index.tsx +++ b/x-pack/plugins/session_view/public/components/detail_panel_alert_list_item/index.tsx @@ -64,7 +64,9 @@ export const DetailPanelAlertListItem = ({ const { args, name: processName } = event.process ?? {}; const { event: processEvent } = event; const forceState = !isInvestigated ? 'open' : undefined; - const category = processEvent?.category?.[0]; + const category = Array.isArray(processEvent?.category) + ? processEvent?.category?.[0] + : processEvent?.category; const processEventAlertCategory = category ?? ProcessEventAlertCategory.process; const alertCategoryDetailDisplayText = category !== ProcessEventAlertCategory.process diff --git a/x-pack/plugins/session_view/public/components/process_tree/helpers.ts b/x-pack/plugins/session_view/public/components/process_tree/helpers.ts index 349a162d6b612..830306af4864f 100644 --- a/x-pack/plugins/session_view/public/components/process_tree/helpers.ts +++ b/x-pack/plugins/session_view/public/components/process_tree/helpers.ts @@ -266,6 +266,20 @@ export const autoExpandProcessTree = (processMap: ProcessMap, jumpToEntityId?: s return processMap; }; +// recusively collapses all children below provided node +export const collapseProcessTree = (node: Process) => { + if (!node.autoExpand) { + return; + } + + if (node.children) { + node.children.forEach((child) => { + child.autoExpand = false; + collapseProcessTree(child); + }); + } +}; + export const processNewEvents = ( eventsProcessMap: ProcessMap, events: ProcessEvent[] | undefined, diff --git a/x-pack/plugins/session_view/public/components/process_tree/index.tsx b/x-pack/plugins/session_view/public/components/process_tree/index.tsx index 9ba3845d0cab0..9dea1e07a8fdb 100644 --- a/x-pack/plugins/session_view/public/components/process_tree/index.tsx +++ b/x-pack/plugins/session_view/public/components/process_tree/index.tsx @@ -9,6 +9,7 @@ import { i18n } from '@kbn/i18n'; import { ProcessTreeNode } from '../process_tree_node'; import { BackToInvestigatedAlert } from '../back_to_investigated_alert'; import { useProcessTree } from './hooks'; +import { collapseProcessTree } from './helpers'; import { ProcessTreeLoadMoreButton } from '../process_tree_load_more_button'; import { AlertStatusEventEntityIdMap, @@ -97,6 +98,7 @@ export const ProcessTree = ({ verboseMode, jumpToEntityId, }); + const [forceRerender, setForceRerender] = useState(0); const eventsRemaining = useMemo(() => { const total = data?.[0]?.total || 0; @@ -126,6 +128,14 @@ export const ProcessTree = ({ setIsInvestigatedEventVisible(true); }, [onProcessSelected]); + const handleCollapseProcessTree = useCallback(() => { + collapseProcessTree(sessionLeader); + if (scrollerRef.current) { + scrollerRef.current.scrollTop = 0; + } + setForceRerender(Math.random()); + }, [sessionLeader]); + useEffect(() => { if (setSearchResults) { setSearchResults(searchResults); @@ -160,6 +170,7 @@ export const ProcessTree = ({ ref={scrollerRef} css={styles.sessionViewProcessTree} data-test-subj="sessionView:sessionViewProcessTree" + key={forceRerender} > {sessionLeader && ( { overflow: 'auto', height: '100%', backgroundColor: euiVars.euiColorLightestShade, - paddingTop: size.base, - paddingLeft: size.s, }; const selectionArea: CSSObject = { diff --git a/x-pack/plugins/session_view/public/components/process_tree_alert/__snapshots__/index.test.tsx.snap b/x-pack/plugins/session_view/public/components/process_tree_alert/__snapshots__/index.test.tsx.snap index c2b05ef38a3e0..39e1778dd1f4a 100644 --- a/x-pack/plugins/session_view/public/components/process_tree_alert/__snapshots__/index.test.tsx.snap +++ b/x-pack/plugins/session_view/public/components/process_tree_alert/__snapshots__/index.test.tsx.snap @@ -54,6 +54,7 @@ Object { > cmd test alert
+
cmd test alert
+
{ renderResult = mockedContext.render(); expect(renderResult.container.textContent?.replace(/\s+/g, ' ')).toEqual( - ' bash started by vagrant' + ' bash started by vagrant ' ); }); diff --git a/x-pack/plugins/session_view/public/components/process_tree_node/index.tsx b/x-pack/plugins/session_view/public/components/process_tree_node/index.tsx index fa5c16bee19bd..6ffc4415fb47b 100644 --- a/x-pack/plugins/session_view/public/components/process_tree_node/index.tsx +++ b/x-pack/plugins/session_view/public/components/process_tree_node/index.tsx @@ -20,7 +20,7 @@ import React, { RefObject, ReactElement, } from 'react'; -import { EuiButton, EuiIcon, EuiToolTip, formatDate } from '@elastic/eui'; +import { EuiButton, EuiIcon, EuiToolTip, formatDate, EuiButtonIcon } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import { chain } from 'lodash'; @@ -61,6 +61,7 @@ export interface ProcessDeps { onJumpToOutput: (entityId: string) => void; loadNextButton?: ReactElement | null; loadPreviousButton?: ReactElement | null; + handleCollapseProcessTree?: () => void; } /** @@ -83,6 +84,7 @@ export function ProcessTreeNode({ onJumpToOutput, loadPreviousButton, loadNextButton, + handleCollapseProcessTree, }: ProcessDeps) { const [childrenExpanded, setChildrenExpanded] = useState(isSessionLeader || process.autoExpand); const [alertsExpanded, setAlertsExpanded] = useState(false); @@ -133,7 +135,15 @@ export function ProcessTreeNode({ const alertTypeCounts = useMemo(() => { const alertCounts: AlertTypeCount[] = chain(alerts) - .groupBy((alert) => alert.event?.category?.[0]) + .groupBy((alert) => { + const category = alert.event?.category; + + if (Array.isArray(category)) { + return category?.[0]; + } + + return category; + }) .map((processAlerts, alertCategory) => ({ category: alertCategory as ProcessEventAlertCategory, count: processAlerts.length, @@ -176,8 +186,12 @@ export function ProcessTreeNode({ } onProcessSelected?.(process); + + if (isSessionLeader && scrollerRef.current) { + scrollerRef.current.scrollTop = 0; + } }, - [onProcessSelected, process] + [isSessionLeader, onProcessSelected, process, scrollerRef] ); const processDetails = process.getDetails(); @@ -219,6 +233,19 @@ export function ProcessTreeNode({ const children = process.getChildren(verboseMode); + const user = processDetails?.process?.user; + const userName = useMemo(() => { + if (user?.name) { + return user.name; + } else if (user?.id === '0') { + return 'root'; + } else if (user?.id) { + return `uid: ${user?.id}`; + } + + return '-'; + }, [user?.id, user?.name]); + if (!processDetails?.process) { return null; } @@ -231,7 +258,6 @@ export function ProcessTreeNode({ parent, working_directory: workingDirectory, start, - user, } = processDetails.process; const shouldRenderChildren = isSessionLeader || (childrenExpanded && children?.length > 0); @@ -275,7 +301,14 @@ export function ProcessTreeNode({ - {user?.name || 'ID: ' + user?.id} + {userName} + + ) : ( <> diff --git a/x-pack/plugins/session_view/public/components/process_tree_node/styles.ts b/x-pack/plugins/session_view/public/components/process_tree_node/styles.ts index 3936fc35aac81..32048cfd97585 100644 --- a/x-pack/plugins/session_view/public/components/process_tree_node/styles.ts +++ b/x-pack/plugins/session_view/public/components/process_tree_node/styles.ts @@ -95,7 +95,6 @@ export const useStyles = ({ display: 'block', cursor: 'pointer', position: 'relative', - marginBottom: isSessionLeader ? size.s : '0px', '&:hover:before': { backgroundColor: hoverColor, }, @@ -114,6 +113,10 @@ export const useStyles = ({ }, }; + const jumpToTop: CSSObject = { + float: 'right', + }; + const textSection: CSSObject = { marginLeft: size.s, span: { @@ -131,13 +134,23 @@ export const useStyles = ({ display: 'inline-block', verticalAlign: 'middle', }, + paddingLeft: PROCESS_TREE_LEFT_PADDING, }; - const searchHighlight = ` - color: ${colors.fullShade}; - border-radius: '0px'; - background-color: ${searchResColor}; - `; + if (isSessionLeader) { + processNode.position = 'sticky'; + processNode.top = '-' + size.base; + processNode.zIndex = 1; + processNode.borderTop = `${size.base} solid transparent`; + processNode.backgroundColor = euiVars.euiColorLightestShade; + processNode.borderBottom = border.editable; + } + + const searchHighlight: CSSObject = { + color: colors.fullShade, + borderRadius: '0px', + backgroundColor: searchResColor, + }; const wrapper: CSSObject = { paddingLeft: size.s, @@ -188,6 +201,7 @@ export const useStyles = ({ icon, textSection, sessionLeader, + jumpToTop, }; }, [depth, euiTheme, hasAlerts, hasInvestigatedAlert, isSelected, euiVars, isSessionLeader]); diff --git a/x-pack/plugins/session_view/public/components/process_tree_node/text_highlight.tsx b/x-pack/plugins/session_view/public/components/process_tree_node/text_highlight.tsx index 6d21726e0d430..c06b208e6c262 100644 --- a/x-pack/plugins/session_view/public/components/process_tree_node/text_highlight.tsx +++ b/x-pack/plugins/session_view/public/components/process_tree_node/text_highlight.tsx @@ -20,7 +20,6 @@ const css: CSSObject = { display: 'inline', fontSize: 0, lineHeight: 0, - verticalAlign: 'middle', }, }; // Component that takes an array of matching indices in a text and pass down a highlight diff --git a/x-pack/plugins/session_view/public/components/session_view/index.tsx b/x-pack/plugins/session_view/public/components/session_view/index.tsx index 955b042ff9cfb..5f52f5ff8e935 100644 --- a/x-pack/plugins/session_view/public/components/session_view/index.tsx +++ b/x-pack/plugins/session_view/public/components/session_view/index.tsx @@ -201,6 +201,10 @@ export const SessionView = ({ [onProcessSelected, searchResults] ); + useEffect(() => { + onSearchIndexChange(0); + }, [onSearchIndexChange, searchResults]); + const handleOnAlertDetailsClosed = useCallback((alertUuid: string) => { setFetchAlertStatus([alertUuid]); }, []); diff --git a/x-pack/plugins/session_view/public/utils/alert_category_display_test.test.ts b/x-pack/plugins/session_view/public/utils/alert_category_display_test.test.ts index 24b474111b860..fdc5cbedfd82e 100644 --- a/x-pack/plugins/session_view/public/utils/alert_category_display_test.test.ts +++ b/x-pack/plugins/session_view/public/utils/alert_category_display_test.test.ts @@ -21,24 +21,22 @@ describe('getAlertCategoryDisplayText(alert, category)', () => { it('should display rule name when alert category is process', () => { expect(getAlertCategoryDisplayText(mockAlerts[0], ProcessEventAlertCategory.process)).toEqual( - undefined + '' ); }); it('should display rule name when alert category is undefined', () => { - expect(getAlertCategoryDisplayText(mockAlerts[0], undefined)).toEqual(undefined); + expect(getAlertCategoryDisplayText(mockAlerts[0], undefined)).toEqual(''); }); it('should display rule name when file path is undefined', () => { const fileAlert = { ...mockFileAlert, file: {} }; - expect(getAlertCategoryDisplayText(fileAlert, ProcessEventAlertCategory.file)).toEqual( - undefined - ); + expect(getAlertCategoryDisplayText(fileAlert, ProcessEventAlertCategory.file)).toEqual(''); }); it('should display rule name when destination address is undefined and alert category is network', () => { const networkAlert = { ...mockNetworkAlert, destination: undefined }; expect(getAlertCategoryDisplayText(networkAlert, ProcessEventAlertCategory.network)).toEqual( - undefined + '' ); }); }); diff --git a/x-pack/plugins/session_view/public/utils/alert_category_display_text.ts b/x-pack/plugins/session_view/public/utils/alert_category_display_text.ts index 3ac2658f37e28..bf4c74681a2be 100644 --- a/x-pack/plugins/session_view/public/utils/alert_category_display_text.ts +++ b/x-pack/plugins/session_view/public/utils/alert_category_display_text.ts @@ -19,7 +19,7 @@ export const getAlertCategoryDisplayText = (alert: ProcessEvent, category: strin if (filePath && category === ProcessEventAlertCategory.file) return dataOrDash(filePath); if (destination?.address && category === ProcessEventAlertCategory.network) return dataOrDash(getAlertNetworkDisplay(destination)); - return; + return ''; }; export const getAlertNetworkDisplay = (destination: ProcessEventIPAddress) => { diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 74138a250ee30..bd29bb8a2554f 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -31372,7 +31372,6 @@ "xpack.securitySolution.kpiUsers.totalUsers.title": "Utilisateurs", "xpack.securitySolution.kubernetes.columnContainer": "Conteneur", "xpack.securitySolution.kubernetes.columnEntryType": "Type d’entrée", - "xpack.securitySolution.kubernetes.columnEntryUser": "Utilisateur d’entrée de session", "xpack.securitySolution.kubernetes.columnExecutable": "Leader de session", "xpack.securitySolution.kubernetes.columnInteractive": "Interactivité", "xpack.securitySolution.kubernetes.columnNode": "Nœud", @@ -32041,7 +32040,6 @@ "xpack.securitySolution.selector.summaryView.options.summaryView.description": "Afficher un rendu du flux d'événements pour chaque alerte", "xpack.securitySolution.sessionsView.columnEntrySourceIp": "IP source", "xpack.securitySolution.sessionsView.columnEntryType": "Type", - "xpack.securitySolution.sessionsView.columnEntryUser": "Utilisateur", "xpack.securitySolution.sessionsView.columnExecutable": "Exécutable", "xpack.securitySolution.sessionsView.columnHostName": "Nom d'hôte", "xpack.securitySolution.sessionsView.columnInteractive": "Interactif", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index beb0affbe3348..ea8da1ed62a78 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -31351,7 +31351,6 @@ "xpack.securitySolution.kpiUsers.totalUsers.title": "ユーザー", "xpack.securitySolution.kubernetes.columnContainer": "コンテナー", "xpack.securitySolution.kubernetes.columnEntryType": "エントリタイプ", - "xpack.securitySolution.kubernetes.columnEntryUser": "セッションエントリユーザー", "xpack.securitySolution.kubernetes.columnExecutable": "セッションリーダー", "xpack.securitySolution.kubernetes.columnInteractive": "インタラクティブ", "xpack.securitySolution.kubernetes.columnNode": "ノード", @@ -32020,7 +32019,6 @@ "xpack.securitySolution.selector.summaryView.options.summaryView.description": "各アラートのイベントフローのレンダリングを表示", "xpack.securitySolution.sessionsView.columnEntrySourceIp": "ソース IP", "xpack.securitySolution.sessionsView.columnEntryType": "型", - "xpack.securitySolution.sessionsView.columnEntryUser": "ユーザー", "xpack.securitySolution.sessionsView.columnExecutable": "実行ファイル", "xpack.securitySolution.sessionsView.columnHostName": "ホスト名", "xpack.securitySolution.sessionsView.columnInteractive": "インタラクティブ", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 505f947f0cfb3..f5b0a3c84a6ee 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -31367,7 +31367,6 @@ "xpack.securitySolution.kpiUsers.totalUsers.title": "用户", "xpack.securitySolution.kubernetes.columnContainer": "容器", "xpack.securitySolution.kubernetes.columnEntryType": "条目类型", - "xpack.securitySolution.kubernetes.columnEntryUser": "会话条目用户", "xpack.securitySolution.kubernetes.columnExecutable": "会话 Leader", "xpack.securitySolution.kubernetes.columnInteractive": "交互性", "xpack.securitySolution.kubernetes.columnNode": "节点", @@ -32036,7 +32035,6 @@ "xpack.securitySolution.selector.summaryView.options.summaryView.description": "查看每个告警的事件渲染", "xpack.securitySolution.sessionsView.columnEntrySourceIp": "源 IP", "xpack.securitySolution.sessionsView.columnEntryType": "类型", - "xpack.securitySolution.sessionsView.columnEntryUser": "用户", "xpack.securitySolution.sessionsView.columnExecutable": "可执行", "xpack.securitySolution.sessionsView.columnHostName": "主机名", "xpack.securitySolution.sessionsView.columnInteractive": "交互", From f892faceb4cc5611a7987178ac122d6fd647f32f Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 18 Apr 2023 00:58:20 -0400 Subject: [PATCH 005/144] [api-docs] 2023-04-18 Daily api_docs build (#155109) Generated by https://buildkite.com/elastic/kibana-api-docs-daily/builds/311 --- api_docs/actions.devdocs.json | 8 +- api_docs/actions.mdx | 2 +- api_docs/advanced_settings.mdx | 2 +- api_docs/aiops.devdocs.json | 576 ++++- api_docs/aiops.mdx | 7 +- api_docs/alerting.mdx | 2 +- api_docs/apm.mdx | 2 +- api_docs/asset_manager.mdx | 2 +- api_docs/banners.mdx | 2 +- api_docs/bfetch.mdx | 2 +- api_docs/canvas.mdx | 2 +- api_docs/cases.mdx | 2 +- api_docs/charts.mdx | 2 +- api_docs/cloud.mdx | 2 +- api_docs/cloud_chat.mdx | 2 +- api_docs/cloud_data_migration.mdx | 2 +- api_docs/cloud_defend.mdx | 2 +- api_docs/cloud_experiments.mdx | 2 +- api_docs/cloud_security_posture.mdx | 2 +- api_docs/console.mdx | 2 +- api_docs/content_management.mdx | 2 +- api_docs/controls.mdx | 2 +- api_docs/custom_integrations.mdx | 2 +- api_docs/dashboard.devdocs.json | 35 + api_docs/dashboard.mdx | 4 +- api_docs/dashboard_enhanced.mdx | 2 +- api_docs/data.devdocs.json | 50 +- api_docs/data.mdx | 2 +- api_docs/data_query.mdx | 2 +- api_docs/data_search.devdocs.json | 4 +- api_docs/data_search.mdx | 2 +- api_docs/data_view_editor.mdx | 2 +- api_docs/data_view_field_editor.mdx | 2 +- api_docs/data_view_management.mdx | 2 +- api_docs/data_views.devdocs.json | 34 +- api_docs/data_views.mdx | 2 +- api_docs/data_visualizer.mdx | 2 +- api_docs/deprecations_by_api.mdx | 10 +- api_docs/deprecations_by_plugin.mdx | 6 +- api_docs/deprecations_by_team.mdx | 2 +- api_docs/dev_tools.mdx | 2 +- api_docs/discover.mdx | 2 +- api_docs/discover_enhanced.mdx | 2 +- api_docs/ecs_data_quality_dashboard.mdx | 2 +- api_docs/embeddable.mdx | 2 +- api_docs/embeddable_enhanced.mdx | 2 +- api_docs/encrypted_saved_objects.mdx | 2 +- api_docs/enterprise_search.mdx | 2 +- api_docs/es_ui_shared.mdx | 2 +- api_docs/event_annotation.mdx | 2 +- api_docs/event_log.mdx | 2 +- api_docs/exploratory_view.mdx | 2 +- api_docs/expression_error.mdx | 2 +- api_docs/expression_gauge.mdx | 2 +- api_docs/expression_heatmap.mdx | 2 +- api_docs/expression_image.mdx | 2 +- api_docs/expression_legacy_metric_vis.mdx | 2 +- api_docs/expression_metric.mdx | 2 +- api_docs/expression_metric_vis.mdx | 2 +- api_docs/expression_partition_vis.mdx | 2 +- api_docs/expression_repeat_image.mdx | 2 +- api_docs/expression_reveal_image.mdx | 2 +- api_docs/expression_shape.mdx | 2 +- api_docs/expression_tagcloud.mdx | 2 +- api_docs/expression_x_y.mdx | 2 +- api_docs/expressions.mdx | 2 +- api_docs/features.mdx | 2 +- api_docs/field_formats.devdocs.json | 30 +- api_docs/field_formats.mdx | 2 +- api_docs/file_upload.mdx | 2 +- api_docs/files.mdx | 2 +- api_docs/files_management.mdx | 2 +- api_docs/fleet.mdx | 2 +- api_docs/global_search.mdx | 2 +- api_docs/guided_onboarding.mdx | 2 +- api_docs/home.mdx | 2 +- api_docs/image_embeddable.mdx | 2 +- api_docs/index_lifecycle_management.mdx | 2 +- api_docs/index_management.mdx | 2 +- api_docs/infra.mdx | 2 +- api_docs/inspector.mdx | 2 +- api_docs/interactive_setup.mdx | 2 +- api_docs/kbn_ace.mdx | 2 +- api_docs/kbn_aiops_components.mdx | 2 +- api_docs/kbn_aiops_utils.mdx | 2 +- api_docs/kbn_alerting_state_types.mdx | 2 +- api_docs/kbn_alerts.mdx | 2 +- api_docs/kbn_alerts_as_data_utils.mdx | 2 +- api_docs/kbn_alerts_ui_shared.mdx | 2 +- api_docs/kbn_analytics.mdx | 2 +- api_docs/kbn_analytics_client.mdx | 2 +- ..._analytics_shippers_elastic_v3_browser.mdx | 2 +- ...n_analytics_shippers_elastic_v3_common.mdx | 2 +- ...n_analytics_shippers_elastic_v3_server.mdx | 2 +- api_docs/kbn_analytics_shippers_fullstory.mdx | 2 +- api_docs/kbn_analytics_shippers_gainsight.mdx | 2 +- api_docs/kbn_apm_config_loader.mdx | 2 +- api_docs/kbn_apm_synthtrace.mdx | 2 +- api_docs/kbn_apm_synthtrace_client.mdx | 2 +- api_docs/kbn_apm_utils.mdx | 2 +- api_docs/kbn_axe_config.mdx | 2 +- api_docs/kbn_cases_components.mdx | 2 +- api_docs/kbn_cell_actions.mdx | 2 +- api_docs/kbn_chart_expressions_common.mdx | 2 +- api_docs/kbn_chart_icons.mdx | 2 +- api_docs/kbn_ci_stats_core.mdx | 2 +- api_docs/kbn_ci_stats_performance_metrics.mdx | 2 +- api_docs/kbn_ci_stats_reporter.mdx | 2 +- api_docs/kbn_cli_dev_mode.mdx | 2 +- api_docs/kbn_code_editor.mdx | 2 +- api_docs/kbn_code_editor_mocks.mdx | 2 +- api_docs/kbn_coloring.mdx | 2 +- api_docs/kbn_config.mdx | 2 +- api_docs/kbn_config_mocks.mdx | 2 +- api_docs/kbn_config_schema.mdx | 2 +- .../kbn_content_management_content_editor.mdx | 2 +- .../kbn_content_management_table_list.mdx | 2 +- api_docs/kbn_core_analytics_browser.mdx | 2 +- .../kbn_core_analytics_browser_internal.mdx | 2 +- api_docs/kbn_core_analytics_browser_mocks.mdx | 2 +- api_docs/kbn_core_analytics_server.mdx | 2 +- .../kbn_core_analytics_server_internal.mdx | 2 +- api_docs/kbn_core_analytics_server_mocks.mdx | 2 +- api_docs/kbn_core_application_browser.mdx | 2 +- .../kbn_core_application_browser_internal.mdx | 2 +- .../kbn_core_application_browser_mocks.mdx | 2 +- api_docs/kbn_core_application_common.mdx | 2 +- api_docs/kbn_core_apps_browser_internal.mdx | 2 +- api_docs/kbn_core_apps_browser_mocks.mdx | 2 +- api_docs/kbn_core_apps_server_internal.mdx | 2 +- api_docs/kbn_core_base_browser_mocks.mdx | 2 +- api_docs/kbn_core_base_common.mdx | 2 +- api_docs/kbn_core_base_server_internal.mdx | 2 +- api_docs/kbn_core_base_server_mocks.mdx | 2 +- .../kbn_core_capabilities_browser_mocks.mdx | 2 +- api_docs/kbn_core_capabilities_common.mdx | 2 +- api_docs/kbn_core_capabilities_server.mdx | 2 +- .../kbn_core_capabilities_server_mocks.mdx | 2 +- api_docs/kbn_core_chrome_browser.mdx | 2 +- api_docs/kbn_core_chrome_browser_mocks.mdx | 2 +- api_docs/kbn_core_config_server_internal.mdx | 2 +- api_docs/kbn_core_custom_branding_browser.mdx | 2 +- ..._core_custom_branding_browser_internal.mdx | 2 +- ...kbn_core_custom_branding_browser_mocks.mdx | 2 +- api_docs/kbn_core_custom_branding_common.mdx | 2 +- api_docs/kbn_core_custom_branding_server.mdx | 2 +- ...n_core_custom_branding_server_internal.mdx | 2 +- .../kbn_core_custom_branding_server_mocks.mdx | 2 +- api_docs/kbn_core_deprecations_browser.mdx | 2 +- ...kbn_core_deprecations_browser_internal.mdx | 2 +- .../kbn_core_deprecations_browser_mocks.mdx | 2 +- api_docs/kbn_core_deprecations_common.mdx | 2 +- api_docs/kbn_core_deprecations_server.mdx | 2 +- .../kbn_core_deprecations_server_internal.mdx | 2 +- .../kbn_core_deprecations_server_mocks.mdx | 2 +- api_docs/kbn_core_doc_links_browser.mdx | 2 +- api_docs/kbn_core_doc_links_browser_mocks.mdx | 2 +- api_docs/kbn_core_doc_links_server.mdx | 2 +- api_docs/kbn_core_doc_links_server_mocks.mdx | 2 +- ...e_elasticsearch_client_server_internal.mdx | 2 +- ...core_elasticsearch_client_server_mocks.mdx | 2 +- api_docs/kbn_core_elasticsearch_server.mdx | 2 +- ...kbn_core_elasticsearch_server_internal.mdx | 2 +- .../kbn_core_elasticsearch_server_mocks.mdx | 2 +- .../kbn_core_environment_server_internal.mdx | 2 +- .../kbn_core_environment_server_mocks.mdx | 2 +- .../kbn_core_execution_context_browser.mdx | 2 +- ...ore_execution_context_browser_internal.mdx | 2 +- ...n_core_execution_context_browser_mocks.mdx | 2 +- .../kbn_core_execution_context_common.mdx | 2 +- .../kbn_core_execution_context_server.mdx | 2 +- ...core_execution_context_server_internal.mdx | 2 +- ...bn_core_execution_context_server_mocks.mdx | 2 +- api_docs/kbn_core_fatal_errors_browser.mdx | 2 +- .../kbn_core_fatal_errors_browser_mocks.mdx | 2 +- api_docs/kbn_core_http_browser.devdocs.json | 8 +- api_docs/kbn_core_http_browser.mdx | 2 +- api_docs/kbn_core_http_browser_internal.mdx | 2 +- api_docs/kbn_core_http_browser_mocks.mdx | 2 +- api_docs/kbn_core_http_common.devdocs.json | 5 +- api_docs/kbn_core_http_common.mdx | 2 +- .../kbn_core_http_context_server_mocks.mdx | 2 +- ...re_http_request_handler_context_server.mdx | 2 +- api_docs/kbn_core_http_resources_server.mdx | 2 +- ...bn_core_http_resources_server_internal.mdx | 2 +- .../kbn_core_http_resources_server_mocks.mdx | 2 +- .../kbn_core_http_router_server_internal.mdx | 2 +- .../kbn_core_http_router_server_mocks.mdx | 2 +- api_docs/kbn_core_http_server.devdocs.json | 24 +- api_docs/kbn_core_http_server.mdx | 2 +- api_docs/kbn_core_http_server_internal.mdx | 2 +- api_docs/kbn_core_http_server_mocks.mdx | 2 +- api_docs/kbn_core_i18n_browser.mdx | 2 +- api_docs/kbn_core_i18n_browser_mocks.mdx | 2 +- api_docs/kbn_core_i18n_server.mdx | 2 +- api_docs/kbn_core_i18n_server_internal.mdx | 2 +- api_docs/kbn_core_i18n_server_mocks.mdx | 2 +- ...n_core_injected_metadata_browser_mocks.mdx | 2 +- ...kbn_core_integrations_browser_internal.mdx | 2 +- .../kbn_core_integrations_browser_mocks.mdx | 2 +- api_docs/kbn_core_lifecycle_browser.mdx | 2 +- api_docs/kbn_core_lifecycle_browser_mocks.mdx | 2 +- api_docs/kbn_core_lifecycle_server.mdx | 2 +- api_docs/kbn_core_lifecycle_server_mocks.mdx | 2 +- api_docs/kbn_core_logging_browser_mocks.mdx | 2 +- api_docs/kbn_core_logging_common_internal.mdx | 2 +- api_docs/kbn_core_logging_server.mdx | 2 +- api_docs/kbn_core_logging_server_internal.mdx | 2 +- api_docs/kbn_core_logging_server_mocks.mdx | 2 +- ...ore_metrics_collectors_server_internal.mdx | 2 +- ...n_core_metrics_collectors_server_mocks.mdx | 2 +- api_docs/kbn_core_metrics_server.mdx | 2 +- api_docs/kbn_core_metrics_server_internal.mdx | 2 +- api_docs/kbn_core_metrics_server_mocks.mdx | 2 +- api_docs/kbn_core_mount_utils_browser.mdx | 2 +- api_docs/kbn_core_node_server.mdx | 2 +- api_docs/kbn_core_node_server_internal.mdx | 2 +- api_docs/kbn_core_node_server_mocks.mdx | 2 +- api_docs/kbn_core_notifications_browser.mdx | 2 +- ...bn_core_notifications_browser_internal.mdx | 2 +- .../kbn_core_notifications_browser_mocks.mdx | 2 +- api_docs/kbn_core_overlays_browser.mdx | 2 +- .../kbn_core_overlays_browser_internal.mdx | 2 +- api_docs/kbn_core_overlays_browser_mocks.mdx | 2 +- api_docs/kbn_core_plugins_browser.mdx | 2 +- api_docs/kbn_core_plugins_browser_mocks.mdx | 2 +- api_docs/kbn_core_plugins_server.mdx | 2 +- api_docs/kbn_core_plugins_server_mocks.mdx | 2 +- api_docs/kbn_core_preboot_server.mdx | 2 +- api_docs/kbn_core_preboot_server_mocks.mdx | 2 +- api_docs/kbn_core_rendering_browser_mocks.mdx | 2 +- .../kbn_core_rendering_server_internal.mdx | 2 +- api_docs/kbn_core_rendering_server_mocks.mdx | 2 +- api_docs/kbn_core_root_server_internal.mdx | 2 +- ...ore_saved_objects_api_browser.devdocs.json | 6 +- .../kbn_core_saved_objects_api_browser.mdx | 2 +- .../kbn_core_saved_objects_api_server.mdx | 2 +- ...core_saved_objects_api_server_internal.mdx | 2 +- ...bn_core_saved_objects_api_server_mocks.mdx | 2 +- ...ore_saved_objects_base_server_internal.mdx | 2 +- ...n_core_saved_objects_base_server_mocks.mdx | 2 +- api_docs/kbn_core_saved_objects_browser.mdx | 2 +- ...bn_core_saved_objects_browser_internal.mdx | 2 +- .../kbn_core_saved_objects_browser_mocks.mdx | 2 +- ...kbn_core_saved_objects_common.devdocs.json | 16 +- api_docs/kbn_core_saved_objects_common.mdx | 2 +- ..._objects_import_export_server_internal.mdx | 2 +- ...ved_objects_import_export_server_mocks.mdx | 2 +- ...aved_objects_migration_server_internal.mdx | 2 +- ...e_saved_objects_migration_server_mocks.mdx | 2 +- api_docs/kbn_core_saved_objects_server.mdx | 2 +- ...kbn_core_saved_objects_server_internal.mdx | 2 +- .../kbn_core_saved_objects_server_mocks.mdx | 2 +- .../kbn_core_saved_objects_utils_server.mdx | 2 +- api_docs/kbn_core_status_common.mdx | 2 +- api_docs/kbn_core_status_common_internal.mdx | 2 +- api_docs/kbn_core_status_server.mdx | 2 +- api_docs/kbn_core_status_server_internal.mdx | 2 +- api_docs/kbn_core_status_server_mocks.mdx | 2 +- ...core_test_helpers_deprecations_getters.mdx | 2 +- ...n_core_test_helpers_http_setup_browser.mdx | 2 +- api_docs/kbn_core_test_helpers_kbn_server.mdx | 2 +- ...n_core_test_helpers_so_type_serializer.mdx | 2 +- api_docs/kbn_core_test_helpers_test_utils.mdx | 2 +- api_docs/kbn_core_theme_browser.mdx | 2 +- api_docs/kbn_core_theme_browser_internal.mdx | 2 +- api_docs/kbn_core_theme_browser_mocks.mdx | 2 +- api_docs/kbn_core_ui_settings_browser.mdx | 2 +- .../kbn_core_ui_settings_browser_internal.mdx | 2 +- .../kbn_core_ui_settings_browser_mocks.mdx | 2 +- .../kbn_core_ui_settings_common.devdocs.json | 15 + api_docs/kbn_core_ui_settings_common.mdx | 4 +- api_docs/kbn_core_ui_settings_server.mdx | 2 +- .../kbn_core_ui_settings_server_internal.mdx | 2 +- .../kbn_core_ui_settings_server_mocks.mdx | 2 +- api_docs/kbn_core_usage_data_server.mdx | 2 +- .../kbn_core_usage_data_server_internal.mdx | 2 +- api_docs/kbn_core_usage_data_server_mocks.mdx | 2 +- api_docs/kbn_crypto.mdx | 2 +- api_docs/kbn_crypto_browser.mdx | 2 +- api_docs/kbn_cypress_config.mdx | 2 +- api_docs/kbn_datemath.mdx | 2 +- api_docs/kbn_dev_cli_errors.mdx | 2 +- api_docs/kbn_dev_cli_runner.mdx | 2 +- api_docs/kbn_dev_proc_runner.mdx | 2 +- api_docs/kbn_dev_utils.mdx | 2 +- api_docs/kbn_doc_links.mdx | 2 +- api_docs/kbn_docs_utils.mdx | 2 +- api_docs/kbn_dom_drag_drop.mdx | 2 +- api_docs/kbn_ebt_tools.mdx | 2 +- api_docs/kbn_ecs.mdx | 2 +- api_docs/kbn_ecs_data_quality_dashboard.mdx | 2 +- api_docs/kbn_es.mdx | 2 +- api_docs/kbn_es_archiver.mdx | 2 +- api_docs/kbn_es_errors.mdx | 2 +- api_docs/kbn_es_query.mdx | 2 +- api_docs/kbn_es_types.mdx | 2 +- api_docs/kbn_eslint_plugin_imports.mdx | 2 +- api_docs/kbn_expandable_flyout.mdx | 2 +- api_docs/kbn_field_types.mdx | 2 +- api_docs/kbn_find_used_node_modules.mdx | 2 +- .../kbn_ftr_common_functional_services.mdx | 2 +- api_docs/kbn_generate.mdx | 2 +- api_docs/kbn_generate_csv.mdx | 2 +- api_docs/kbn_generate_csv_types.mdx | 2 +- api_docs/kbn_guided_onboarding.mdx | 2 +- api_docs/kbn_handlebars.mdx | 2 +- api_docs/kbn_hapi_mocks.mdx | 2 +- api_docs/kbn_health_gateway_server.mdx | 2 +- api_docs/kbn_home_sample_data_card.mdx | 2 +- api_docs/kbn_home_sample_data_tab.mdx | 2 +- api_docs/kbn_i18n.mdx | 2 +- api_docs/kbn_i18n_react.mdx | 2 +- api_docs/kbn_import_resolver.mdx | 2 +- api_docs/kbn_interpreter.mdx | 2 +- api_docs/kbn_io_ts_utils.mdx | 2 +- api_docs/kbn_jest_serializers.mdx | 2 +- api_docs/kbn_journeys.mdx | 2 +- api_docs/kbn_json_ast.mdx | 2 +- api_docs/kbn_kibana_manifest_schema.mdx | 2 +- .../kbn_language_documentation_popover.mdx | 2 +- api_docs/kbn_logging.mdx | 2 +- api_docs/kbn_logging_mocks.mdx | 2 +- api_docs/kbn_managed_vscode_config.mdx | 2 +- api_docs/kbn_mapbox_gl.mdx | 2 +- api_docs/kbn_ml_agg_utils.mdx | 2 +- api_docs/kbn_ml_date_picker.mdx | 2 +- api_docs/kbn_ml_is_defined.mdx | 2 +- api_docs/kbn_ml_is_populated_object.mdx | 2 +- api_docs/kbn_ml_local_storage.mdx | 2 +- api_docs/kbn_ml_nested_property.mdx | 2 +- api_docs/kbn_ml_number_utils.mdx | 2 +- api_docs/kbn_ml_query_utils.mdx | 2 +- api_docs/kbn_ml_random_sampler_utils.mdx | 2 +- api_docs/kbn_ml_route_utils.mdx | 2 +- api_docs/kbn_ml_string_hash.mdx | 2 +- api_docs/kbn_ml_trained_models_utils.mdx | 2 +- api_docs/kbn_ml_url_state.mdx | 2 +- api_docs/kbn_monaco.mdx | 2 +- api_docs/kbn_object_versioning.mdx | 2 +- api_docs/kbn_observability_alert_details.mdx | 2 +- api_docs/kbn_optimizer.mdx | 2 +- api_docs/kbn_optimizer_webpack_helpers.mdx | 2 +- api_docs/kbn_osquery_io_ts_types.mdx | 2 +- ..._performance_testing_dataset_extractor.mdx | 2 +- api_docs/kbn_plugin_generator.mdx | 2 +- api_docs/kbn_plugin_helpers.mdx | 2 +- api_docs/kbn_react_field.mdx | 2 +- api_docs/kbn_repo_file_maps.mdx | 2 +- api_docs/kbn_repo_linter.mdx | 2 +- api_docs/kbn_repo_path.mdx | 2 +- api_docs/kbn_repo_source_classifier.mdx | 2 +- api_docs/kbn_reporting_common.mdx | 2 +- api_docs/kbn_rison.mdx | 2 +- api_docs/kbn_rule_data_utils.mdx | 2 +- .../kbn_saved_objects_settings.devdocs.json | 58 + api_docs/kbn_saved_objects_settings.mdx | 30 + api_docs/kbn_security_solution_side_nav.mdx | 2 +- ...kbn_security_solution_storybook_config.mdx | 2 +- .../kbn_securitysolution_autocomplete.mdx | 2 +- ...n_securitysolution_data_table.devdocs.json | 1862 +++++++++++++++++ api_docs/kbn_securitysolution_data_table.mdx | 42 + api_docs/kbn_securitysolution_ecs.mdx | 2 +- api_docs/kbn_securitysolution_es_utils.mdx | 2 +- ...ritysolution_exception_list_components.mdx | 2 +- api_docs/kbn_securitysolution_grouping.mdx | 2 +- api_docs/kbn_securitysolution_hook_utils.mdx | 2 +- ..._securitysolution_io_ts_alerting_types.mdx | 2 +- .../kbn_securitysolution_io_ts_list_types.mdx | 2 +- api_docs/kbn_securitysolution_io_ts_types.mdx | 2 +- api_docs/kbn_securitysolution_io_ts_utils.mdx | 2 +- api_docs/kbn_securitysolution_list_api.mdx | 2 +- .../kbn_securitysolution_list_constants.mdx | 2 +- api_docs/kbn_securitysolution_list_hooks.mdx | 2 +- ...n_securitysolution_list_utils.devdocs.json | 88 +- api_docs/kbn_securitysolution_list_utils.mdx | 4 +- api_docs/kbn_securitysolution_rules.mdx | 2 +- api_docs/kbn_securitysolution_t_grid.mdx | 2 +- api_docs/kbn_securitysolution_utils.mdx | 2 +- api_docs/kbn_server_http_tools.mdx | 2 +- api_docs/kbn_server_route_repository.mdx | 2 +- api_docs/kbn_shared_svg.mdx | 2 +- api_docs/kbn_shared_ux_avatar_solution.mdx | 2 +- ...ared_ux_avatar_user_profile_components.mdx | 2 +- .../kbn_shared_ux_button_exit_full_screen.mdx | 2 +- ...hared_ux_button_exit_full_screen_mocks.mdx | 2 +- api_docs/kbn_shared_ux_button_toolbar.mdx | 2 +- api_docs/kbn_shared_ux_card_no_data.mdx | 2 +- api_docs/kbn_shared_ux_card_no_data_mocks.mdx | 2 +- api_docs/kbn_shared_ux_file_context.mdx | 2 +- api_docs/kbn_shared_ux_file_image.mdx | 2 +- api_docs/kbn_shared_ux_file_image_mocks.mdx | 2 +- api_docs/kbn_shared_ux_file_mocks.mdx | 2 +- api_docs/kbn_shared_ux_file_picker.mdx | 2 +- api_docs/kbn_shared_ux_file_types.mdx | 2 +- api_docs/kbn_shared_ux_file_upload.mdx | 2 +- api_docs/kbn_shared_ux_file_util.mdx | 2 +- api_docs/kbn_shared_ux_link_redirect_app.mdx | 2 +- .../kbn_shared_ux_link_redirect_app_mocks.mdx | 2 +- api_docs/kbn_shared_ux_markdown.mdx | 2 +- api_docs/kbn_shared_ux_markdown_mocks.mdx | 2 +- .../kbn_shared_ux_page_analytics_no_data.mdx | 2 +- ...shared_ux_page_analytics_no_data_mocks.mdx | 2 +- .../kbn_shared_ux_page_kibana_no_data.mdx | 2 +- ...bn_shared_ux_page_kibana_no_data_mocks.mdx | 2 +- .../kbn_shared_ux_page_kibana_template.mdx | 2 +- ...n_shared_ux_page_kibana_template_mocks.mdx | 2 +- api_docs/kbn_shared_ux_page_no_data.mdx | 2 +- .../kbn_shared_ux_page_no_data_config.mdx | 2 +- ...bn_shared_ux_page_no_data_config_mocks.mdx | 2 +- api_docs/kbn_shared_ux_page_no_data_mocks.mdx | 2 +- api_docs/kbn_shared_ux_page_solution_nav.mdx | 2 +- .../kbn_shared_ux_prompt_no_data_views.mdx | 2 +- ...n_shared_ux_prompt_no_data_views_mocks.mdx | 2 +- api_docs/kbn_shared_ux_prompt_not_found.mdx | 2 +- api_docs/kbn_shared_ux_router.mdx | 2 +- api_docs/kbn_shared_ux_router_mocks.mdx | 2 +- api_docs/kbn_shared_ux_storybook_config.mdx | 2 +- api_docs/kbn_shared_ux_storybook_mock.mdx | 2 +- api_docs/kbn_shared_ux_utility.mdx | 2 +- api_docs/kbn_slo_schema.mdx | 2 +- api_docs/kbn_some_dev_log.mdx | 2 +- api_docs/kbn_std.mdx | 2 +- api_docs/kbn_stdio_dev_helpers.mdx | 2 +- api_docs/kbn_storybook.mdx | 2 +- api_docs/kbn_telemetry_tools.mdx | 2 +- api_docs/kbn_test.mdx | 2 +- api_docs/kbn_test_jest_helpers.mdx | 2 +- api_docs/kbn_test_subj_selector.mdx | 2 +- api_docs/kbn_tooling_log.mdx | 2 +- api_docs/kbn_ts_projects.mdx | 2 +- api_docs/kbn_typed_react_router_config.mdx | 2 +- api_docs/kbn_ui_actions_browser.mdx | 2 +- api_docs/kbn_ui_shared_deps_src.mdx | 2 +- api_docs/kbn_ui_theme.mdx | 2 +- api_docs/kbn_user_profile_components.mdx | 2 +- api_docs/kbn_utility_types.mdx | 2 +- api_docs/kbn_utility_types_jest.mdx | 2 +- api_docs/kbn_utils.mdx | 2 +- api_docs/kbn_yarn_lock_validator.mdx | 2 +- api_docs/kibana_overview.mdx | 2 +- api_docs/kibana_react.mdx | 2 +- api_docs/kibana_utils.mdx | 2 +- api_docs/kubernetes_security.mdx | 2 +- api_docs/lens.mdx | 2 +- api_docs/license_api_guard.mdx | 2 +- api_docs/license_management.mdx | 2 +- api_docs/licensing.mdx | 2 +- api_docs/lists.mdx | 2 +- api_docs/management.mdx | 2 +- api_docs/maps.mdx | 2 +- api_docs/maps_ems.mdx | 2 +- api_docs/ml.mdx | 2 +- api_docs/monitoring.mdx | 2 +- api_docs/monitoring_collection.mdx | 2 +- api_docs/navigation.mdx | 2 +- api_docs/newsfeed.mdx | 2 +- api_docs/notifications.mdx | 2 +- api_docs/observability.devdocs.json | 8 +- api_docs/observability.mdx | 2 +- api_docs/observability_shared.mdx | 2 +- api_docs/osquery.mdx | 2 +- api_docs/plugin_directory.mdx | 16 +- api_docs/presentation_util.mdx | 2 +- api_docs/profiling.mdx | 2 +- api_docs/remote_clusters.mdx | 2 +- api_docs/reporting.mdx | 2 +- api_docs/rollup.mdx | 2 +- api_docs/rule_registry.mdx | 2 +- api_docs/runtime_fields.mdx | 2 +- api_docs/saved_objects.mdx | 2 +- api_docs/saved_objects_finder.devdocs.json | 4 +- api_docs/saved_objects_finder.mdx | 2 +- api_docs/saved_objects_management.mdx | 2 +- api_docs/saved_objects_tagging.mdx | 2 +- api_docs/saved_objects_tagging_oss.mdx | 2 +- api_docs/saved_search.mdx | 2 +- api_docs/screenshot_mode.mdx | 2 +- api_docs/screenshotting.mdx | 2 +- api_docs/security.mdx | 2 +- api_docs/security_solution.mdx | 2 +- api_docs/session_view.mdx | 2 +- api_docs/share.mdx | 2 +- api_docs/snapshot_restore.mdx | 2 +- api_docs/spaces.mdx | 2 +- api_docs/stack_alerts.mdx | 2 +- api_docs/stack_connectors.mdx | 2 +- api_docs/task_manager.mdx | 2 +- api_docs/telemetry.mdx | 2 +- api_docs/telemetry_collection_manager.mdx | 2 +- api_docs/telemetry_collection_xpack.mdx | 2 +- api_docs/telemetry_management_section.mdx | 2 +- api_docs/threat_intelligence.mdx | 2 +- api_docs/timelines.mdx | 2 +- api_docs/transform.mdx | 2 +- api_docs/triggers_actions_ui.devdocs.json | 32 +- api_docs/triggers_actions_ui.mdx | 2 +- api_docs/ui_actions.mdx | 2 +- api_docs/ui_actions_enhanced.mdx | 2 +- api_docs/unified_field_list.devdocs.json | 2 +- api_docs/unified_field_list.mdx | 2 +- api_docs/unified_histogram.devdocs.json | 2 +- api_docs/unified_histogram.mdx | 2 +- api_docs/unified_search.mdx | 2 +- api_docs/unified_search_autocomplete.mdx | 2 +- api_docs/url_forwarding.mdx | 2 +- api_docs/usage_collection.mdx | 2 +- api_docs/ux.mdx | 2 +- api_docs/vis_default_editor.mdx | 2 +- api_docs/vis_type_gauge.mdx | 2 +- api_docs/vis_type_heatmap.mdx | 2 +- api_docs/vis_type_pie.mdx | 2 +- api_docs/vis_type_table.mdx | 2 +- api_docs/vis_type_timelion.mdx | 2 +- api_docs/vis_type_timeseries.mdx | 2 +- api_docs/vis_type_vega.mdx | 2 +- api_docs/vis_type_vislib.mdx | 2 +- api_docs/vis_type_xy.mdx | 2 +- api_docs/visualizations.mdx | 2 +- 519 files changed, 3326 insertions(+), 642 deletions(-) create mode 100644 api_docs/kbn_saved_objects_settings.devdocs.json create mode 100644 api_docs/kbn_saved_objects_settings.mdx create mode 100644 api_docs/kbn_securitysolution_data_table.devdocs.json create mode 100644 api_docs/kbn_securitysolution_data_table.mdx diff --git a/api_docs/actions.devdocs.json b/api_docs/actions.devdocs.json index 0cdbf07af71d5..01b2670ee2eac 100644 --- a/api_docs/actions.devdocs.json +++ b/api_docs/actions.devdocs.json @@ -1391,13 +1391,13 @@ "label": "validate", "description": [], "signature": [ - "{ params?: ", + "{ params: ", "ValidatorType", - " | undefined; config?: ", + "; config: ", "ValidatorType", - " | undefined; secrets?: ", + "; secrets: ", "ValidatorType", - " | undefined; connector?: ((config: Config, secrets: Secrets) => string | null) | undefined; } | undefined" + "; connector?: ((config: Config, secrets: Secrets) => string | null) | undefined; }" ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx index ea47206c4407d..0811555cbf3dc 100644 --- a/api_docs/actions.mdx +++ b/api_docs/actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/actions title: "actions" image: https://source.unsplash.com/400x175/?github description: API docs for the actions plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions'] --- import actionsObj from './actions.devdocs.json'; diff --git a/api_docs/advanced_settings.mdx b/api_docs/advanced_settings.mdx index edac0119cf5c9..04cd347c6770b 100644 --- a/api_docs/advanced_settings.mdx +++ b/api_docs/advanced_settings.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/advancedSettings title: "advancedSettings" image: https://source.unsplash.com/400x175/?github description: API docs for the advancedSettings plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings'] --- import advancedSettingsObj from './advanced_settings.devdocs.json'; diff --git a/api_docs/aiops.devdocs.json b/api_docs/aiops.devdocs.json index ce17371ced270..1d4576e8b91bb 100644 --- a/api_docs/aiops.devdocs.json +++ b/api_docs/aiops.devdocs.json @@ -10,11 +10,17 @@ "tags": [], "label": "ChangePointDetection", "description": [ - "\nLazy-wrapped LogCategorizationAppStateProps React component" + "\nLazy-wrapped ChangePointDetectionAppStateProps React component" ], "signature": [ "(props: React.PropsWithChildren<", - "LogCategorizationAppStateProps", + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.ChangePointDetectionAppStateProps", + "text": "ChangePointDetectionAppStateProps" + }, ">) => JSX.Element" ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", @@ -32,7 +38,13 @@ ], "signature": [ "React.PropsWithChildren<", - "LogCategorizationAppStateProps", + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.ChangePointDetectionAppStateProps", + "text": "ChangePointDetectionAppStateProps" + }, ">" ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", @@ -55,7 +67,13 @@ ], "signature": [ "(props: React.PropsWithChildren<", - "ExplainLogRateSpikesAppStateProps", + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.ExplainLogRateSpikesAppStateProps", + "text": "ExplainLogRateSpikesAppStateProps" + }, ">) => JSX.Element" ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", @@ -73,7 +91,13 @@ ], "signature": [ "React.PropsWithChildren<", - "ExplainLogRateSpikesAppStateProps", + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.ExplainLogRateSpikesAppStateProps", + "text": "ExplainLogRateSpikesAppStateProps" + }, ">" ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", @@ -96,7 +120,13 @@ ], "signature": [ "(props: React.PropsWithChildren<", - "LogCategorizationAppStateProps", + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.LogCategorizationAppStateProps", + "text": "LogCategorizationAppStateProps" + }, ">) => JSX.Element" ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", @@ -114,7 +144,13 @@ ], "signature": [ "React.PropsWithChildren<", - "LogCategorizationAppStateProps", + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.LogCategorizationAppStateProps", + "text": "LogCategorizationAppStateProps" + }, ">" ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", @@ -127,7 +163,527 @@ "initialIsOpen": false } ], - "interfaces": [], + "interfaces": [ + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies", + "type": "Interface", + "tags": [], + "label": "AiopsAppDependencies", + "description": [], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.application", + "type": "Object", + "tags": [], + "label": "application", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-application-browser", + "scope": "common", + "docId": "kibKbnCoreApplicationBrowserPluginApi", + "section": "def-common.ApplicationStart", + "text": "ApplicationStart" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.data", + "type": "Object", + "tags": [], + "label": "data", + "description": [], + "signature": [ + { + "pluginId": "data", + "scope": "public", + "docId": "kibDataPluginApi", + "section": "def-public.DataPublicPluginStart", + "text": "DataPublicPluginStart" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.charts", + "type": "CompoundType", + "tags": [], + "label": "charts", + "description": [], + "signature": [ + { + "pluginId": "charts", + "scope": "public", + "docId": "kibChartsPluginApi", + "section": "def-public.ChartsPluginSetup", + "text": "ChartsPluginSetup" + }, + " & { activeCursor: ", + "ActiveCursor", + "; }" + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.fieldFormats", + "type": "CompoundType", + "tags": [], + "label": "fieldFormats", + "description": [], + "signature": [ + "Omit<", + { + "pluginId": "fieldFormats", + "scope": "common", + "docId": "kibFieldFormatsPluginApi", + "section": "def-common.FieldFormatsRegistry", + "text": "FieldFormatsRegistry" + }, + ", \"init\" | \"register\"> & { deserialize: ", + { + "pluginId": "fieldFormats", + "scope": "common", + "docId": "kibFieldFormatsPluginApi", + "section": "def-common.FormatFactory", + "text": "FormatFactory" + }, + "; }" + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.http", + "type": "Object", + "tags": [], + "label": "http", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-http-browser", + "scope": "common", + "docId": "kibKbnCoreHttpBrowserPluginApi", + "section": "def-common.HttpSetup", + "text": "HttpSetup" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.notifications", + "type": "Object", + "tags": [], + "label": "notifications", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-notifications-browser", + "scope": "common", + "docId": "kibKbnCoreNotificationsBrowserPluginApi", + "section": "def-common.NotificationsSetup", + "text": "NotificationsSetup" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.storage", + "type": "Object", + "tags": [], + "label": "storage", + "description": [], + "signature": [ + { + "pluginId": "kibanaUtils", + "scope": "public", + "docId": "kibKibanaUtilsPluginApi", + "section": "def-public.IStorageWrapper", + "text": "IStorageWrapper" + }, + "" + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.theme", + "type": "Object", + "tags": [], + "label": "theme", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-theme-browser", + "scope": "common", + "docId": "kibKbnCoreThemeBrowserPluginApi", + "section": "def-common.ThemeServiceStart", + "text": "ThemeServiceStart" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.uiSettings", + "type": "Object", + "tags": [], + "label": "uiSettings", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-ui-settings-browser", + "scope": "common", + "docId": "kibKbnCoreUiSettingsBrowserPluginApi", + "section": "def-common.IUiSettingsClient", + "text": "IUiSettingsClient" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.unifiedSearch", + "type": "Object", + "tags": [], + "label": "unifiedSearch", + "description": [], + "signature": [ + { + "pluginId": "unifiedSearch", + "scope": "public", + "docId": "kibUnifiedSearchPluginApi", + "section": "def-public.UnifiedSearchPublicPluginStart", + "text": "UnifiedSearchPublicPluginStart" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.share", + "type": "CompoundType", + "tags": [], + "label": "share", + "description": [], + "signature": [ + "{ toggleShareContextMenu: (options: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.ShowShareMenuOptions", + "text": "ShowShareMenuOptions" + }, + ") => void; } & { url: ", + { + "pluginId": "share", + "scope": "public", + "docId": "kibSharePluginApi", + "section": "def-public.BrowserUrlService", + "text": "BrowserUrlService" + }, + "; navigate(options: ", + "RedirectOptions", + "<", + { + "pluginId": "@kbn/utility-types", + "scope": "common", + "docId": "kibKbnUtilityTypesPluginApi", + "section": "def-common.SerializableRecord", + "text": "SerializableRecord" + }, + ">): void; }" + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.lens", + "type": "Object", + "tags": [], + "label": "lens", + "description": [], + "signature": [ + { + "pluginId": "lens", + "scope": "public", + "docId": "kibLensPluginApi", + "section": "def-public.LensPublicStart", + "text": "LensPublicStart" + } + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.ChangePointDetectionAppStateProps", + "type": "Interface", + "tags": [], + "label": "ChangePointDetectionAppStateProps", + "description": [], + "path": "x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "aiops", + "id": "def-public.ChangePointDetectionAppStateProps.dataView", + "type": "Object", + "tags": [], + "label": "dataView", + "description": [], + "signature": [ + { + "pluginId": "dataViews", + "scope": "common", + "docId": "kibDataViewsPluginApi", + "section": "def-common.DataView", + "text": "DataView" + } + ], + "path": "x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.ChangePointDetectionAppStateProps.savedSearch", + "type": "CompoundType", + "tags": [], + "label": "savedSearch", + "description": [], + "signature": [ + { + "pluginId": "savedSearch", + "scope": "public", + "docId": "kibSavedSearchPluginApi", + "section": "def-public.SavedSearch", + "text": "SavedSearch" + }, + " | null" + ], + "path": "x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.ChangePointDetectionAppStateProps.appDependencies", + "type": "Object", + "tags": [], + "label": "appDependencies", + "description": [], + "signature": [ + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.AiopsAppDependencies", + "text": "AiopsAppDependencies" + } + ], + "path": "x-pack/plugins/aiops/public/components/change_point_detection/change_point_detection_root.tsx", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.ExplainLogRateSpikesAppStateProps", + "type": "Interface", + "tags": [], + "label": "ExplainLogRateSpikesAppStateProps", + "description": [], + "path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_app_state.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "aiops", + "id": "def-public.ExplainLogRateSpikesAppStateProps.dataView", + "type": "Object", + "tags": [], + "label": "dataView", + "description": [ + "The data view to analyze." + ], + "signature": [ + { + "pluginId": "dataViews", + "scope": "common", + "docId": "kibDataViewsPluginApi", + "section": "def-common.DataView", + "text": "DataView" + } + ], + "path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_app_state.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.ExplainLogRateSpikesAppStateProps.savedSearch", + "type": "CompoundType", + "tags": [], + "label": "savedSearch", + "description": [ + "The saved search to analyze." + ], + "signature": [ + { + "pluginId": "savedSearch", + "scope": "public", + "docId": "kibSavedSearchPluginApi", + "section": "def-public.SavedSearch", + "text": "SavedSearch" + }, + " | null" + ], + "path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_app_state.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.ExplainLogRateSpikesAppStateProps.appDependencies", + "type": "Object", + "tags": [], + "label": "appDependencies", + "description": [ + "App dependencies" + ], + "signature": [ + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.AiopsAppDependencies", + "text": "AiopsAppDependencies" + } + ], + "path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_app_state.tsx", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.LogCategorizationAppStateProps", + "type": "Interface", + "tags": [], + "label": "LogCategorizationAppStateProps", + "description": [], + "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "aiops", + "id": "def-public.LogCategorizationAppStateProps.dataView", + "type": "Object", + "tags": [], + "label": "dataView", + "description": [], + "signature": [ + { + "pluginId": "dataViews", + "scope": "common", + "docId": "kibDataViewsPluginApi", + "section": "def-common.DataView", + "text": "DataView" + } + ], + "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.LogCategorizationAppStateProps.savedSearch", + "type": "CompoundType", + "tags": [], + "label": "savedSearch", + "description": [], + "signature": [ + { + "pluginId": "savedSearch", + "scope": "public", + "docId": "kibSavedSearchPluginApi", + "section": "def-public.SavedSearch", + "text": "SavedSearch" + }, + " | null" + ], + "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.LogCategorizationAppStateProps.appDependencies", + "type": "Object", + "tags": [], + "label": "appDependencies", + "description": [], + "signature": [ + { + "pluginId": "aiops", + "scope": "public", + "docId": "kibAiopsPluginApi", + "section": "def-public.AiopsAppDependencies", + "text": "AiopsAppDependencies" + } + ], + "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_app_state.tsx", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + } + ], "enums": [], "misc": [], "objects": [] @@ -201,7 +757,9 @@ "type": "boolean", "tags": [], "label": "CHANGE_POINT_DETECTION_ENABLED", - "description": [], + "description": [ + "\nThis is an internal hard coded feature flag so we can easily turn on/off the\n\"Change Point Detection UI\" during development until the first release." + ], "signature": [ "true" ], diff --git a/api_docs/aiops.mdx b/api_docs/aiops.mdx index bdbc20668fe46..ea3fcfd19787f 100644 --- a/api_docs/aiops.mdx +++ b/api_docs/aiops.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiops title: "aiops" image: https://source.unsplash.com/400x175/?github description: API docs for the aiops plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops'] --- import aiopsObj from './aiops.devdocs.json'; @@ -21,13 +21,16 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 12 | 0 | 1 | 2 | +| 37 | 0 | 22 | 0 | ## Client ### Functions +### Interfaces + + ## Server ### Setup diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx index 5750e5be98c98..644fb8c1b3f4f 100644 --- a/api_docs/alerting.mdx +++ b/api_docs/alerting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/alerting title: "alerting" image: https://source.unsplash.com/400x175/?github description: API docs for the alerting plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting'] --- import alertingObj from './alerting.devdocs.json'; diff --git a/api_docs/apm.mdx b/api_docs/apm.mdx index 785f3c039d9e6..3f389b67d3199 100644 --- a/api_docs/apm.mdx +++ b/api_docs/apm.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apm title: "apm" image: https://source.unsplash.com/400x175/?github description: API docs for the apm plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm'] --- import apmObj from './apm.devdocs.json'; diff --git a/api_docs/asset_manager.mdx b/api_docs/asset_manager.mdx index 056326ac515d2..5c7743d5b59f4 100644 --- a/api_docs/asset_manager.mdx +++ b/api_docs/asset_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/assetManager title: "assetManager" image: https://source.unsplash.com/400x175/?github description: API docs for the assetManager plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'assetManager'] --- import assetManagerObj from './asset_manager.devdocs.json'; diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx index e2e9fedd6df26..47119b7dbf18e 100644 --- a/api_docs/banners.mdx +++ b/api_docs/banners.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/banners title: "banners" image: https://source.unsplash.com/400x175/?github description: API docs for the banners plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners'] --- import bannersObj from './banners.devdocs.json'; diff --git a/api_docs/bfetch.mdx b/api_docs/bfetch.mdx index ebf0b6b725770..8113d67e3d175 100644 --- a/api_docs/bfetch.mdx +++ b/api_docs/bfetch.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/bfetch title: "bfetch" image: https://source.unsplash.com/400x175/?github description: API docs for the bfetch plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'bfetch'] --- import bfetchObj from './bfetch.devdocs.json'; diff --git a/api_docs/canvas.mdx b/api_docs/canvas.mdx index cf1a3f6c73855..69e7e654ce7f1 100644 --- a/api_docs/canvas.mdx +++ b/api_docs/canvas.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/canvas title: "canvas" image: https://source.unsplash.com/400x175/?github description: API docs for the canvas plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas'] --- import canvasObj from './canvas.devdocs.json'; diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx index 8120e0fff64fa..ec6e6659e6d9e 100644 --- a/api_docs/cases.mdx +++ b/api_docs/cases.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cases title: "cases" image: https://source.unsplash.com/400x175/?github description: API docs for the cases plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases'] --- import casesObj from './cases.devdocs.json'; diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx index 02d0e47166648..4fef26eee2b88 100644 --- a/api_docs/charts.mdx +++ b/api_docs/charts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/charts title: "charts" image: https://source.unsplash.com/400x175/?github description: API docs for the charts plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts'] --- import chartsObj from './charts.devdocs.json'; diff --git a/api_docs/cloud.mdx b/api_docs/cloud.mdx index 2c02a794b2a55..599523319184f 100644 --- a/api_docs/cloud.mdx +++ b/api_docs/cloud.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloud title: "cloud" image: https://source.unsplash.com/400x175/?github description: API docs for the cloud plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud'] --- import cloudObj from './cloud.devdocs.json'; diff --git a/api_docs/cloud_chat.mdx b/api_docs/cloud_chat.mdx index d30e9e788d84f..9ef4e7334aee7 100644 --- a/api_docs/cloud_chat.mdx +++ b/api_docs/cloud_chat.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudChat title: "cloudChat" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudChat plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChat'] --- import cloudChatObj from './cloud_chat.devdocs.json'; diff --git a/api_docs/cloud_data_migration.mdx b/api_docs/cloud_data_migration.mdx index 2b32e48523759..04c2ffb06b560 100644 --- a/api_docs/cloud_data_migration.mdx +++ b/api_docs/cloud_data_migration.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDataMigration title: "cloudDataMigration" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudDataMigration plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDataMigration'] --- import cloudDataMigrationObj from './cloud_data_migration.devdocs.json'; diff --git a/api_docs/cloud_defend.mdx b/api_docs/cloud_defend.mdx index 553c4af57f792..5a4286d8b7f58 100644 --- a/api_docs/cloud_defend.mdx +++ b/api_docs/cloud_defend.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDefend title: "cloudDefend" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudDefend plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDefend'] --- import cloudDefendObj from './cloud_defend.devdocs.json'; diff --git a/api_docs/cloud_experiments.mdx b/api_docs/cloud_experiments.mdx index 4b0b11202cfbe..30e04d9f7e252 100644 --- a/api_docs/cloud_experiments.mdx +++ b/api_docs/cloud_experiments.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudExperiments title: "cloudExperiments" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudExperiments plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudExperiments'] --- import cloudExperimentsObj from './cloud_experiments.devdocs.json'; diff --git a/api_docs/cloud_security_posture.mdx b/api_docs/cloud_security_posture.mdx index 80d6082a5a1db..7841b498ed166 100644 --- a/api_docs/cloud_security_posture.mdx +++ b/api_docs/cloud_security_posture.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudSecurityPosture title: "cloudSecurityPosture" image: https://source.unsplash.com/400x175/?github description: API docs for the cloudSecurityPosture plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudSecurityPosture'] --- import cloudSecurityPostureObj from './cloud_security_posture.devdocs.json'; diff --git a/api_docs/console.mdx b/api_docs/console.mdx index eb912f23874fb..9ae830f51efd2 100644 --- a/api_docs/console.mdx +++ b/api_docs/console.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/console title: "console" image: https://source.unsplash.com/400x175/?github description: API docs for the console plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console'] --- import consoleObj from './console.devdocs.json'; diff --git a/api_docs/content_management.mdx b/api_docs/content_management.mdx index 540bd69652b96..12bf411f06b8f 100644 --- a/api_docs/content_management.mdx +++ b/api_docs/content_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/contentManagement title: "contentManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the contentManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'contentManagement'] --- import contentManagementObj from './content_management.devdocs.json'; diff --git a/api_docs/controls.mdx b/api_docs/controls.mdx index e12924e2a3b3d..b6800d6e4309f 100644 --- a/api_docs/controls.mdx +++ b/api_docs/controls.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/controls title: "controls" image: https://source.unsplash.com/400x175/?github description: API docs for the controls plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls'] --- import controlsObj from './controls.devdocs.json'; diff --git a/api_docs/custom_integrations.mdx b/api_docs/custom_integrations.mdx index c79b893ae53f6..15fc539467e67 100644 --- a/api_docs/custom_integrations.mdx +++ b/api_docs/custom_integrations.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/customIntegrations title: "customIntegrations" image: https://source.unsplash.com/400x175/?github description: API docs for the customIntegrations plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations'] --- import customIntegrationsObj from './custom_integrations.devdocs.json'; diff --git a/api_docs/dashboard.devdocs.json b/api_docs/dashboard.devdocs.json index f2323237ed7b0..a4f01007d7d75 100644 --- a/api_docs/dashboard.devdocs.json +++ b/api_docs/dashboard.devdocs.json @@ -1515,6 +1515,41 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardListingTable", + "type": "Function", + "tags": [], + "label": "DashboardListingTable", + "description": [], + "signature": [ + "(props: ", + "DashboardListingProps", + ") => JSX.Element" + ], + "path": "src/plugins/dashboard/public/dashboard_listing/index.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardListingTable.$1", + "type": "CompoundType", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "DashboardListingProps" + ], + "path": "src/plugins/dashboard/public/dashboard_listing/index.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "dashboard", "id": "def-public.LazyDashboardContainerRenderer", diff --git a/api_docs/dashboard.mdx b/api_docs/dashboard.mdx index 206037bc616f2..29addf383b79c 100644 --- a/api_docs/dashboard.mdx +++ b/api_docs/dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboard title: "dashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the dashboard plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard'] --- import dashboardObj from './dashboard.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kib | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 188 | 0 | 179 | 13 | +| 190 | 0 | 181 | 14 | ## Client diff --git a/api_docs/dashboard_enhanced.mdx b/api_docs/dashboard_enhanced.mdx index a80a0e7948a06..5ebd9bcf8f56f 100644 --- a/api_docs/dashboard_enhanced.mdx +++ b/api_docs/dashboard_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboardEnhanced title: "dashboardEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the dashboardEnhanced plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced'] --- import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json'; diff --git a/api_docs/data.devdocs.json b/api_docs/data.devdocs.json index a5fc6da9e9a3d..c51c052cb9caa 100644 --- a/api_docs/data.devdocs.json +++ b/api_docs/data.devdocs.json @@ -13035,7 +13035,7 @@ "section": "def-common.FieldFormatsRegistry", "text": "FieldFormatsRegistry" }, - ", \"register\" | \"init\"> & { deserialize: ", + ", \"init\" | \"register\"> & { deserialize: ", { "pluginId": "fieldFormats", "scope": "common", @@ -13737,18 +13737,6 @@ "plugin": "unifiedSearch", "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" }, - { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" - }, - { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" - }, - { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" - }, { "plugin": "controls", "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" @@ -13781,6 +13769,18 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" + }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + }, { "plugin": "aiops", "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_page.tsx" @@ -21367,18 +21367,6 @@ "plugin": "unifiedSearch", "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" }, - { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" - }, - { - "plugin": "dataViews", - "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" - }, - { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" - }, { "plugin": "controls", "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" @@ -21411,6 +21399,18 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" + }, + { + "plugin": "dataViews", + "path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts" + }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + }, { "plugin": "aiops", "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_page.tsx" diff --git a/api_docs/data.mdx b/api_docs/data.mdx index 9042c5275bcea..db8730d065cbe 100644 --- a/api_docs/data.mdx +++ b/api_docs/data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data title: "data" image: https://source.unsplash.com/400x175/?github description: API docs for the data plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data'] --- import dataObj from './data.devdocs.json'; diff --git a/api_docs/data_query.mdx b/api_docs/data_query.mdx index 7ade673b311ed..601219b420239 100644 --- a/api_docs/data_query.mdx +++ b/api_docs/data_query.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-query title: "data.query" image: https://source.unsplash.com/400x175/?github description: API docs for the data.query plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query'] --- import dataQueryObj from './data_query.devdocs.json'; diff --git a/api_docs/data_search.devdocs.json b/api_docs/data_search.devdocs.json index df1f2ff24441a..3f27dab1ede57 100644 --- a/api_docs/data_search.devdocs.json +++ b/api_docs/data_search.devdocs.json @@ -24992,7 +24992,7 @@ "label": "fieldFormats", "description": [], "signature": [ - "{ has: (id: string) => boolean; deserialize: ", + "{ deserialize: ", { "pluginId": "fieldFormats", "scope": "common", @@ -25232,7 +25232,7 @@ "section": "def-common.FieldFormatConfig", "text": "FieldFormatConfig" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx index 71be7fd7cc229..d1df7dcccc874 100644 --- a/api_docs/data_search.mdx +++ b/api_docs/data_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-search title: "data.search" image: https://source.unsplash.com/400x175/?github description: API docs for the data.search plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search'] --- import dataSearchObj from './data_search.devdocs.json'; diff --git a/api_docs/data_view_editor.mdx b/api_docs/data_view_editor.mdx index 6e96fbbe898a5..5cae668f7fdfa 100644 --- a/api_docs/data_view_editor.mdx +++ b/api_docs/data_view_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewEditor title: "dataViewEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViewEditor plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewEditor'] --- import dataViewEditorObj from './data_view_editor.devdocs.json'; diff --git a/api_docs/data_view_field_editor.mdx b/api_docs/data_view_field_editor.mdx index 876fb54d470cb..157b97bbfe74b 100644 --- a/api_docs/data_view_field_editor.mdx +++ b/api_docs/data_view_field_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewFieldEditor title: "dataViewFieldEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViewFieldEditor plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewFieldEditor'] --- import dataViewFieldEditorObj from './data_view_field_editor.devdocs.json'; diff --git a/api_docs/data_view_management.mdx b/api_docs/data_view_management.mdx index 0bc83a60c5ded..58241023b4a1d 100644 --- a/api_docs/data_view_management.mdx +++ b/api_docs/data_view_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewManagement title: "dataViewManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViewManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement'] --- import dataViewManagementObj from './data_view_management.devdocs.json'; diff --git a/api_docs/data_views.devdocs.json b/api_docs/data_views.devdocs.json index 2007675704479..c4b78d31c56ca 100644 --- a/api_docs/data_views.devdocs.json +++ b/api_docs/data_views.devdocs.json @@ -303,10 +303,6 @@ "plugin": "unifiedSearch", "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" }, - { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" - }, { "plugin": "controls", "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" @@ -339,6 +335,10 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + }, { "plugin": "aiops", "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_page.tsx" @@ -6593,7 +6593,7 @@ "\nField formats" ], "signature": [ - "{ has: (id: string) => boolean; register: (fieldFormats: ", + "{ register: (fieldFormats: ", { "pluginId": "fieldFormats", "scope": "common", @@ -6601,7 +6601,7 @@ "section": "def-common.FieldFormatInstanceType", "text": "FieldFormatInstanceType" }, - "[]) => void; }" + "[]) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, @@ -6641,7 +6641,7 @@ "section": "def-common.FieldFormatsRegistry", "text": "FieldFormatsRegistry" }, - ", \"register\" | \"init\"> & { deserialize: ", + ", \"init\" | \"register\"> & { deserialize: ", { "pluginId": "fieldFormats", "scope": "common", @@ -8560,10 +8560,6 @@ "plugin": "unifiedSearch", "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" }, - { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" - }, { "plugin": "controls", "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" @@ -8596,6 +8592,10 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + }, { "plugin": "aiops", "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_page.tsx" @@ -15874,10 +15874,6 @@ "plugin": "unifiedSearch", "path": "src/plugins/unified_search/public/dataview_picker/change_dataview.tsx" }, - { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" - }, { "plugin": "controls", "path": "src/plugins/controls/public/services/options_list/options_list_service.ts" @@ -15910,6 +15906,10 @@ "plugin": "lens", "path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx" }, + { + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/data_apis.ts" + }, { "plugin": "aiops", "path": "x-pack/plugins/aiops/public/components/log_categorization/log_categorization_page.tsx" @@ -21364,7 +21364,7 @@ "\nField formats service" ], "signature": [ - "{ has: (id: string) => boolean; deserialize: ", + "{ deserialize: ", { "pluginId": "fieldFormats", "scope": "common", @@ -21604,7 +21604,7 @@ "section": "def-common.FieldFormatConfig", "text": "FieldFormatConfig" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx index ffbf85e983ace..c49c1f554773f 100644 --- a/api_docs/data_views.mdx +++ b/api_docs/data_views.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViews title: "dataViews" image: https://source.unsplash.com/400x175/?github description: API docs for the dataViews plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViews'] --- import dataViewsObj from './data_views.devdocs.json'; diff --git a/api_docs/data_visualizer.mdx b/api_docs/data_visualizer.mdx index b6b572497d698..0d531ef7a344a 100644 --- a/api_docs/data_visualizer.mdx +++ b/api_docs/data_visualizer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataVisualizer title: "dataVisualizer" image: https://source.unsplash.com/400x175/?github description: API docs for the dataVisualizer plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer'] --- import dataVisualizerObj from './data_visualizer.devdocs.json'; diff --git a/api_docs/deprecations_by_api.mdx b/api_docs/deprecations_by_api.mdx index 9b5a68e499faa..fb0d3e1744199 100644 --- a/api_docs/deprecations_by_api.mdx +++ b/api_docs/deprecations_by_api.mdx @@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByApi slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-api title: Deprecated API usage by API description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by. -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -17,9 +17,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Referencing plugin(s) | Remove By | | ---------------|-----------|-----------| | | ml, stackAlerts | - | -| | @kbn/es-query, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, triggersActionsUi, controls, unifiedFieldList, lens, aiops, ml, infra, visTypeTimeseries, apm, observability, exploratoryView, dataVisualizer, fleet, canvas, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, discover, data | - | -| | @kbn/es-query, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, triggersActionsUi, controls, unifiedFieldList, lens, aiops, ml, infra, visTypeTimeseries, apm, observability, exploratoryView, dataVisualizer, fleet, canvas, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, discover, data | - | -| | @kbn/es-query, securitySolution, timelines, lists, threatIntelligence, data, savedObjectsManagement, unifiedSearch, triggersActionsUi, controls, unifiedFieldList, lens, aiops, ml, infra, visTypeTimeseries, apm, observability, exploratoryView, dataVisualizer, fleet, canvas, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, discover | - | +| | @kbn/es-query, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, lens, triggersActionsUi, aiops, ml, infra, visTypeTimeseries, apm, observability, exploratoryView, dataVisualizer, fleet, canvas, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, discover, data | - | +| | @kbn/es-query, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, lens, triggersActionsUi, aiops, ml, infra, visTypeTimeseries, apm, observability, exploratoryView, dataVisualizer, fleet, canvas, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, discover, data | - | +| | @kbn/es-query, securitySolution, timelines, lists, threatIntelligence, data, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, lens, triggersActionsUi, aiops, ml, infra, visTypeTimeseries, apm, observability, exploratoryView, dataVisualizer, fleet, canvas, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, discover | - | | | home, data, esUiShared, spaces, savedObjectsManagement, observability, exploratoryView, fleet, ml, apm, enterpriseSearch, indexLifecycleManagement, synthetics, upgradeAssistant, ux, kibanaOverview | - | | | encryptedSavedObjects, actions, data, ml, logstash, securitySolution, cloudChat | - | | | actions, ml, savedObjectsTagging, enterpriseSearch | - | @@ -88,7 +88,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | @kbn/core | - | | | @kbn/core, lens, savedObjects, visualizations | - | | | @kbn/core | - | -| | @kbn/core, advancedSettings, triggersActionsUi, visualizations | - | +| | @kbn/core, advancedSettings, visualizations, triggersActionsUi | - | | | home, canvas, osquery | - | | | dataViews, maps | - | | | dataViewManagement, dataViews | - | diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx index fd8df07b0e608..e7a872a0aeb7c 100644 --- a/api_docs/deprecations_by_plugin.mdx +++ b/api_docs/deprecations_by_plugin.mdx @@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByPlugin slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-plugin title: Deprecated API usage by plugin description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by. -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -464,12 +464,12 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [dashboard_saved_object_service.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/dashboard_saved_object_service.ts#:~:text=savedObjects), [index.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_actions/index.ts#:~:text=savedObjects) | - | | | [load_dashboard_state_from_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/load_dashboard_state_from_saved_object.ts#:~:text=SavedObjectsClientContract), [load_dashboard_state_from_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/load_dashboard_state_from_saved_object.ts#:~:text=SavedObjectsClientContract), [save_dashboard_state_to_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/save_dashboard_state_to_saved_object.ts#:~:text=SavedObjectsClientContract), [save_dashboard_state_to_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/save_dashboard_state_to_saved_object.ts#:~:text=SavedObjectsClientContract), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SavedObjectsClientContract), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SavedObjectsClientContract), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SavedObjectsClientContract), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SavedObjectsClientContract), [check_for_duplicate_dashboard_title.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/check_for_duplicate_dashboard_title.ts#:~:text=SavedObjectsClientContract), [check_for_duplicate_dashboard_title.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/check_for_duplicate_dashboard_title.ts#:~:text=SavedObjectsClientContract)+ 4 more | - | | | [save_dashboard_state_to_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/save_dashboard_state_to_saved_object.ts#:~:text=create), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_actions/clone_panel_action.tsx#:~:text=create) | - | -| | [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_app/listing/dashboard_listing.tsx#:~:text=delete) | - | +| | [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_listing/dashboard_listing.tsx#:~:text=delete) | - | | | [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=find), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=find), [check_for_duplicate_dashboard_title.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/check_for_duplicate_dashboard_title.ts#:~:text=find), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_actions/clone_panel_action.tsx#:~:text=find) | - | | | [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_actions/clone_panel_action.tsx#:~:text=get) | - | | | [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=bulkGet) | - | | | [load_dashboard_state_from_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/load_dashboard_state_from_saved_object.ts#:~:text=resolve) | - | -| | [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SimpleSavedObject), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SimpleSavedObject), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_app/listing/dashboard_listing.tsx#:~:text=SimpleSavedObject), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_app/listing/dashboard_listing.tsx#:~:text=SimpleSavedObject) | - | +| | [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SimpleSavedObject), [find_dashboard_saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/find_dashboard_saved_objects.ts#:~:text=SimpleSavedObject), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_listing/dashboard_listing.tsx#:~:text=SimpleSavedObject), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_listing/dashboard_listing.tsx#:~:text=SimpleSavedObject) | - | | | [load_dashboard_state_from_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/load_dashboard_state_from_saved_object.ts#:~:text=ResolvedSimpleSavedObject), [load_dashboard_state_from_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/load_dashboard_state_from_saved_object.ts#:~:text=ResolvedSimpleSavedObject) | - | | | [migrate_extract_panel_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_extract_panel_references.ts#:~:text=SavedObjectAttributes), [migrate_extract_panel_references.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/dashboard_saved_object/migrations/migrate_extract_panel_references.ts#:~:text=SavedObjectAttributes), [dashboard_telemetry_collection_task.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/dashboard_telemetry_collection_task.ts#:~:text=SavedObjectAttributes), [dashboard_telemetry_collection_task.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/dashboard_telemetry_collection_task.ts#:~:text=SavedObjectAttributes), [dashboard_telemetry_collection_task.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/dashboard_telemetry_collection_task.ts#:~:text=SavedObjectAttributes), [dashboard_telemetry.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/dashboard_telemetry.ts#:~:text=SavedObjectAttributes), [dashboard_telemetry.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/dashboard_telemetry.ts#:~:text=SavedObjectAttributes), [find_by_value_embeddables.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/find_by_value_embeddables.ts#:~:text=SavedObjectAttributes), [find_by_value_embeddables.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/usage/find_by_value_embeddables.ts#:~:text=SavedObjectAttributes), [load_dashboard_state_from_saved_object.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/dashboard_saved_object/lib/load_dashboard_state_from_saved_object.ts#:~:text=SavedObjectAttributes)+ 20 more | - | | | [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_actions/clone_panel_action.tsx#:~:text=SavedObjectsStart), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/dashboard_actions/clone_panel_action.tsx#:~:text=SavedObjectsStart) | - | diff --git a/api_docs/deprecations_by_team.mdx b/api_docs/deprecations_by_team.mdx index 6a2d92be3cd3d..8a54dff579e5f 100644 --- a/api_docs/deprecations_by_team.mdx +++ b/api_docs/deprecations_by_team.mdx @@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsDueByTeam slug: /kibana-dev-docs/api-meta/deprecations-due-by-team title: Deprecated APIs due to be removed, by team description: Lists the teams that are referencing deprecated APIs with a remove by date. -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx index 0743acd567ca5..c74b6557d7426 100644 --- a/api_docs/dev_tools.mdx +++ b/api_docs/dev_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/devTools title: "devTools" image: https://source.unsplash.com/400x175/?github description: API docs for the devTools plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools'] --- import devToolsObj from './dev_tools.devdocs.json'; diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx index 3e8566a3f31d8..8148d36e69bd3 100644 --- a/api_docs/discover.mdx +++ b/api_docs/discover.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discover title: "discover" image: https://source.unsplash.com/400x175/?github description: API docs for the discover plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover'] --- import discoverObj from './discover.devdocs.json'; diff --git a/api_docs/discover_enhanced.mdx b/api_docs/discover_enhanced.mdx index a7ea97cd63716..6506ac759fa7a 100644 --- a/api_docs/discover_enhanced.mdx +++ b/api_docs/discover_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discoverEnhanced title: "discoverEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the discoverEnhanced plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced'] --- import discoverEnhancedObj from './discover_enhanced.devdocs.json'; diff --git a/api_docs/ecs_data_quality_dashboard.mdx b/api_docs/ecs_data_quality_dashboard.mdx index 487ed85f15834..83f166dcad9b5 100644 --- a/api_docs/ecs_data_quality_dashboard.mdx +++ b/api_docs/ecs_data_quality_dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ecsDataQualityDashboard title: "ecsDataQualityDashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the ecsDataQualityDashboard plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ecsDataQualityDashboard'] --- import ecsDataQualityDashboardObj from './ecs_data_quality_dashboard.devdocs.json'; diff --git a/api_docs/embeddable.mdx b/api_docs/embeddable.mdx index 0b12ab9a9606f..94a4960c02079 100644 --- a/api_docs/embeddable.mdx +++ b/api_docs/embeddable.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/embeddable title: "embeddable" image: https://source.unsplash.com/400x175/?github description: API docs for the embeddable plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddable'] --- import embeddableObj from './embeddable.devdocs.json'; diff --git a/api_docs/embeddable_enhanced.mdx b/api_docs/embeddable_enhanced.mdx index 187ba02f37f47..8e86c1bdf95dc 100644 --- a/api_docs/embeddable_enhanced.mdx +++ b/api_docs/embeddable_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/embeddableEnhanced title: "embeddableEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the embeddableEnhanced plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddableEnhanced'] --- import embeddableEnhancedObj from './embeddable_enhanced.devdocs.json'; diff --git a/api_docs/encrypted_saved_objects.mdx b/api_docs/encrypted_saved_objects.mdx index 5345784bcc2f7..971596d4509a9 100644 --- a/api_docs/encrypted_saved_objects.mdx +++ b/api_docs/encrypted_saved_objects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/encryptedSavedObjects title: "encryptedSavedObjects" image: https://source.unsplash.com/400x175/?github description: API docs for the encryptedSavedObjects plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'encryptedSavedObjects'] --- import encryptedSavedObjectsObj from './encrypted_saved_objects.devdocs.json'; diff --git a/api_docs/enterprise_search.mdx b/api_docs/enterprise_search.mdx index 35f38da60b34e..76aeb4cff30d7 100644 --- a/api_docs/enterprise_search.mdx +++ b/api_docs/enterprise_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/enterpriseSearch title: "enterpriseSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the enterpriseSearch plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch'] --- import enterpriseSearchObj from './enterprise_search.devdocs.json'; diff --git a/api_docs/es_ui_shared.mdx b/api_docs/es_ui_shared.mdx index d42e423c9bdab..9291c86e82e60 100644 --- a/api_docs/es_ui_shared.mdx +++ b/api_docs/es_ui_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/esUiShared title: "esUiShared" image: https://source.unsplash.com/400x175/?github description: API docs for the esUiShared plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared'] --- import esUiSharedObj from './es_ui_shared.devdocs.json'; diff --git a/api_docs/event_annotation.mdx b/api_docs/event_annotation.mdx index 13d82edfc47eb..e9eb2b400ee05 100644 --- a/api_docs/event_annotation.mdx +++ b/api_docs/event_annotation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventAnnotation title: "eventAnnotation" image: https://source.unsplash.com/400x175/?github description: API docs for the eventAnnotation plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation'] --- import eventAnnotationObj from './event_annotation.devdocs.json'; diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx index 7028a6b5e0747..87cb559074c9a 100644 --- a/api_docs/event_log.mdx +++ b/api_docs/event_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventLog title: "eventLog" image: https://source.unsplash.com/400x175/?github description: API docs for the eventLog plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog'] --- import eventLogObj from './event_log.devdocs.json'; diff --git a/api_docs/exploratory_view.mdx b/api_docs/exploratory_view.mdx index b3f318e94e52a..a59314c8667fd 100644 --- a/api_docs/exploratory_view.mdx +++ b/api_docs/exploratory_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/exploratoryView title: "exploratoryView" image: https://source.unsplash.com/400x175/?github description: API docs for the exploratoryView plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'exploratoryView'] --- import exploratoryViewObj from './exploratory_view.devdocs.json'; diff --git a/api_docs/expression_error.mdx b/api_docs/expression_error.mdx index e2e1a409edadc..058907c640274 100644 --- a/api_docs/expression_error.mdx +++ b/api_docs/expression_error.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionError title: "expressionError" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionError plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionError'] --- import expressionErrorObj from './expression_error.devdocs.json'; diff --git a/api_docs/expression_gauge.mdx b/api_docs/expression_gauge.mdx index 1660514e30710..d005bd65c76ee 100644 --- a/api_docs/expression_gauge.mdx +++ b/api_docs/expression_gauge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionGauge title: "expressionGauge" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionGauge plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionGauge'] --- import expressionGaugeObj from './expression_gauge.devdocs.json'; diff --git a/api_docs/expression_heatmap.mdx b/api_docs/expression_heatmap.mdx index 5b4bfd2c7fef2..631985dfa297a 100644 --- a/api_docs/expression_heatmap.mdx +++ b/api_docs/expression_heatmap.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionHeatmap title: "expressionHeatmap" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionHeatmap plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionHeatmap'] --- import expressionHeatmapObj from './expression_heatmap.devdocs.json'; diff --git a/api_docs/expression_image.mdx b/api_docs/expression_image.mdx index 14a5c95ab5b09..58e8ab5d87739 100644 --- a/api_docs/expression_image.mdx +++ b/api_docs/expression_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionImage title: "expressionImage" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionImage plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionImage'] --- import expressionImageObj from './expression_image.devdocs.json'; diff --git a/api_docs/expression_legacy_metric_vis.mdx b/api_docs/expression_legacy_metric_vis.mdx index 48fb3db24fbf9..4cf6d1dd4a9de 100644 --- a/api_docs/expression_legacy_metric_vis.mdx +++ b/api_docs/expression_legacy_metric_vis.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionLegacyMetricVis title: "expressionLegacyMetricVis" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionLegacyMetricVis plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionLegacyMetricVis'] --- import expressionLegacyMetricVisObj from './expression_legacy_metric_vis.devdocs.json'; diff --git a/api_docs/expression_metric.mdx b/api_docs/expression_metric.mdx index de64ed48c26ca..3d65bc107e617 100644 --- a/api_docs/expression_metric.mdx +++ b/api_docs/expression_metric.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetric title: "expressionMetric" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionMetric plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetric'] --- import expressionMetricObj from './expression_metric.devdocs.json'; diff --git a/api_docs/expression_metric_vis.mdx b/api_docs/expression_metric_vis.mdx index 27d476ad498f5..75517415267e0 100644 --- a/api_docs/expression_metric_vis.mdx +++ b/api_docs/expression_metric_vis.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetricVis title: "expressionMetricVis" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionMetricVis plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetricVis'] --- import expressionMetricVisObj from './expression_metric_vis.devdocs.json'; diff --git a/api_docs/expression_partition_vis.mdx b/api_docs/expression_partition_vis.mdx index 6f87ccb0f8dc7..42a25678e777d 100644 --- a/api_docs/expression_partition_vis.mdx +++ b/api_docs/expression_partition_vis.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionPartitionVis title: "expressionPartitionVis" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionPartitionVis plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionPartitionVis'] --- import expressionPartitionVisObj from './expression_partition_vis.devdocs.json'; diff --git a/api_docs/expression_repeat_image.mdx b/api_docs/expression_repeat_image.mdx index 51f43f56d417f..9bafa35f80794 100644 --- a/api_docs/expression_repeat_image.mdx +++ b/api_docs/expression_repeat_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRepeatImage title: "expressionRepeatImage" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionRepeatImage plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRepeatImage'] --- import expressionRepeatImageObj from './expression_repeat_image.devdocs.json'; diff --git a/api_docs/expression_reveal_image.mdx b/api_docs/expression_reveal_image.mdx index 511b3ba14be1b..e0cdc69d636d9 100644 --- a/api_docs/expression_reveal_image.mdx +++ b/api_docs/expression_reveal_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRevealImage title: "expressionRevealImage" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionRevealImage plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage'] --- import expressionRevealImageObj from './expression_reveal_image.devdocs.json'; diff --git a/api_docs/expression_shape.mdx b/api_docs/expression_shape.mdx index 27c25e798ad9d..62aa475f1156c 100644 --- a/api_docs/expression_shape.mdx +++ b/api_docs/expression_shape.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionShape title: "expressionShape" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionShape plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionShape'] --- import expressionShapeObj from './expression_shape.devdocs.json'; diff --git a/api_docs/expression_tagcloud.mdx b/api_docs/expression_tagcloud.mdx index 438836d6f6796..cd5d90a3e6cf3 100644 --- a/api_docs/expression_tagcloud.mdx +++ b/api_docs/expression_tagcloud.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionTagcloud title: "expressionTagcloud" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionTagcloud plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud'] --- import expressionTagcloudObj from './expression_tagcloud.devdocs.json'; diff --git a/api_docs/expression_x_y.mdx b/api_docs/expression_x_y.mdx index 2aa69f3af47b6..e338d57e6f0f1 100644 --- a/api_docs/expression_x_y.mdx +++ b/api_docs/expression_x_y.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionXY title: "expressionXY" image: https://source.unsplash.com/400x175/?github description: API docs for the expressionXY plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionXY'] --- import expressionXYObj from './expression_x_y.devdocs.json'; diff --git a/api_docs/expressions.mdx b/api_docs/expressions.mdx index 396020e799a5d..c187ed5a0c268 100644 --- a/api_docs/expressions.mdx +++ b/api_docs/expressions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressions title: "expressions" image: https://source.unsplash.com/400x175/?github description: API docs for the expressions plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions'] --- import expressionsObj from './expressions.devdocs.json'; diff --git a/api_docs/features.mdx b/api_docs/features.mdx index 9a6f7e6ba0efa..268a930b7c64d 100644 --- a/api_docs/features.mdx +++ b/api_docs/features.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/features title: "features" image: https://source.unsplash.com/400x175/?github description: API docs for the features plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features'] --- import featuresObj from './features.devdocs.json'; diff --git a/api_docs/field_formats.devdocs.json b/api_docs/field_formats.devdocs.json index 309316f1deb28..d4f8c33a70b9e 100644 --- a/api_docs/field_formats.devdocs.json +++ b/api_docs/field_formats.devdocs.json @@ -352,7 +352,7 @@ "label": "FieldFormatsSetup", "description": [], "signature": [ - "{ has: (id: string) => boolean; register: (fieldFormats: ", + "{ register: (fieldFormats: ", { "pluginId": "fieldFormats", "scope": "common", @@ -360,7 +360,7 @@ "section": "def-common.FieldFormatInstanceType", "text": "FieldFormatInstanceType" }, - "[]) => void; }" + "[]) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/field_formats/public/plugin.ts", "deprecated": false, @@ -384,7 +384,7 @@ "section": "def-common.FieldFormatsRegistry", "text": "FieldFormatsRegistry" }, - ", \"register\" | \"init\"> & { deserialize: ", + ", \"init\" | \"register\"> & { deserialize: ", { "pluginId": "fieldFormats", "scope": "common", @@ -5748,7 +5748,7 @@ "label": "FieldFormatsStartCommon", "description": [], "signature": [ - "{ has: (id: string) => boolean; deserialize: ", + "{ deserialize: ", { "pluginId": "fieldFormats", "scope": "common", @@ -5988,7 +5988,7 @@ "section": "def-common.FieldFormatConfig", "text": "FieldFormatConfig" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, @@ -6172,15 +6172,7 @@ "label": "IFieldFormatsRegistry", "description": [], "signature": [ - "{ has: (id: string) => boolean; register: (fieldFormats: ", - { - "pluginId": "fieldFormats", - "scope": "common", - "docId": "kibFieldFormatsPluginApi", - "section": "def-common.FieldFormatInstanceType", - "text": "FieldFormatInstanceType" - }, - "[]) => void; init: (getConfig: ", + "{ init: (getConfig: ", { "pluginId": "fieldFormats", "scope": "common", @@ -6212,6 +6204,14 @@ "section": "def-common.FieldFormatInstanceType", "text": "FieldFormatInstanceType" }, + "[]) => void; register: (fieldFormats: ", + { + "pluginId": "fieldFormats", + "scope": "common", + "docId": "kibFieldFormatsPluginApi", + "section": "def-common.FieldFormatInstanceType", + "text": "FieldFormatInstanceType" + }, "[]) => void; deserialize: ", { "pluginId": "fieldFormats", @@ -6452,7 +6452,7 @@ "section": "def-common.FieldFormatConfig", "text": "FieldFormatConfig" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/field_formats/common/index.ts", "deprecated": false, diff --git a/api_docs/field_formats.mdx b/api_docs/field_formats.mdx index d761000d37cdb..c2955918d2cbb 100644 --- a/api_docs/field_formats.mdx +++ b/api_docs/field_formats.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fieldFormats title: "fieldFormats" image: https://source.unsplash.com/400x175/?github description: API docs for the fieldFormats plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fieldFormats'] --- import fieldFormatsObj from './field_formats.devdocs.json'; diff --git a/api_docs/file_upload.mdx b/api_docs/file_upload.mdx index 2e5be5f9059e1..951a040359fc0 100644 --- a/api_docs/file_upload.mdx +++ b/api_docs/file_upload.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fileUpload title: "fileUpload" image: https://source.unsplash.com/400x175/?github description: API docs for the fileUpload plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload'] --- import fileUploadObj from './file_upload.devdocs.json'; diff --git a/api_docs/files.mdx b/api_docs/files.mdx index c8c764e81602d..5b9d6f3da2059 100644 --- a/api_docs/files.mdx +++ b/api_docs/files.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/files title: "files" image: https://source.unsplash.com/400x175/?github description: API docs for the files plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'files'] --- import filesObj from './files.devdocs.json'; diff --git a/api_docs/files_management.mdx b/api_docs/files_management.mdx index 3f26568471bf2..46c3e88281155 100644 --- a/api_docs/files_management.mdx +++ b/api_docs/files_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/filesManagement title: "filesManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the filesManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement'] --- import filesManagementObj from './files_management.devdocs.json'; diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx index 3c545e00c622d..624c2d71bce89 100644 --- a/api_docs/fleet.mdx +++ b/api_docs/fleet.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fleet title: "fleet" image: https://source.unsplash.com/400x175/?github description: API docs for the fleet plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet'] --- import fleetObj from './fleet.devdocs.json'; diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx index 9fb694a069464..2aef1eb1e7d44 100644 --- a/api_docs/global_search.mdx +++ b/api_docs/global_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/globalSearch title: "globalSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the globalSearch plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch'] --- import globalSearchObj from './global_search.devdocs.json'; diff --git a/api_docs/guided_onboarding.mdx b/api_docs/guided_onboarding.mdx index 9e6ba650c2da7..600524142c9e8 100644 --- a/api_docs/guided_onboarding.mdx +++ b/api_docs/guided_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/guidedOnboarding title: "guidedOnboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the guidedOnboarding plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'guidedOnboarding'] --- import guidedOnboardingObj from './guided_onboarding.devdocs.json'; diff --git a/api_docs/home.mdx b/api_docs/home.mdx index dbd6f08f8716c..18bc7c3f5e0f6 100644 --- a/api_docs/home.mdx +++ b/api_docs/home.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/home title: "home" image: https://source.unsplash.com/400x175/?github description: API docs for the home plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'home'] --- import homeObj from './home.devdocs.json'; diff --git a/api_docs/image_embeddable.mdx b/api_docs/image_embeddable.mdx index 5e451c5cd72ef..77912afc2126a 100644 --- a/api_docs/image_embeddable.mdx +++ b/api_docs/image_embeddable.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/imageEmbeddable title: "imageEmbeddable" image: https://source.unsplash.com/400x175/?github description: API docs for the imageEmbeddable plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'imageEmbeddable'] --- import imageEmbeddableObj from './image_embeddable.devdocs.json'; diff --git a/api_docs/index_lifecycle_management.mdx b/api_docs/index_lifecycle_management.mdx index 7676955b9bf14..577a0ee22da7a 100644 --- a/api_docs/index_lifecycle_management.mdx +++ b/api_docs/index_lifecycle_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexLifecycleManagement title: "indexLifecycleManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the indexLifecycleManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexLifecycleManagement'] --- import indexLifecycleManagementObj from './index_lifecycle_management.devdocs.json'; diff --git a/api_docs/index_management.mdx b/api_docs/index_management.mdx index e78c18f56cb5f..22fa699bdcd19 100644 --- a/api_docs/index_management.mdx +++ b/api_docs/index_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexManagement title: "indexManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the indexManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement'] --- import indexManagementObj from './index_management.devdocs.json'; diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx index 16a212aff29d3..a9c227d21af98 100644 --- a/api_docs/infra.mdx +++ b/api_docs/infra.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/infra title: "infra" image: https://source.unsplash.com/400x175/?github description: API docs for the infra plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra'] --- import infraObj from './infra.devdocs.json'; diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx index 93a77f0829ee9..6ae66934a55d1 100644 --- a/api_docs/inspector.mdx +++ b/api_docs/inspector.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/inspector title: "inspector" image: https://source.unsplash.com/400x175/?github description: API docs for the inspector plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'inspector'] --- import inspectorObj from './inspector.devdocs.json'; diff --git a/api_docs/interactive_setup.mdx b/api_docs/interactive_setup.mdx index 02c9326eea040..2ab5d39b10e30 100644 --- a/api_docs/interactive_setup.mdx +++ b/api_docs/interactive_setup.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/interactiveSetup title: "interactiveSetup" image: https://source.unsplash.com/400x175/?github description: API docs for the interactiveSetup plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'interactiveSetup'] --- import interactiveSetupObj from './interactive_setup.devdocs.json'; diff --git a/api_docs/kbn_ace.mdx b/api_docs/kbn_ace.mdx index 56549b7b0fd4e..67ee43007fdc9 100644 --- a/api_docs/kbn_ace.mdx +++ b/api_docs/kbn_ace.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ace title: "@kbn/ace" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ace plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ace'] --- import kbnAceObj from './kbn_ace.devdocs.json'; diff --git a/api_docs/kbn_aiops_components.mdx b/api_docs/kbn_aiops_components.mdx index 6f6e422407e04..3803893785185 100644 --- a/api_docs/kbn_aiops_components.mdx +++ b/api_docs/kbn_aiops_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-components title: "@kbn/aiops-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/aiops-components plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-components'] --- import kbnAiopsComponentsObj from './kbn_aiops_components.devdocs.json'; diff --git a/api_docs/kbn_aiops_utils.mdx b/api_docs/kbn_aiops_utils.mdx index c03288779db17..c71c2df062db1 100644 --- a/api_docs/kbn_aiops_utils.mdx +++ b/api_docs/kbn_aiops_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-utils title: "@kbn/aiops-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/aiops-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils'] --- import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json'; diff --git a/api_docs/kbn_alerting_state_types.mdx b/api_docs/kbn_alerting_state_types.mdx index 13f7e7045653d..dc2bd696405a8 100644 --- a/api_docs/kbn_alerting_state_types.mdx +++ b/api_docs/kbn_alerting_state_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerting-state-types title: "@kbn/alerting-state-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerting-state-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerting-state-types'] --- import kbnAlertingStateTypesObj from './kbn_alerting_state_types.devdocs.json'; diff --git a/api_docs/kbn_alerts.mdx b/api_docs/kbn_alerts.mdx index 2f2b3283d1d34..5610770bef960 100644 --- a/api_docs/kbn_alerts.mdx +++ b/api_docs/kbn_alerts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts title: "@kbn/alerts" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerts plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts'] --- import kbnAlertsObj from './kbn_alerts.devdocs.json'; diff --git a/api_docs/kbn_alerts_as_data_utils.mdx b/api_docs/kbn_alerts_as_data_utils.mdx index 1e81906ce9fc8..dbc0fccbc39ff 100644 --- a/api_docs/kbn_alerts_as_data_utils.mdx +++ b/api_docs/kbn_alerts_as_data_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts-as-data-utils title: "@kbn/alerts-as-data-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerts-as-data-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-as-data-utils'] --- import kbnAlertsAsDataUtilsObj from './kbn_alerts_as_data_utils.devdocs.json'; diff --git a/api_docs/kbn_alerts_ui_shared.mdx b/api_docs/kbn_alerts_ui_shared.mdx index d0e006ff3e866..1f152e91c60e2 100644 --- a/api_docs/kbn_alerts_ui_shared.mdx +++ b/api_docs/kbn_alerts_ui_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts-ui-shared title: "@kbn/alerts-ui-shared" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerts-ui-shared plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts-ui-shared'] --- import kbnAlertsUiSharedObj from './kbn_alerts_ui_shared.devdocs.json'; diff --git a/api_docs/kbn_analytics.mdx b/api_docs/kbn_analytics.mdx index 7157be3ae4dc6..a5b9c7ed5ca56 100644 --- a/api_docs/kbn_analytics.mdx +++ b/api_docs/kbn_analytics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics title: "@kbn/analytics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics'] --- import kbnAnalyticsObj from './kbn_analytics.devdocs.json'; diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx index cb3135d0183a8..26bc13c4db5fc 100644 --- a/api_docs/kbn_analytics_client.mdx +++ b/api_docs/kbn_analytics_client.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-client title: "@kbn/analytics-client" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-client plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-client'] --- import kbnAnalyticsClientObj from './kbn_analytics_client.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx index a4613191b0259..242a6221a751d 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx +++ b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-browser title: "@kbn/analytics-shippers-elastic-v3-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-elastic-v3-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-browser'] --- import kbnAnalyticsShippersElasticV3BrowserObj from './kbn_analytics_shippers_elastic_v3_browser.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx index e1e6a136955f9..74799d1f0d30f 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx +++ b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-common title: "@kbn/analytics-shippers-elastic-v3-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-elastic-v3-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-common'] --- import kbnAnalyticsShippersElasticV3CommonObj from './kbn_analytics_shippers_elastic_v3_common.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx index 0b4edfefa7c4d..fa20d286793fb 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx +++ b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-server title: "@kbn/analytics-shippers-elastic-v3-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-elastic-v3-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-server'] --- import kbnAnalyticsShippersElasticV3ServerObj from './kbn_analytics_shippers_elastic_v3_server.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_fullstory.mdx b/api_docs/kbn_analytics_shippers_fullstory.mdx index b5a027419cbfa..c46bd2626a0d7 100644 --- a/api_docs/kbn_analytics_shippers_fullstory.mdx +++ b/api_docs/kbn_analytics_shippers_fullstory.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-fullstory title: "@kbn/analytics-shippers-fullstory" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-fullstory plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-fullstory'] --- import kbnAnalyticsShippersFullstoryObj from './kbn_analytics_shippers_fullstory.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_gainsight.mdx b/api_docs/kbn_analytics_shippers_gainsight.mdx index 9b82c3f75622f..2f789d03d3064 100644 --- a/api_docs/kbn_analytics_shippers_gainsight.mdx +++ b/api_docs/kbn_analytics_shippers_gainsight.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-gainsight title: "@kbn/analytics-shippers-gainsight" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/analytics-shippers-gainsight plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-gainsight'] --- import kbnAnalyticsShippersGainsightObj from './kbn_analytics_shippers_gainsight.devdocs.json'; diff --git a/api_docs/kbn_apm_config_loader.mdx b/api_docs/kbn_apm_config_loader.mdx index ace30980aa096..646095277ae18 100644 --- a/api_docs/kbn_apm_config_loader.mdx +++ b/api_docs/kbn_apm_config_loader.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-config-loader title: "@kbn/apm-config-loader" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-config-loader plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-config-loader'] --- import kbnApmConfigLoaderObj from './kbn_apm_config_loader.devdocs.json'; diff --git a/api_docs/kbn_apm_synthtrace.mdx b/api_docs/kbn_apm_synthtrace.mdx index 91e57f8c794a6..440bc59095fb9 100644 --- a/api_docs/kbn_apm_synthtrace.mdx +++ b/api_docs/kbn_apm_synthtrace.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-synthtrace title: "@kbn/apm-synthtrace" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-synthtrace plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace'] --- import kbnApmSynthtraceObj from './kbn_apm_synthtrace.devdocs.json'; diff --git a/api_docs/kbn_apm_synthtrace_client.mdx b/api_docs/kbn_apm_synthtrace_client.mdx index 726dd481c8896..fb4fc2d58e1d7 100644 --- a/api_docs/kbn_apm_synthtrace_client.mdx +++ b/api_docs/kbn_apm_synthtrace_client.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-synthtrace-client title: "@kbn/apm-synthtrace-client" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-synthtrace-client plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace-client'] --- import kbnApmSynthtraceClientObj from './kbn_apm_synthtrace_client.devdocs.json'; diff --git a/api_docs/kbn_apm_utils.mdx b/api_docs/kbn_apm_utils.mdx index 66bd86dda8f90..1a24a499081d6 100644 --- a/api_docs/kbn_apm_utils.mdx +++ b/api_docs/kbn_apm_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-utils title: "@kbn/apm-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/apm-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-utils'] --- import kbnApmUtilsObj from './kbn_apm_utils.devdocs.json'; diff --git a/api_docs/kbn_axe_config.mdx b/api_docs/kbn_axe_config.mdx index 5c333500ffd42..cfc894c0aed33 100644 --- a/api_docs/kbn_axe_config.mdx +++ b/api_docs/kbn_axe_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-axe-config title: "@kbn/axe-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/axe-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/axe-config'] --- import kbnAxeConfigObj from './kbn_axe_config.devdocs.json'; diff --git a/api_docs/kbn_cases_components.mdx b/api_docs/kbn_cases_components.mdx index f6c1bb8c1fdd2..20950b0b5504b 100644 --- a/api_docs/kbn_cases_components.mdx +++ b/api_docs/kbn_cases_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cases-components title: "@kbn/cases-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cases-components plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cases-components'] --- import kbnCasesComponentsObj from './kbn_cases_components.devdocs.json'; diff --git a/api_docs/kbn_cell_actions.mdx b/api_docs/kbn_cell_actions.mdx index b51e865e91efb..39e5c1f3876ed 100644 --- a/api_docs/kbn_cell_actions.mdx +++ b/api_docs/kbn_cell_actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cell-actions title: "@kbn/cell-actions" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cell-actions plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cell-actions'] --- import kbnCellActionsObj from './kbn_cell_actions.devdocs.json'; diff --git a/api_docs/kbn_chart_expressions_common.mdx b/api_docs/kbn_chart_expressions_common.mdx index 675e932b51da8..4b9682a493355 100644 --- a/api_docs/kbn_chart_expressions_common.mdx +++ b/api_docs/kbn_chart_expressions_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-chart-expressions-common title: "@kbn/chart-expressions-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/chart-expressions-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-expressions-common'] --- import kbnChartExpressionsCommonObj from './kbn_chart_expressions_common.devdocs.json'; diff --git a/api_docs/kbn_chart_icons.mdx b/api_docs/kbn_chart_icons.mdx index b44bc8d08398e..6ee7741aac660 100644 --- a/api_docs/kbn_chart_icons.mdx +++ b/api_docs/kbn_chart_icons.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-chart-icons title: "@kbn/chart-icons" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/chart-icons plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/chart-icons'] --- import kbnChartIconsObj from './kbn_chart_icons.devdocs.json'; diff --git a/api_docs/kbn_ci_stats_core.mdx b/api_docs/kbn_ci_stats_core.mdx index fcc1c1000d1aa..7535c8f6802bb 100644 --- a/api_docs/kbn_ci_stats_core.mdx +++ b/api_docs/kbn_ci_stats_core.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-core title: "@kbn/ci-stats-core" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ci-stats-core plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-core'] --- import kbnCiStatsCoreObj from './kbn_ci_stats_core.devdocs.json'; diff --git a/api_docs/kbn_ci_stats_performance_metrics.mdx b/api_docs/kbn_ci_stats_performance_metrics.mdx index b1a660d40aed7..e38354234f2a1 100644 --- a/api_docs/kbn_ci_stats_performance_metrics.mdx +++ b/api_docs/kbn_ci_stats_performance_metrics.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-performance-metrics title: "@kbn/ci-stats-performance-metrics" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ci-stats-performance-metrics plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-performance-metrics'] --- import kbnCiStatsPerformanceMetricsObj from './kbn_ci_stats_performance_metrics.devdocs.json'; diff --git a/api_docs/kbn_ci_stats_reporter.mdx b/api_docs/kbn_ci_stats_reporter.mdx index 713d09c35b297..436a35b857d97 100644 --- a/api_docs/kbn_ci_stats_reporter.mdx +++ b/api_docs/kbn_ci_stats_reporter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-reporter title: "@kbn/ci-stats-reporter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ci-stats-reporter plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-reporter'] --- import kbnCiStatsReporterObj from './kbn_ci_stats_reporter.devdocs.json'; diff --git a/api_docs/kbn_cli_dev_mode.mdx b/api_docs/kbn_cli_dev_mode.mdx index 8fc45e01f5276..72b4147358ebf 100644 --- a/api_docs/kbn_cli_dev_mode.mdx +++ b/api_docs/kbn_cli_dev_mode.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cli-dev-mode title: "@kbn/cli-dev-mode" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cli-dev-mode plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cli-dev-mode'] --- import kbnCliDevModeObj from './kbn_cli_dev_mode.devdocs.json'; diff --git a/api_docs/kbn_code_editor.mdx b/api_docs/kbn_code_editor.mdx index 6e387bc634e31..a438c3ac72212 100644 --- a/api_docs/kbn_code_editor.mdx +++ b/api_docs/kbn_code_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor title: "@kbn/code-editor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/code-editor plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor'] --- import kbnCodeEditorObj from './kbn_code_editor.devdocs.json'; diff --git a/api_docs/kbn_code_editor_mocks.mdx b/api_docs/kbn_code_editor_mocks.mdx index eb297f16ae3b5..6faa2e668df36 100644 --- a/api_docs/kbn_code_editor_mocks.mdx +++ b/api_docs/kbn_code_editor_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-code-editor-mocks title: "@kbn/code-editor-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/code-editor-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/code-editor-mocks'] --- import kbnCodeEditorMocksObj from './kbn_code_editor_mocks.devdocs.json'; diff --git a/api_docs/kbn_coloring.mdx b/api_docs/kbn_coloring.mdx index 68b302a974a04..d0f93bffc6bcd 100644 --- a/api_docs/kbn_coloring.mdx +++ b/api_docs/kbn_coloring.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-coloring title: "@kbn/coloring" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/coloring plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/coloring'] --- import kbnColoringObj from './kbn_coloring.devdocs.json'; diff --git a/api_docs/kbn_config.mdx b/api_docs/kbn_config.mdx index dd6338465c03e..0c1bc4ec3037a 100644 --- a/api_docs/kbn_config.mdx +++ b/api_docs/kbn_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config title: "@kbn/config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config'] --- import kbnConfigObj from './kbn_config.devdocs.json'; diff --git a/api_docs/kbn_config_mocks.mdx b/api_docs/kbn_config_mocks.mdx index b4f8c91a27b78..654be1f4dc6f6 100644 --- a/api_docs/kbn_config_mocks.mdx +++ b/api_docs/kbn_config_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config-mocks title: "@kbn/config-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/config-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-mocks'] --- import kbnConfigMocksObj from './kbn_config_mocks.devdocs.json'; diff --git a/api_docs/kbn_config_schema.mdx b/api_docs/kbn_config_schema.mdx index e33a74eb68baa..e33c9b85eb791 100644 --- a/api_docs/kbn_config_schema.mdx +++ b/api_docs/kbn_config_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-config-schema title: "@kbn/config-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/config-schema plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-schema'] --- import kbnConfigSchemaObj from './kbn_config_schema.devdocs.json'; diff --git a/api_docs/kbn_content_management_content_editor.mdx b/api_docs/kbn_content_management_content_editor.mdx index 902d8058f97ba..8080fd41a6217 100644 --- a/api_docs/kbn_content_management_content_editor.mdx +++ b/api_docs/kbn_content_management_content_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-content-editor title: "@kbn/content-management-content-editor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-content-editor plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-content-editor'] --- import kbnContentManagementContentEditorObj from './kbn_content_management_content_editor.devdocs.json'; diff --git a/api_docs/kbn_content_management_table_list.mdx b/api_docs/kbn_content_management_table_list.mdx index 352bf38fdc892..8eb1ca361def0 100644 --- a/api_docs/kbn_content_management_table_list.mdx +++ b/api_docs/kbn_content_management_table_list.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-content-management-table-list title: "@kbn/content-management-table-list" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/content-management-table-list plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/content-management-table-list'] --- import kbnContentManagementTableListObj from './kbn_content_management_table_list.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser.mdx b/api_docs/kbn_core_analytics_browser.mdx index e4539cda8a262..7e6d452bd3dc8 100644 --- a/api_docs/kbn_core_analytics_browser.mdx +++ b/api_docs/kbn_core_analytics_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser title: "@kbn/core-analytics-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser'] --- import kbnCoreAnalyticsBrowserObj from './kbn_core_analytics_browser.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser_internal.mdx b/api_docs/kbn_core_analytics_browser_internal.mdx index 73d91698923fb..f88d22357c501 100644 --- a/api_docs/kbn_core_analytics_browser_internal.mdx +++ b/api_docs/kbn_core_analytics_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-internal title: "@kbn/core-analytics-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-internal'] --- import kbnCoreAnalyticsBrowserInternalObj from './kbn_core_analytics_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser_mocks.mdx b/api_docs/kbn_core_analytics_browser_mocks.mdx index 960ae88c34d9c..9ed87daf3b53d 100644 --- a/api_docs/kbn_core_analytics_browser_mocks.mdx +++ b/api_docs/kbn_core_analytics_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-browser-mocks title: "@kbn/core-analytics-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-browser-mocks'] --- import kbnCoreAnalyticsBrowserMocksObj from './kbn_core_analytics_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server.mdx b/api_docs/kbn_core_analytics_server.mdx index af90434afd14f..3ee3bc858e18f 100644 --- a/api_docs/kbn_core_analytics_server.mdx +++ b/api_docs/kbn_core_analytics_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server title: "@kbn/core-analytics-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server'] --- import kbnCoreAnalyticsServerObj from './kbn_core_analytics_server.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server_internal.mdx b/api_docs/kbn_core_analytics_server_internal.mdx index fdc150048b546..944c7c7e5e095 100644 --- a/api_docs/kbn_core_analytics_server_internal.mdx +++ b/api_docs/kbn_core_analytics_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-internal title: "@kbn/core-analytics-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-internal'] --- import kbnCoreAnalyticsServerInternalObj from './kbn_core_analytics_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_server_mocks.mdx b/api_docs/kbn_core_analytics_server_mocks.mdx index 2bdd7491f44d6..e8b3ed64abd21 100644 --- a/api_docs/kbn_core_analytics_server_mocks.mdx +++ b/api_docs/kbn_core_analytics_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-analytics-server-mocks title: "@kbn/core-analytics-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-analytics-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-mocks'] --- import kbnCoreAnalyticsServerMocksObj from './kbn_core_analytics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser.mdx b/api_docs/kbn_core_application_browser.mdx index 1ef2887cc17b1..73a96764f0a20 100644 --- a/api_docs/kbn_core_application_browser.mdx +++ b/api_docs/kbn_core_application_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser title: "@kbn/core-application-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser'] --- import kbnCoreApplicationBrowserObj from './kbn_core_application_browser.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser_internal.mdx b/api_docs/kbn_core_application_browser_internal.mdx index 9fab0c7fe7abb..65e5281d02558 100644 --- a/api_docs/kbn_core_application_browser_internal.mdx +++ b/api_docs/kbn_core_application_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-internal title: "@kbn/core-application-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-internal'] --- import kbnCoreApplicationBrowserInternalObj from './kbn_core_application_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser_mocks.mdx b/api_docs/kbn_core_application_browser_mocks.mdx index 8b54a6f3d6c1d..e0544bfb741b8 100644 --- a/api_docs/kbn_core_application_browser_mocks.mdx +++ b/api_docs/kbn_core_application_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-browser-mocks title: "@kbn/core-application-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-browser-mocks'] --- import kbnCoreApplicationBrowserMocksObj from './kbn_core_application_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_common.mdx b/api_docs/kbn_core_application_common.mdx index 5e7a72c0bd96e..abdcdcab8b3da 100644 --- a/api_docs/kbn_core_application_common.mdx +++ b/api_docs/kbn_core_application_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-application-common title: "@kbn/core-application-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-application-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-application-common'] --- import kbnCoreApplicationCommonObj from './kbn_core_application_common.devdocs.json'; diff --git a/api_docs/kbn_core_apps_browser_internal.mdx b/api_docs/kbn_core_apps_browser_internal.mdx index b7e613f201591..5a7df9b5c701d 100644 --- a/api_docs/kbn_core_apps_browser_internal.mdx +++ b/api_docs/kbn_core_apps_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-internal title: "@kbn/core-apps-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-internal'] --- import kbnCoreAppsBrowserInternalObj from './kbn_core_apps_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_apps_browser_mocks.mdx b/api_docs/kbn_core_apps_browser_mocks.mdx index 18a7187fd6a2a..4f7120a3dcfe7 100644 --- a/api_docs/kbn_core_apps_browser_mocks.mdx +++ b/api_docs/kbn_core_apps_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-browser-mocks title: "@kbn/core-apps-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-browser-mocks'] --- import kbnCoreAppsBrowserMocksObj from './kbn_core_apps_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_apps_server_internal.mdx b/api_docs/kbn_core_apps_server_internal.mdx index 7be151a808381..04b4becdc9ed7 100644 --- a/api_docs/kbn_core_apps_server_internal.mdx +++ b/api_docs/kbn_core_apps_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-apps-server-internal title: "@kbn/core-apps-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-apps-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-apps-server-internal'] --- import kbnCoreAppsServerInternalObj from './kbn_core_apps_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_base_browser_mocks.mdx b/api_docs/kbn_core_base_browser_mocks.mdx index c318aef48698f..7edc1c2bf0108 100644 --- a/api_docs/kbn_core_base_browser_mocks.mdx +++ b/api_docs/kbn_core_base_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-browser-mocks title: "@kbn/core-base-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-browser-mocks'] --- import kbnCoreBaseBrowserMocksObj from './kbn_core_base_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_base_common.mdx b/api_docs/kbn_core_base_common.mdx index a3e2b8e108b9c..31241bd3ebab8 100644 --- a/api_docs/kbn_core_base_common.mdx +++ b/api_docs/kbn_core_base_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-common title: "@kbn/core-base-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-common'] --- import kbnCoreBaseCommonObj from './kbn_core_base_common.devdocs.json'; diff --git a/api_docs/kbn_core_base_server_internal.mdx b/api_docs/kbn_core_base_server_internal.mdx index e8983ef40ea70..c77e0e47adc5e 100644 --- a/api_docs/kbn_core_base_server_internal.mdx +++ b/api_docs/kbn_core_base_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-internal title: "@kbn/core-base-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-internal'] --- import kbnCoreBaseServerInternalObj from './kbn_core_base_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_base_server_mocks.mdx b/api_docs/kbn_core_base_server_mocks.mdx index ecae73446750f..415fe2fed1189 100644 --- a/api_docs/kbn_core_base_server_mocks.mdx +++ b/api_docs/kbn_core_base_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-base-server-mocks title: "@kbn/core-base-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-base-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-base-server-mocks'] --- import kbnCoreBaseServerMocksObj from './kbn_core_base_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_browser_mocks.mdx b/api_docs/kbn_core_capabilities_browser_mocks.mdx index 153b0cc230a48..b98ffe805e860 100644 --- a/api_docs/kbn_core_capabilities_browser_mocks.mdx +++ b/api_docs/kbn_core_capabilities_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-browser-mocks title: "@kbn/core-capabilities-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-browser-mocks'] --- import kbnCoreCapabilitiesBrowserMocksObj from './kbn_core_capabilities_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_common.mdx b/api_docs/kbn_core_capabilities_common.mdx index 868d603c8e281..4777bb07d8cb8 100644 --- a/api_docs/kbn_core_capabilities_common.mdx +++ b/api_docs/kbn_core_capabilities_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-common title: "@kbn/core-capabilities-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-common'] --- import kbnCoreCapabilitiesCommonObj from './kbn_core_capabilities_common.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_server.mdx b/api_docs/kbn_core_capabilities_server.mdx index 0ce797c61c16a..4f83cbf656d29 100644 --- a/api_docs/kbn_core_capabilities_server.mdx +++ b/api_docs/kbn_core_capabilities_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server title: "@kbn/core-capabilities-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server'] --- import kbnCoreCapabilitiesServerObj from './kbn_core_capabilities_server.devdocs.json'; diff --git a/api_docs/kbn_core_capabilities_server_mocks.mdx b/api_docs/kbn_core_capabilities_server_mocks.mdx index 75673d3116a09..b29b724f4ff08 100644 --- a/api_docs/kbn_core_capabilities_server_mocks.mdx +++ b/api_docs/kbn_core_capabilities_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-capabilities-server-mocks title: "@kbn/core-capabilities-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-capabilities-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server-mocks'] --- import kbnCoreCapabilitiesServerMocksObj from './kbn_core_capabilities_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser.mdx b/api_docs/kbn_core_chrome_browser.mdx index 8f877bcf977b6..4f4b841e7c133 100644 --- a/api_docs/kbn_core_chrome_browser.mdx +++ b/api_docs/kbn_core_chrome_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser title: "@kbn/core-chrome-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-chrome-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser'] --- import kbnCoreChromeBrowserObj from './kbn_core_chrome_browser.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser_mocks.mdx b/api_docs/kbn_core_chrome_browser_mocks.mdx index 7a350e8939743..78e1da6e97f8d 100644 --- a/api_docs/kbn_core_chrome_browser_mocks.mdx +++ b/api_docs/kbn_core_chrome_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-chrome-browser-mocks title: "@kbn/core-chrome-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-chrome-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser-mocks'] --- import kbnCoreChromeBrowserMocksObj from './kbn_core_chrome_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_config_server_internal.mdx b/api_docs/kbn_core_config_server_internal.mdx index a87c9eeb31bff..c387e23236985 100644 --- a/api_docs/kbn_core_config_server_internal.mdx +++ b/api_docs/kbn_core_config_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-config-server-internal title: "@kbn/core-config-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-config-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-config-server-internal'] --- import kbnCoreConfigServerInternalObj from './kbn_core_config_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser.mdx b/api_docs/kbn_core_custom_branding_browser.mdx index 739a017c4c0da..c85986cb5d39c 100644 --- a/api_docs/kbn_core_custom_branding_browser.mdx +++ b/api_docs/kbn_core_custom_branding_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser title: "@kbn/core-custom-branding-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser'] --- import kbnCoreCustomBrandingBrowserObj from './kbn_core_custom_branding_browser.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser_internal.mdx b/api_docs/kbn_core_custom_branding_browser_internal.mdx index e8edf0f9f8113..6cd7e8cdd4dd8 100644 --- a/api_docs/kbn_core_custom_branding_browser_internal.mdx +++ b/api_docs/kbn_core_custom_branding_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-internal title: "@kbn/core-custom-branding-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-internal'] --- import kbnCoreCustomBrandingBrowserInternalObj from './kbn_core_custom_branding_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_browser_mocks.mdx b/api_docs/kbn_core_custom_branding_browser_mocks.mdx index 350cca1f2d2d2..5828e4b3e796f 100644 --- a/api_docs/kbn_core_custom_branding_browser_mocks.mdx +++ b/api_docs/kbn_core_custom_branding_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-browser-mocks title: "@kbn/core-custom-branding-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-browser-mocks'] --- import kbnCoreCustomBrandingBrowserMocksObj from './kbn_core_custom_branding_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_common.mdx b/api_docs/kbn_core_custom_branding_common.mdx index cc528ca5cd1ef..024319834e756 100644 --- a/api_docs/kbn_core_custom_branding_common.mdx +++ b/api_docs/kbn_core_custom_branding_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-common title: "@kbn/core-custom-branding-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-common'] --- import kbnCoreCustomBrandingCommonObj from './kbn_core_custom_branding_common.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server.mdx b/api_docs/kbn_core_custom_branding_server.mdx index 74ca1bb9a985f..ffb1c6e6442ca 100644 --- a/api_docs/kbn_core_custom_branding_server.mdx +++ b/api_docs/kbn_core_custom_branding_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server title: "@kbn/core-custom-branding-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server'] --- import kbnCoreCustomBrandingServerObj from './kbn_core_custom_branding_server.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server_internal.mdx b/api_docs/kbn_core_custom_branding_server_internal.mdx index ba5161f104d25..7bbf0fae324be 100644 --- a/api_docs/kbn_core_custom_branding_server_internal.mdx +++ b/api_docs/kbn_core_custom_branding_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-internal title: "@kbn/core-custom-branding-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-internal'] --- import kbnCoreCustomBrandingServerInternalObj from './kbn_core_custom_branding_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_custom_branding_server_mocks.mdx b/api_docs/kbn_core_custom_branding_server_mocks.mdx index 1af3d87837faf..417f2f0c4d598 100644 --- a/api_docs/kbn_core_custom_branding_server_mocks.mdx +++ b/api_docs/kbn_core_custom_branding_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-custom-branding-server-mocks title: "@kbn/core-custom-branding-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-custom-branding-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-custom-branding-server-mocks'] --- import kbnCoreCustomBrandingServerMocksObj from './kbn_core_custom_branding_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser.mdx b/api_docs/kbn_core_deprecations_browser.mdx index 71730fa9371ed..bf994f0f500a0 100644 --- a/api_docs/kbn_core_deprecations_browser.mdx +++ b/api_docs/kbn_core_deprecations_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser title: "@kbn/core-deprecations-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser'] --- import kbnCoreDeprecationsBrowserObj from './kbn_core_deprecations_browser.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser_internal.mdx b/api_docs/kbn_core_deprecations_browser_internal.mdx index 084618e3d957f..8c304566110e9 100644 --- a/api_docs/kbn_core_deprecations_browser_internal.mdx +++ b/api_docs/kbn_core_deprecations_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-internal title: "@kbn/core-deprecations-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-internal'] --- import kbnCoreDeprecationsBrowserInternalObj from './kbn_core_deprecations_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_browser_mocks.mdx b/api_docs/kbn_core_deprecations_browser_mocks.mdx index 9390479f82dcd..5c4bc6c627f55 100644 --- a/api_docs/kbn_core_deprecations_browser_mocks.mdx +++ b/api_docs/kbn_core_deprecations_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-browser-mocks title: "@kbn/core-deprecations-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-browser-mocks'] --- import kbnCoreDeprecationsBrowserMocksObj from './kbn_core_deprecations_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_common.mdx b/api_docs/kbn_core_deprecations_common.mdx index 3d5745fe2b1c9..e63ecc8a6ff52 100644 --- a/api_docs/kbn_core_deprecations_common.mdx +++ b/api_docs/kbn_core_deprecations_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-common title: "@kbn/core-deprecations-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-common'] --- import kbnCoreDeprecationsCommonObj from './kbn_core_deprecations_common.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server.mdx b/api_docs/kbn_core_deprecations_server.mdx index 246b180c2f920..387f9924f6896 100644 --- a/api_docs/kbn_core_deprecations_server.mdx +++ b/api_docs/kbn_core_deprecations_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server title: "@kbn/core-deprecations-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server'] --- import kbnCoreDeprecationsServerObj from './kbn_core_deprecations_server.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server_internal.mdx b/api_docs/kbn_core_deprecations_server_internal.mdx index b0f1c06bb4425..353c19d437d5e 100644 --- a/api_docs/kbn_core_deprecations_server_internal.mdx +++ b/api_docs/kbn_core_deprecations_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-internal title: "@kbn/core-deprecations-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-internal'] --- import kbnCoreDeprecationsServerInternalObj from './kbn_core_deprecations_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_deprecations_server_mocks.mdx b/api_docs/kbn_core_deprecations_server_mocks.mdx index 6543afbc5b530..6d146e44d7510 100644 --- a/api_docs/kbn_core_deprecations_server_mocks.mdx +++ b/api_docs/kbn_core_deprecations_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-deprecations-server-mocks title: "@kbn/core-deprecations-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-deprecations-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-deprecations-server-mocks'] --- import kbnCoreDeprecationsServerMocksObj from './kbn_core_deprecations_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_browser.mdx b/api_docs/kbn_core_doc_links_browser.mdx index facbc5fa31f7d..ebfad96952499 100644 --- a/api_docs/kbn_core_doc_links_browser.mdx +++ b/api_docs/kbn_core_doc_links_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser title: "@kbn/core-doc-links-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser'] --- import kbnCoreDocLinksBrowserObj from './kbn_core_doc_links_browser.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_browser_mocks.mdx b/api_docs/kbn_core_doc_links_browser_mocks.mdx index 9602554423611..9dab9c9bbbcad 100644 --- a/api_docs/kbn_core_doc_links_browser_mocks.mdx +++ b/api_docs/kbn_core_doc_links_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-browser-mocks title: "@kbn/core-doc-links-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-browser-mocks'] --- import kbnCoreDocLinksBrowserMocksObj from './kbn_core_doc_links_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_server.mdx b/api_docs/kbn_core_doc_links_server.mdx index 7b3785035df84..32dddf219dbdd 100644 --- a/api_docs/kbn_core_doc_links_server.mdx +++ b/api_docs/kbn_core_doc_links_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server title: "@kbn/core-doc-links-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server'] --- import kbnCoreDocLinksServerObj from './kbn_core_doc_links_server.devdocs.json'; diff --git a/api_docs/kbn_core_doc_links_server_mocks.mdx b/api_docs/kbn_core_doc_links_server_mocks.mdx index fec471cf93a5d..57321c54b22b9 100644 --- a/api_docs/kbn_core_doc_links_server_mocks.mdx +++ b/api_docs/kbn_core_doc_links_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-doc-links-server-mocks title: "@kbn/core-doc-links-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-doc-links-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-doc-links-server-mocks'] --- import kbnCoreDocLinksServerMocksObj from './kbn_core_doc_links_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx index 316fc9a186ca7..e91f768a9b11d 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx +++ b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-internal title: "@kbn/core-elasticsearch-client-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-client-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-internal'] --- import kbnCoreElasticsearchClientServerInternalObj from './kbn_core_elasticsearch_client_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx index 6efd2ab2b27cf..6b9414e0651b1 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx +++ b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-client-server-mocks title: "@kbn/core-elasticsearch-client-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-client-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-client-server-mocks'] --- import kbnCoreElasticsearchClientServerMocksObj from './kbn_core_elasticsearch_client_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server.mdx b/api_docs/kbn_core_elasticsearch_server.mdx index 984ed309f2192..145c7f1af2727 100644 --- a/api_docs/kbn_core_elasticsearch_server.mdx +++ b/api_docs/kbn_core_elasticsearch_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server title: "@kbn/core-elasticsearch-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server'] --- import kbnCoreElasticsearchServerObj from './kbn_core_elasticsearch_server.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server_internal.mdx b/api_docs/kbn_core_elasticsearch_server_internal.mdx index 368919a455b67..b545705cc9937 100644 --- a/api_docs/kbn_core_elasticsearch_server_internal.mdx +++ b/api_docs/kbn_core_elasticsearch_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-internal title: "@kbn/core-elasticsearch-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-internal'] --- import kbnCoreElasticsearchServerInternalObj from './kbn_core_elasticsearch_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_elasticsearch_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_server_mocks.mdx index f498fcf3749c8..b0c53699fdaf4 100644 --- a/api_docs/kbn_core_elasticsearch_server_mocks.mdx +++ b/api_docs/kbn_core_elasticsearch_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-elasticsearch-server-mocks title: "@kbn/core-elasticsearch-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-elasticsearch-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-elasticsearch-server-mocks'] --- import kbnCoreElasticsearchServerMocksObj from './kbn_core_elasticsearch_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_environment_server_internal.mdx b/api_docs/kbn_core_environment_server_internal.mdx index 332df60dab9ca..bf60d16f51e7e 100644 --- a/api_docs/kbn_core_environment_server_internal.mdx +++ b/api_docs/kbn_core_environment_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-internal title: "@kbn/core-environment-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-environment-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-internal'] --- import kbnCoreEnvironmentServerInternalObj from './kbn_core_environment_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_environment_server_mocks.mdx b/api_docs/kbn_core_environment_server_mocks.mdx index 6441d4346b2d0..53bc31f39d5ac 100644 --- a/api_docs/kbn_core_environment_server_mocks.mdx +++ b/api_docs/kbn_core_environment_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-environment-server-mocks title: "@kbn/core-environment-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-environment-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-environment-server-mocks'] --- import kbnCoreEnvironmentServerMocksObj from './kbn_core_environment_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser.mdx b/api_docs/kbn_core_execution_context_browser.mdx index 17e7c6a49ea9c..f172396845792 100644 --- a/api_docs/kbn_core_execution_context_browser.mdx +++ b/api_docs/kbn_core_execution_context_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser title: "@kbn/core-execution-context-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser'] --- import kbnCoreExecutionContextBrowserObj from './kbn_core_execution_context_browser.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser_internal.mdx b/api_docs/kbn_core_execution_context_browser_internal.mdx index 38a50f223ab5f..8e788545d793c 100644 --- a/api_docs/kbn_core_execution_context_browser_internal.mdx +++ b/api_docs/kbn_core_execution_context_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-internal title: "@kbn/core-execution-context-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-internal'] --- import kbnCoreExecutionContextBrowserInternalObj from './kbn_core_execution_context_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_browser_mocks.mdx b/api_docs/kbn_core_execution_context_browser_mocks.mdx index 5613e1c79c186..b06caeb0c3c3d 100644 --- a/api_docs/kbn_core_execution_context_browser_mocks.mdx +++ b/api_docs/kbn_core_execution_context_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-browser-mocks title: "@kbn/core-execution-context-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-browser-mocks'] --- import kbnCoreExecutionContextBrowserMocksObj from './kbn_core_execution_context_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_common.mdx b/api_docs/kbn_core_execution_context_common.mdx index e0f2b5ed46386..cd8d797b06c1b 100644 --- a/api_docs/kbn_core_execution_context_common.mdx +++ b/api_docs/kbn_core_execution_context_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-common title: "@kbn/core-execution-context-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-common'] --- import kbnCoreExecutionContextCommonObj from './kbn_core_execution_context_common.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server.mdx b/api_docs/kbn_core_execution_context_server.mdx index 41641137171ee..a57c274f69d25 100644 --- a/api_docs/kbn_core_execution_context_server.mdx +++ b/api_docs/kbn_core_execution_context_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server title: "@kbn/core-execution-context-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server'] --- import kbnCoreExecutionContextServerObj from './kbn_core_execution_context_server.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server_internal.mdx b/api_docs/kbn_core_execution_context_server_internal.mdx index 852ca61f3568a..0eba46d8c5a93 100644 --- a/api_docs/kbn_core_execution_context_server_internal.mdx +++ b/api_docs/kbn_core_execution_context_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-internal title: "@kbn/core-execution-context-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-internal'] --- import kbnCoreExecutionContextServerInternalObj from './kbn_core_execution_context_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_execution_context_server_mocks.mdx b/api_docs/kbn_core_execution_context_server_mocks.mdx index 0170b41ac92d4..aead6167b10ea 100644 --- a/api_docs/kbn_core_execution_context_server_mocks.mdx +++ b/api_docs/kbn_core_execution_context_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-execution-context-server-mocks title: "@kbn/core-execution-context-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-execution-context-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-execution-context-server-mocks'] --- import kbnCoreExecutionContextServerMocksObj from './kbn_core_execution_context_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_fatal_errors_browser.mdx b/api_docs/kbn_core_fatal_errors_browser.mdx index b08e9428cb810..a980e30066c77 100644 --- a/api_docs/kbn_core_fatal_errors_browser.mdx +++ b/api_docs/kbn_core_fatal_errors_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser title: "@kbn/core-fatal-errors-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-fatal-errors-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser'] --- import kbnCoreFatalErrorsBrowserObj from './kbn_core_fatal_errors_browser.devdocs.json'; diff --git a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx index 18513a7f0a6d2..fa51d22025e81 100644 --- a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx +++ b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-fatal-errors-browser-mocks title: "@kbn/core-fatal-errors-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-fatal-errors-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-fatal-errors-browser-mocks'] --- import kbnCoreFatalErrorsBrowserMocksObj from './kbn_core_fatal_errors_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser.devdocs.json b/api_docs/kbn_core_http_browser.devdocs.json index 40375138fb419..54e7d408afd32 100644 --- a/api_docs/kbn_core_http_browser.devdocs.json +++ b/api_docs/kbn_core_http_browser.devdocs.json @@ -217,14 +217,14 @@ { "parentPluginId": "@kbn/core-http-browser", "id": "def-common.HttpFetchOptions.version", - "type": "Uncategorized", + "type": "string", "tags": [ "experimental" ], "label": "version", "description": [], "signature": [ - "`${number}` | undefined" + "string | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, @@ -857,7 +857,7 @@ "section": "def-common.KibanaExecutionContext", "text": "KibanaExecutionContext" }, - " | undefined; readonly version?: `${number}` | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" + " | undefined; readonly version?: string | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, @@ -1234,7 +1234,7 @@ "section": "def-common.KibanaExecutionContext", "text": "KibanaExecutionContext" }, - " | undefined; readonly version?: `${number}` | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" + " | undefined; readonly version?: string | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, diff --git a/api_docs/kbn_core_http_browser.mdx b/api_docs/kbn_core_http_browser.mdx index b61fbe0fe93d7..b74fbf8ec1b93 100644 --- a/api_docs/kbn_core_http_browser.mdx +++ b/api_docs/kbn_core_http_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser title: "@kbn/core-http-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser'] --- import kbnCoreHttpBrowserObj from './kbn_core_http_browser.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser_internal.mdx b/api_docs/kbn_core_http_browser_internal.mdx index 63e3593fc1c29..0bc4d6205ab8a 100644 --- a/api_docs/kbn_core_http_browser_internal.mdx +++ b/api_docs/kbn_core_http_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-internal title: "@kbn/core-http-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-internal'] --- import kbnCoreHttpBrowserInternalObj from './kbn_core_http_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_browser_mocks.mdx b/api_docs/kbn_core_http_browser_mocks.mdx index 2f350200ea7c1..7e3f26557d9db 100644 --- a/api_docs/kbn_core_http_browser_mocks.mdx +++ b/api_docs/kbn_core_http_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-browser-mocks title: "@kbn/core-http-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-browser-mocks'] --- import kbnCoreHttpBrowserMocksObj from './kbn_core_http_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_common.devdocs.json b/api_docs/kbn_core_http_common.devdocs.json index 4036271e20634..714824b78d573 100644 --- a/api_docs/kbn_core_http_common.devdocs.json +++ b/api_docs/kbn_core_http_common.devdocs.json @@ -89,15 +89,16 @@ "id": "def-common.ApiVersion", "type": "Type", "tags": [ + "note", "note", "experimental" ], "label": "ApiVersion", "description": [ - "\nA Kibana HTTP API version" + "\nA Kibana HTTP API version\n" ], "signature": [ - "`${number}`" + "string" ], "path": "packages/core/http/core-http-common/src/versioning.ts", "deprecated": false, diff --git a/api_docs/kbn_core_http_common.mdx b/api_docs/kbn_core_http_common.mdx index 58dd218e69fff..01974c526d562 100644 --- a/api_docs/kbn_core_http_common.mdx +++ b/api_docs/kbn_core_http_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-common title: "@kbn/core-http-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-common'] --- import kbnCoreHttpCommonObj from './kbn_core_http_common.devdocs.json'; diff --git a/api_docs/kbn_core_http_context_server_mocks.mdx b/api_docs/kbn_core_http_context_server_mocks.mdx index a0cf07af662d8..1ef26910b0abc 100644 --- a/api_docs/kbn_core_http_context_server_mocks.mdx +++ b/api_docs/kbn_core_http_context_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-context-server-mocks title: "@kbn/core-http-context-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-context-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-context-server-mocks'] --- import kbnCoreHttpContextServerMocksObj from './kbn_core_http_context_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_request_handler_context_server.mdx b/api_docs/kbn_core_http_request_handler_context_server.mdx index 6d4f516ea42dd..b7a7d506ca531 100644 --- a/api_docs/kbn_core_http_request_handler_context_server.mdx +++ b/api_docs/kbn_core_http_request_handler_context_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-request-handler-context-server title: "@kbn/core-http-request-handler-context-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-request-handler-context-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-request-handler-context-server'] --- import kbnCoreHttpRequestHandlerContextServerObj from './kbn_core_http_request_handler_context_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server.mdx b/api_docs/kbn_core_http_resources_server.mdx index 9672a2b5c124d..35b029295c88a 100644 --- a/api_docs/kbn_core_http_resources_server.mdx +++ b/api_docs/kbn_core_http_resources_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server title: "@kbn/core-http-resources-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server'] --- import kbnCoreHttpResourcesServerObj from './kbn_core_http_resources_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server_internal.mdx b/api_docs/kbn_core_http_resources_server_internal.mdx index eb002b25cc206..0064704c524f7 100644 --- a/api_docs/kbn_core_http_resources_server_internal.mdx +++ b/api_docs/kbn_core_http_resources_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-internal title: "@kbn/core-http-resources-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-internal'] --- import kbnCoreHttpResourcesServerInternalObj from './kbn_core_http_resources_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_resources_server_mocks.mdx b/api_docs/kbn_core_http_resources_server_mocks.mdx index 6c820f1bccdaf..ac43fb7e82ffc 100644 --- a/api_docs/kbn_core_http_resources_server_mocks.mdx +++ b/api_docs/kbn_core_http_resources_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-resources-server-mocks title: "@kbn/core-http-resources-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-resources-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-resources-server-mocks'] --- import kbnCoreHttpResourcesServerMocksObj from './kbn_core_http_resources_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_router_server_internal.mdx b/api_docs/kbn_core_http_router_server_internal.mdx index 062a767f5d37f..3acf14a21fdfb 100644 --- a/api_docs/kbn_core_http_router_server_internal.mdx +++ b/api_docs/kbn_core_http_router_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-internal title: "@kbn/core-http-router-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-router-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-internal'] --- import kbnCoreHttpRouterServerInternalObj from './kbn_core_http_router_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_router_server_mocks.mdx b/api_docs/kbn_core_http_router_server_mocks.mdx index d13ed9aac79c4..8cb95d181376b 100644 --- a/api_docs/kbn_core_http_router_server_mocks.mdx +++ b/api_docs/kbn_core_http_router_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-router-server-mocks title: "@kbn/core-http-router-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-router-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-router-server-mocks'] --- import kbnCoreHttpRouterServerMocksObj from './kbn_core_http_router_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_http_server.devdocs.json b/api_docs/kbn_core_http_server.devdocs.json index 81a98233b6228..f9faf5a74ef10 100644 --- a/api_docs/kbn_core_http_server.devdocs.json +++ b/api_docs/kbn_core_http_server.devdocs.json @@ -129,7 +129,7 @@ { "parentPluginId": "@kbn/core-http-server", "id": "def-common.AddVersionOpts.version", - "type": "Uncategorized", + "type": "string", "tags": [ "experimental" ], @@ -137,9 +137,6 @@ "description": [ "\nVersion to assign to this route" ], - "signature": [ - "`${number}`" - ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, "trackAdoption": false @@ -7367,7 +7364,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -7432,7 +7429,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -7497,7 +7494,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -7562,7 +7559,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -7627,7 +7624,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -7757,15 +7754,16 @@ "id": "def-common.ApiVersion", "type": "Type", "tags": [ + "note", "note", "experimental" ], "label": "ApiVersion", "description": [ - "\nA Kibana HTTP API version" + "\nA Kibana HTTP API version\n" ], "signature": [ - "`${number}`" + "string" ], "path": "packages/core/http/core-http-common/src/versioning.ts", "deprecated": false, @@ -10110,7 +10108,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, @@ -10180,7 +10178,7 @@ "section": "def-common.RouteConfigOptions", "text": "RouteConfigOptions" }, - ", \"access\"> | undefined; access: \"internal\" | \"public\" | undefined; }" + ", \"access\"> | undefined; access: \"internal\" | \"public\"; }" ], "path": "packages/core/http/core-http-server/src/versioning/types.ts", "deprecated": false, diff --git a/api_docs/kbn_core_http_server.mdx b/api_docs/kbn_core_http_server.mdx index 890c35694b0d7..b9282cf2c5cc4 100644 --- a/api_docs/kbn_core_http_server.mdx +++ b/api_docs/kbn_core_http_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server title: "@kbn/core-http-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server'] --- import kbnCoreHttpServerObj from './kbn_core_http_server.devdocs.json'; diff --git a/api_docs/kbn_core_http_server_internal.mdx b/api_docs/kbn_core_http_server_internal.mdx index d1030a5f2c138..6b9719e5fe08e 100644 --- a/api_docs/kbn_core_http_server_internal.mdx +++ b/api_docs/kbn_core_http_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-internal title: "@kbn/core-http-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-internal'] --- import kbnCoreHttpServerInternalObj from './kbn_core_http_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_http_server_mocks.mdx b/api_docs/kbn_core_http_server_mocks.mdx index 2a52782acbf1e..c9abe3268ff3e 100644 --- a/api_docs/kbn_core_http_server_mocks.mdx +++ b/api_docs/kbn_core_http_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-http-server-mocks title: "@kbn/core-http-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-http-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-http-server-mocks'] --- import kbnCoreHttpServerMocksObj from './kbn_core_http_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_browser.mdx b/api_docs/kbn_core_i18n_browser.mdx index 50b88abdae99d..bf69c5ce0ced0 100644 --- a/api_docs/kbn_core_i18n_browser.mdx +++ b/api_docs/kbn_core_i18n_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser title: "@kbn/core-i18n-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser'] --- import kbnCoreI18nBrowserObj from './kbn_core_i18n_browser.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_browser_mocks.mdx b/api_docs/kbn_core_i18n_browser_mocks.mdx index f80cba352800e..ced2f59a04bc6 100644 --- a/api_docs/kbn_core_i18n_browser_mocks.mdx +++ b/api_docs/kbn_core_i18n_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-browser-mocks title: "@kbn/core-i18n-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-browser-mocks'] --- import kbnCoreI18nBrowserMocksObj from './kbn_core_i18n_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server.mdx b/api_docs/kbn_core_i18n_server.mdx index db84d0667f4c4..3fb1ad0fbd480 100644 --- a/api_docs/kbn_core_i18n_server.mdx +++ b/api_docs/kbn_core_i18n_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server title: "@kbn/core-i18n-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server'] --- import kbnCoreI18nServerObj from './kbn_core_i18n_server.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server_internal.mdx b/api_docs/kbn_core_i18n_server_internal.mdx index 120f064b9b096..b15078d9792e1 100644 --- a/api_docs/kbn_core_i18n_server_internal.mdx +++ b/api_docs/kbn_core_i18n_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-internal title: "@kbn/core-i18n-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-internal'] --- import kbnCoreI18nServerInternalObj from './kbn_core_i18n_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_i18n_server_mocks.mdx b/api_docs/kbn_core_i18n_server_mocks.mdx index a4ae201ea2bc8..25a5f3a2ca0a2 100644 --- a/api_docs/kbn_core_i18n_server_mocks.mdx +++ b/api_docs/kbn_core_i18n_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-i18n-server-mocks title: "@kbn/core-i18n-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-i18n-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-i18n-server-mocks'] --- import kbnCoreI18nServerMocksObj from './kbn_core_i18n_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx index e594807132449..fc7ff72335b58 100644 --- a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx +++ b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-injected-metadata-browser-mocks title: "@kbn/core-injected-metadata-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-injected-metadata-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-injected-metadata-browser-mocks'] --- import kbnCoreInjectedMetadataBrowserMocksObj from './kbn_core_injected_metadata_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_integrations_browser_internal.mdx b/api_docs/kbn_core_integrations_browser_internal.mdx index 031bf7ad90abd..1ee295744c671 100644 --- a/api_docs/kbn_core_integrations_browser_internal.mdx +++ b/api_docs/kbn_core_integrations_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-internal title: "@kbn/core-integrations-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-integrations-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-internal'] --- import kbnCoreIntegrationsBrowserInternalObj from './kbn_core_integrations_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_integrations_browser_mocks.mdx b/api_docs/kbn_core_integrations_browser_mocks.mdx index 4044163e6f9ba..6cfe8aed78427 100644 --- a/api_docs/kbn_core_integrations_browser_mocks.mdx +++ b/api_docs/kbn_core_integrations_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-integrations-browser-mocks title: "@kbn/core-integrations-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-integrations-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-integrations-browser-mocks'] --- import kbnCoreIntegrationsBrowserMocksObj from './kbn_core_integrations_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_browser.mdx b/api_docs/kbn_core_lifecycle_browser.mdx index ac0dc136ae5df..1921f2d7981df 100644 --- a/api_docs/kbn_core_lifecycle_browser.mdx +++ b/api_docs/kbn_core_lifecycle_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser title: "@kbn/core-lifecycle-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser'] --- import kbnCoreLifecycleBrowserObj from './kbn_core_lifecycle_browser.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_browser_mocks.mdx b/api_docs/kbn_core_lifecycle_browser_mocks.mdx index c14c95b1a11aa..99b286b50fd86 100644 --- a/api_docs/kbn_core_lifecycle_browser_mocks.mdx +++ b/api_docs/kbn_core_lifecycle_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-browser-mocks title: "@kbn/core-lifecycle-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-browser-mocks'] --- import kbnCoreLifecycleBrowserMocksObj from './kbn_core_lifecycle_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_server.mdx b/api_docs/kbn_core_lifecycle_server.mdx index fd835a5efbbb7..2899d24f85f98 100644 --- a/api_docs/kbn_core_lifecycle_server.mdx +++ b/api_docs/kbn_core_lifecycle_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server title: "@kbn/core-lifecycle-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server'] --- import kbnCoreLifecycleServerObj from './kbn_core_lifecycle_server.devdocs.json'; diff --git a/api_docs/kbn_core_lifecycle_server_mocks.mdx b/api_docs/kbn_core_lifecycle_server_mocks.mdx index e7df35a442565..d45cec86f6c29 100644 --- a/api_docs/kbn_core_lifecycle_server_mocks.mdx +++ b/api_docs/kbn_core_lifecycle_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-lifecycle-server-mocks title: "@kbn/core-lifecycle-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-lifecycle-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-lifecycle-server-mocks'] --- import kbnCoreLifecycleServerMocksObj from './kbn_core_lifecycle_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_logging_browser_mocks.mdx b/api_docs/kbn_core_logging_browser_mocks.mdx index 0b4933b88cb1c..1ce36deed650a 100644 --- a/api_docs/kbn_core_logging_browser_mocks.mdx +++ b/api_docs/kbn_core_logging_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-browser-mocks title: "@kbn/core-logging-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-browser-mocks'] --- import kbnCoreLoggingBrowserMocksObj from './kbn_core_logging_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_logging_common_internal.mdx b/api_docs/kbn_core_logging_common_internal.mdx index d5f56c02f8126..0440a99935453 100644 --- a/api_docs/kbn_core_logging_common_internal.mdx +++ b/api_docs/kbn_core_logging_common_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-common-internal title: "@kbn/core-logging-common-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-common-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-common-internal'] --- import kbnCoreLoggingCommonInternalObj from './kbn_core_logging_common_internal.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server.mdx b/api_docs/kbn_core_logging_server.mdx index 711bab4498b24..e61272d2b8f3c 100644 --- a/api_docs/kbn_core_logging_server.mdx +++ b/api_docs/kbn_core_logging_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server title: "@kbn/core-logging-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server'] --- import kbnCoreLoggingServerObj from './kbn_core_logging_server.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server_internal.mdx b/api_docs/kbn_core_logging_server_internal.mdx index 36809ddd544a8..d441fba7df7e0 100644 --- a/api_docs/kbn_core_logging_server_internal.mdx +++ b/api_docs/kbn_core_logging_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-internal title: "@kbn/core-logging-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-internal'] --- import kbnCoreLoggingServerInternalObj from './kbn_core_logging_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_logging_server_mocks.mdx b/api_docs/kbn_core_logging_server_mocks.mdx index 8eae738c86504..3d9fb1ec20a50 100644 --- a/api_docs/kbn_core_logging_server_mocks.mdx +++ b/api_docs/kbn_core_logging_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-logging-server-mocks title: "@kbn/core-logging-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-logging-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-logging-server-mocks'] --- import kbnCoreLoggingServerMocksObj from './kbn_core_logging_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_collectors_server_internal.mdx b/api_docs/kbn_core_metrics_collectors_server_internal.mdx index 54b61363fc4ab..b1d5addb6e328 100644 --- a/api_docs/kbn_core_metrics_collectors_server_internal.mdx +++ b/api_docs/kbn_core_metrics_collectors_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-internal title: "@kbn/core-metrics-collectors-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-collectors-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-internal'] --- import kbnCoreMetricsCollectorsServerInternalObj from './kbn_core_metrics_collectors_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx index 0b65323ba3edb..6a39200864922 100644 --- a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx +++ b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-collectors-server-mocks title: "@kbn/core-metrics-collectors-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-collectors-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-collectors-server-mocks'] --- import kbnCoreMetricsCollectorsServerMocksObj from './kbn_core_metrics_collectors_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server.mdx b/api_docs/kbn_core_metrics_server.mdx index 21ed31296ec2b..9fc468eed40ba 100644 --- a/api_docs/kbn_core_metrics_server.mdx +++ b/api_docs/kbn_core_metrics_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server title: "@kbn/core-metrics-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server'] --- import kbnCoreMetricsServerObj from './kbn_core_metrics_server.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server_internal.mdx b/api_docs/kbn_core_metrics_server_internal.mdx index ca34229223c4e..21fb4380378b4 100644 --- a/api_docs/kbn_core_metrics_server_internal.mdx +++ b/api_docs/kbn_core_metrics_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-internal title: "@kbn/core-metrics-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-internal'] --- import kbnCoreMetricsServerInternalObj from './kbn_core_metrics_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_metrics_server_mocks.mdx b/api_docs/kbn_core_metrics_server_mocks.mdx index ca6ca6305c185..c8492f5909518 100644 --- a/api_docs/kbn_core_metrics_server_mocks.mdx +++ b/api_docs/kbn_core_metrics_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-metrics-server-mocks title: "@kbn/core-metrics-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-metrics-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-metrics-server-mocks'] --- import kbnCoreMetricsServerMocksObj from './kbn_core_metrics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_mount_utils_browser.mdx b/api_docs/kbn_core_mount_utils_browser.mdx index 1e304fadd8998..22cb2ce1146b2 100644 --- a/api_docs/kbn_core_mount_utils_browser.mdx +++ b/api_docs/kbn_core_mount_utils_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-mount-utils-browser title: "@kbn/core-mount-utils-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-mount-utils-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-mount-utils-browser'] --- import kbnCoreMountUtilsBrowserObj from './kbn_core_mount_utils_browser.devdocs.json'; diff --git a/api_docs/kbn_core_node_server.mdx b/api_docs/kbn_core_node_server.mdx index 681c6cd862216..3a1fd042efd8b 100644 --- a/api_docs/kbn_core_node_server.mdx +++ b/api_docs/kbn_core_node_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server title: "@kbn/core-node-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server'] --- import kbnCoreNodeServerObj from './kbn_core_node_server.devdocs.json'; diff --git a/api_docs/kbn_core_node_server_internal.mdx b/api_docs/kbn_core_node_server_internal.mdx index 28a130c04133d..86ab31ae15db5 100644 --- a/api_docs/kbn_core_node_server_internal.mdx +++ b/api_docs/kbn_core_node_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-internal title: "@kbn/core-node-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-internal'] --- import kbnCoreNodeServerInternalObj from './kbn_core_node_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_node_server_mocks.mdx b/api_docs/kbn_core_node_server_mocks.mdx index 3527b8afe21c9..ebf5d96d68d32 100644 --- a/api_docs/kbn_core_node_server_mocks.mdx +++ b/api_docs/kbn_core_node_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-node-server-mocks title: "@kbn/core-node-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-node-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-node-server-mocks'] --- import kbnCoreNodeServerMocksObj from './kbn_core_node_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser.mdx b/api_docs/kbn_core_notifications_browser.mdx index 1d56b450f1115..ca32afc17128c 100644 --- a/api_docs/kbn_core_notifications_browser.mdx +++ b/api_docs/kbn_core_notifications_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser title: "@kbn/core-notifications-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser'] --- import kbnCoreNotificationsBrowserObj from './kbn_core_notifications_browser.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser_internal.mdx b/api_docs/kbn_core_notifications_browser_internal.mdx index 2307c7c2af7e5..c1b9cd2cb048d 100644 --- a/api_docs/kbn_core_notifications_browser_internal.mdx +++ b/api_docs/kbn_core_notifications_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-internal title: "@kbn/core-notifications-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-internal'] --- import kbnCoreNotificationsBrowserInternalObj from './kbn_core_notifications_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_notifications_browser_mocks.mdx b/api_docs/kbn_core_notifications_browser_mocks.mdx index ee2eb60e344d4..c19f99c51a76b 100644 --- a/api_docs/kbn_core_notifications_browser_mocks.mdx +++ b/api_docs/kbn_core_notifications_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-notifications-browser-mocks title: "@kbn/core-notifications-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-notifications-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-notifications-browser-mocks'] --- import kbnCoreNotificationsBrowserMocksObj from './kbn_core_notifications_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser.mdx b/api_docs/kbn_core_overlays_browser.mdx index eb67faa145475..85299008590c8 100644 --- a/api_docs/kbn_core_overlays_browser.mdx +++ b/api_docs/kbn_core_overlays_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser title: "@kbn/core-overlays-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser'] --- import kbnCoreOverlaysBrowserObj from './kbn_core_overlays_browser.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser_internal.mdx b/api_docs/kbn_core_overlays_browser_internal.mdx index 8709e2f8ebc04..1df34a6718024 100644 --- a/api_docs/kbn_core_overlays_browser_internal.mdx +++ b/api_docs/kbn_core_overlays_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-internal title: "@kbn/core-overlays-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-internal'] --- import kbnCoreOverlaysBrowserInternalObj from './kbn_core_overlays_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_overlays_browser_mocks.mdx b/api_docs/kbn_core_overlays_browser_mocks.mdx index 1b2c4308d1f05..7f7318e1e7bbe 100644 --- a/api_docs/kbn_core_overlays_browser_mocks.mdx +++ b/api_docs/kbn_core_overlays_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-overlays-browser-mocks title: "@kbn/core-overlays-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-overlays-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-overlays-browser-mocks'] --- import kbnCoreOverlaysBrowserMocksObj from './kbn_core_overlays_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_browser.mdx b/api_docs/kbn_core_plugins_browser.mdx index 69c3910c84884..3787319cb72ac 100644 --- a/api_docs/kbn_core_plugins_browser.mdx +++ b/api_docs/kbn_core_plugins_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser title: "@kbn/core-plugins-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser'] --- import kbnCorePluginsBrowserObj from './kbn_core_plugins_browser.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_browser_mocks.mdx b/api_docs/kbn_core_plugins_browser_mocks.mdx index 2e0edc251d89e..d0cc0e312d275 100644 --- a/api_docs/kbn_core_plugins_browser_mocks.mdx +++ b/api_docs/kbn_core_plugins_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-browser-mocks title: "@kbn/core-plugins-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-browser-mocks'] --- import kbnCorePluginsBrowserMocksObj from './kbn_core_plugins_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_server.mdx b/api_docs/kbn_core_plugins_server.mdx index d6ec42e4f2362..4accc1effb67b 100644 --- a/api_docs/kbn_core_plugins_server.mdx +++ b/api_docs/kbn_core_plugins_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server title: "@kbn/core-plugins-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server'] --- import kbnCorePluginsServerObj from './kbn_core_plugins_server.devdocs.json'; diff --git a/api_docs/kbn_core_plugins_server_mocks.mdx b/api_docs/kbn_core_plugins_server_mocks.mdx index 0a781b5e38860..dc7ada51253ea 100644 --- a/api_docs/kbn_core_plugins_server_mocks.mdx +++ b/api_docs/kbn_core_plugins_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-plugins-server-mocks title: "@kbn/core-plugins-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-plugins-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-plugins-server-mocks'] --- import kbnCorePluginsServerMocksObj from './kbn_core_plugins_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_preboot_server.mdx b/api_docs/kbn_core_preboot_server.mdx index 007f570dde163..3a0e3a2d07668 100644 --- a/api_docs/kbn_core_preboot_server.mdx +++ b/api_docs/kbn_core_preboot_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server title: "@kbn/core-preboot-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-preboot-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server'] --- import kbnCorePrebootServerObj from './kbn_core_preboot_server.devdocs.json'; diff --git a/api_docs/kbn_core_preboot_server_mocks.mdx b/api_docs/kbn_core_preboot_server_mocks.mdx index ffb5bc089f21b..f07d5958f5ee7 100644 --- a/api_docs/kbn_core_preboot_server_mocks.mdx +++ b/api_docs/kbn_core_preboot_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-preboot-server-mocks title: "@kbn/core-preboot-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-preboot-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-preboot-server-mocks'] --- import kbnCorePrebootServerMocksObj from './kbn_core_preboot_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_browser_mocks.mdx b/api_docs/kbn_core_rendering_browser_mocks.mdx index eb0857c553cb4..33fd78a2fd135 100644 --- a/api_docs/kbn_core_rendering_browser_mocks.mdx +++ b/api_docs/kbn_core_rendering_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-browser-mocks title: "@kbn/core-rendering-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-browser-mocks'] --- import kbnCoreRenderingBrowserMocksObj from './kbn_core_rendering_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_server_internal.mdx b/api_docs/kbn_core_rendering_server_internal.mdx index 6691c36f5c4dc..6d6fa4111b0d4 100644 --- a/api_docs/kbn_core_rendering_server_internal.mdx +++ b/api_docs/kbn_core_rendering_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-internal title: "@kbn/core-rendering-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-internal'] --- import kbnCoreRenderingServerInternalObj from './kbn_core_rendering_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_rendering_server_mocks.mdx b/api_docs/kbn_core_rendering_server_mocks.mdx index 1d57aca3b5a69..b2fa6c7df66e6 100644 --- a/api_docs/kbn_core_rendering_server_mocks.mdx +++ b/api_docs/kbn_core_rendering_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-rendering-server-mocks title: "@kbn/core-rendering-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-rendering-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-server-mocks'] --- import kbnCoreRenderingServerMocksObj from './kbn_core_rendering_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_root_server_internal.mdx b/api_docs/kbn_core_root_server_internal.mdx index b100fc0bca2af..e51f7a895dd7d 100644 --- a/api_docs/kbn_core_root_server_internal.mdx +++ b/api_docs/kbn_core_root_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-root-server-internal title: "@kbn/core-root-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-root-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-root-server-internal'] --- import kbnCoreRootServerInternalObj from './kbn_core_root_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json index 57d23f14769f6..c6ab4101d6c7a 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json @@ -1868,7 +1868,7 @@ }, { "plugin": "dashboard", - "path": "src/plugins/dashboard/public/dashboard_app/listing/dashboard_listing.tsx" + "path": "src/plugins/dashboard/public/dashboard_listing/dashboard_listing.tsx" }, { "plugin": "infra", @@ -3861,11 +3861,11 @@ }, { "plugin": "dashboard", - "path": "src/plugins/dashboard/public/dashboard_app/listing/dashboard_listing.tsx" + "path": "src/plugins/dashboard/public/dashboard_listing/dashboard_listing.tsx" }, { "plugin": "dashboard", - "path": "src/plugins/dashboard/public/dashboard_app/listing/dashboard_listing.tsx" + "path": "src/plugins/dashboard/public/dashboard_listing/dashboard_listing.tsx" }, { "plugin": "lens", diff --git a/api_docs/kbn_core_saved_objects_api_browser.mdx b/api_docs/kbn_core_saved_objects_api_browser.mdx index bfde709e597ad..c933f2d88e056 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.mdx +++ b/api_docs/kbn_core_saved_objects_api_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-browser title: "@kbn/core-saved-objects-api-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-browser'] --- import kbnCoreSavedObjectsApiBrowserObj from './kbn_core_saved_objects_api_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server.mdx b/api_docs/kbn_core_saved_objects_api_server.mdx index 1871810e46bd2..bc6057ff8197f 100644 --- a/api_docs/kbn_core_saved_objects_api_server.mdx +++ b/api_docs/kbn_core_saved_objects_api_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server title: "@kbn/core-saved-objects-api-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server'] --- import kbnCoreSavedObjectsApiServerObj from './kbn_core_saved_objects_api_server.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server_internal.mdx b/api_docs/kbn_core_saved_objects_api_server_internal.mdx index 0ef12adf69adc..2a1c53c28631e 100644 --- a/api_docs/kbn_core_saved_objects_api_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_api_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server-internal title: "@kbn/core-saved-objects-api-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server-internal'] --- import kbnCoreSavedObjectsApiServerInternalObj from './kbn_core_saved_objects_api_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx index abf9737b07d4c..adef2a71d375a 100644 --- a/api_docs/kbn_core_saved_objects_api_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_api_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server-mocks title: "@kbn/core-saved-objects-api-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server-mocks'] --- import kbnCoreSavedObjectsApiServerMocksObj from './kbn_core_saved_objects_api_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_base_server_internal.mdx b/api_docs/kbn_core_saved_objects_base_server_internal.mdx index 4a73305545205..20ccc6c58b0e3 100644 --- a/api_docs/kbn_core_saved_objects_base_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_base_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-internal title: "@kbn/core-saved-objects-base-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-base-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-internal'] --- import kbnCoreSavedObjectsBaseServerInternalObj from './kbn_core_saved_objects_base_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx index 6314650e0a652..6faaed1ffe963 100644 --- a/api_docs/kbn_core_saved_objects_base_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_base_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-base-server-mocks title: "@kbn/core-saved-objects-base-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-base-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-base-server-mocks'] --- import kbnCoreSavedObjectsBaseServerMocksObj from './kbn_core_saved_objects_base_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser.mdx b/api_docs/kbn_core_saved_objects_browser.mdx index b30dc81815855..79d10e9f12bb2 100644 --- a/api_docs/kbn_core_saved_objects_browser.mdx +++ b/api_docs/kbn_core_saved_objects_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser title: "@kbn/core-saved-objects-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser'] --- import kbnCoreSavedObjectsBrowserObj from './kbn_core_saved_objects_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser_internal.mdx b/api_docs/kbn_core_saved_objects_browser_internal.mdx index 20fe5fbffda47..2c587119409cf 100644 --- a/api_docs/kbn_core_saved_objects_browser_internal.mdx +++ b/api_docs/kbn_core_saved_objects_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-internal title: "@kbn/core-saved-objects-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-internal'] --- import kbnCoreSavedObjectsBrowserInternalObj from './kbn_core_saved_objects_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_browser_mocks.mdx b/api_docs/kbn_core_saved_objects_browser_mocks.mdx index 806930567b93d..97d7ea86b6137 100644 --- a/api_docs/kbn_core_saved_objects_browser_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-browser-mocks title: "@kbn/core-saved-objects-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-mocks'] --- import kbnCoreSavedObjectsBrowserMocksObj from './kbn_core_saved_objects_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_common.devdocs.json b/api_docs/kbn_core_saved_objects_common.devdocs.json index 8ca0ff4018b63..7b868ee8aa205 100644 --- a/api_docs/kbn_core_saved_objects_common.devdocs.json +++ b/api_docs/kbn_core_saved_objects_common.devdocs.json @@ -1858,12 +1858,12 @@ "path": "src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_form/rule_reducer.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" }, { - "plugin": "triggersActionsUi", - "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_form/rule_reducer.ts" + "plugin": "visualizations", + "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" }, { "plugin": "triggersActionsUi", @@ -1874,12 +1874,12 @@ "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_form/rule_reducer.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_form/rule_reducer.ts" }, { - "plugin": "visualizations", - "path": "src/plugins/visualizations/public/utils/saved_visualization_references/saved_visualization_references.ts" + "plugin": "triggersActionsUi", + "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_form/rule_reducer.ts" }, { "plugin": "@kbn/core", diff --git a/api_docs/kbn_core_saved_objects_common.mdx b/api_docs/kbn_core_saved_objects_common.mdx index 9f27f2eb85c13..3783c6ead532a 100644 --- a/api_docs/kbn_core_saved_objects_common.mdx +++ b/api_docs/kbn_core_saved_objects_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-common title: "@kbn/core-saved-objects-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-common'] --- import kbnCoreSavedObjectsCommonObj from './kbn_core_saved_objects_common.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx index e7b08186d7d8c..a75d12fdd58ca 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_import_export_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-internal title: "@kbn/core-saved-objects-import-export-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-import-export-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-internal'] --- import kbnCoreSavedObjectsImportExportServerInternalObj from './kbn_core_saved_objects_import_export_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx index 960702d30feaf..d8b3a4d217c3a 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_import_export_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-import-export-server-mocks title: "@kbn/core-saved-objects-import-export-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-import-export-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-import-export-server-mocks'] --- import kbnCoreSavedObjectsImportExportServerMocksObj from './kbn_core_saved_objects_import_export_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx index 68446273bbd70..9eb556d39981e 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_migration_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-internal title: "@kbn/core-saved-objects-migration-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-migration-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-internal'] --- import kbnCoreSavedObjectsMigrationServerInternalObj from './kbn_core_saved_objects_migration_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx index ea58ebda9a987..56b4cfe2ecd4c 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_migration_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-migration-server-mocks title: "@kbn/core-saved-objects-migration-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-migration-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-mocks'] --- import kbnCoreSavedObjectsMigrationServerMocksObj from './kbn_core_saved_objects_migration_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server.mdx b/api_docs/kbn_core_saved_objects_server.mdx index 4b3cf687ea4ed..a48fa96e1fbb5 100644 --- a/api_docs/kbn_core_saved_objects_server.mdx +++ b/api_docs/kbn_core_saved_objects_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server title: "@kbn/core-saved-objects-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server'] --- import kbnCoreSavedObjectsServerObj from './kbn_core_saved_objects_server.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server_internal.mdx b/api_docs/kbn_core_saved_objects_server_internal.mdx index 5fbeb40dff46f..133a501912d9c 100644 --- a/api_docs/kbn_core_saved_objects_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-internal title: "@kbn/core-saved-objects-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-internal'] --- import kbnCoreSavedObjectsServerInternalObj from './kbn_core_saved_objects_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server_mocks.mdx b/api_docs/kbn_core_saved_objects_server_mocks.mdx index fe7ae0ee8525a..e8baf46b04b57 100644 --- a/api_docs/kbn_core_saved_objects_server_mocks.mdx +++ b/api_docs/kbn_core_saved_objects_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-server-mocks title: "@kbn/core-saved-objects-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server-mocks'] --- import kbnCoreSavedObjectsServerMocksObj from './kbn_core_saved_objects_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_utils_server.mdx b/api_docs/kbn_core_saved_objects_utils_server.mdx index 23cd2215ae5b5..7be39b3ddfd27 100644 --- a/api_docs/kbn_core_saved_objects_utils_server.mdx +++ b/api_docs/kbn_core_saved_objects_utils_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-utils-server title: "@kbn/core-saved-objects-utils-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-utils-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-utils-server'] --- import kbnCoreSavedObjectsUtilsServerObj from './kbn_core_saved_objects_utils_server.devdocs.json'; diff --git a/api_docs/kbn_core_status_common.mdx b/api_docs/kbn_core_status_common.mdx index 4834f841720cd..b43a1574290d7 100644 --- a/api_docs/kbn_core_status_common.mdx +++ b/api_docs/kbn_core_status_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common title: "@kbn/core-status-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common'] --- import kbnCoreStatusCommonObj from './kbn_core_status_common.devdocs.json'; diff --git a/api_docs/kbn_core_status_common_internal.mdx b/api_docs/kbn_core_status_common_internal.mdx index a3e9d96755877..ff765eefc4403 100644 --- a/api_docs/kbn_core_status_common_internal.mdx +++ b/api_docs/kbn_core_status_common_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-common-internal title: "@kbn/core-status-common-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-common-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-common-internal'] --- import kbnCoreStatusCommonInternalObj from './kbn_core_status_common_internal.devdocs.json'; diff --git a/api_docs/kbn_core_status_server.mdx b/api_docs/kbn_core_status_server.mdx index fedf7994d54b6..71b5c9ad74a7d 100644 --- a/api_docs/kbn_core_status_server.mdx +++ b/api_docs/kbn_core_status_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server title: "@kbn/core-status-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server'] --- import kbnCoreStatusServerObj from './kbn_core_status_server.devdocs.json'; diff --git a/api_docs/kbn_core_status_server_internal.mdx b/api_docs/kbn_core_status_server_internal.mdx index 8331cb7e9eac7..6bf95189f71e7 100644 --- a/api_docs/kbn_core_status_server_internal.mdx +++ b/api_docs/kbn_core_status_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-internal title: "@kbn/core-status-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-internal'] --- import kbnCoreStatusServerInternalObj from './kbn_core_status_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_status_server_mocks.mdx b/api_docs/kbn_core_status_server_mocks.mdx index 61ef1120bd249..1ba66cbcba441 100644 --- a/api_docs/kbn_core_status_server_mocks.mdx +++ b/api_docs/kbn_core_status_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-status-server-mocks title: "@kbn/core-status-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-status-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-status-server-mocks'] --- import kbnCoreStatusServerMocksObj from './kbn_core_status_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx index af289c46b9440..1265fd8c4c41c 100644 --- a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx +++ b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-deprecations-getters title: "@kbn/core-test-helpers-deprecations-getters" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-deprecations-getters plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-deprecations-getters'] --- import kbnCoreTestHelpersDeprecationsGettersObj from './kbn_core_test_helpers_deprecations_getters.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx index f4c757364a8eb..e42ae9f1452a9 100644 --- a/api_docs/kbn_core_test_helpers_http_setup_browser.mdx +++ b/api_docs/kbn_core_test_helpers_http_setup_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-http-setup-browser title: "@kbn/core-test-helpers-http-setup-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-http-setup-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-http-setup-browser'] --- import kbnCoreTestHelpersHttpSetupBrowserObj from './kbn_core_test_helpers_http_setup_browser.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_kbn_server.mdx b/api_docs/kbn_core_test_helpers_kbn_server.mdx index 9e23381eb4ae6..d818c868e946a 100644 --- a/api_docs/kbn_core_test_helpers_kbn_server.mdx +++ b/api_docs/kbn_core_test_helpers_kbn_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-kbn-server title: "@kbn/core-test-helpers-kbn-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-kbn-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-kbn-server'] --- import kbnCoreTestHelpersKbnServerObj from './kbn_core_test_helpers_kbn_server.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx index 4301a40fbd122..4e19bbc6dda04 100644 --- a/api_docs/kbn_core_test_helpers_so_type_serializer.mdx +++ b/api_docs/kbn_core_test_helpers_so_type_serializer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-so-type-serializer title: "@kbn/core-test-helpers-so-type-serializer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-so-type-serializer plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-so-type-serializer'] --- import kbnCoreTestHelpersSoTypeSerializerObj from './kbn_core_test_helpers_so_type_serializer.devdocs.json'; diff --git a/api_docs/kbn_core_test_helpers_test_utils.mdx b/api_docs/kbn_core_test_helpers_test_utils.mdx index 2f2a9b531b879..45a40df59f54c 100644 --- a/api_docs/kbn_core_test_helpers_test_utils.mdx +++ b/api_docs/kbn_core_test_helpers_test_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-test-helpers-test-utils title: "@kbn/core-test-helpers-test-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-test-helpers-test-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-test-helpers-test-utils'] --- import kbnCoreTestHelpersTestUtilsObj from './kbn_core_test_helpers_test_utils.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser.mdx b/api_docs/kbn_core_theme_browser.mdx index 1454cd0c1440e..c917ce6f4508a 100644 --- a/api_docs/kbn_core_theme_browser.mdx +++ b/api_docs/kbn_core_theme_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser title: "@kbn/core-theme-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser'] --- import kbnCoreThemeBrowserObj from './kbn_core_theme_browser.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser_internal.mdx b/api_docs/kbn_core_theme_browser_internal.mdx index 3ff346fbc5af1..bf7ca3a681be8 100644 --- a/api_docs/kbn_core_theme_browser_internal.mdx +++ b/api_docs/kbn_core_theme_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser-internal title: "@kbn/core-theme-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser-internal'] --- import kbnCoreThemeBrowserInternalObj from './kbn_core_theme_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser_mocks.mdx b/api_docs/kbn_core_theme_browser_mocks.mdx index 3b4bb272cccd7..9f99419f85f7e 100644 --- a/api_docs/kbn_core_theme_browser_mocks.mdx +++ b/api_docs/kbn_core_theme_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser-mocks title: "@kbn/core-theme-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser-mocks'] --- import kbnCoreThemeBrowserMocksObj from './kbn_core_theme_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser.mdx b/api_docs/kbn_core_ui_settings_browser.mdx index 1643d166e19db..676be86e74cdd 100644 --- a/api_docs/kbn_core_ui_settings_browser.mdx +++ b/api_docs/kbn_core_ui_settings_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser title: "@kbn/core-ui-settings-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser'] --- import kbnCoreUiSettingsBrowserObj from './kbn_core_ui_settings_browser.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser_internal.mdx b/api_docs/kbn_core_ui_settings_browser_internal.mdx index dc0c151699441..812718a2f7545 100644 --- a/api_docs/kbn_core_ui_settings_browser_internal.mdx +++ b/api_docs/kbn_core_ui_settings_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-internal title: "@kbn/core-ui-settings-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-internal'] --- import kbnCoreUiSettingsBrowserInternalObj from './kbn_core_ui_settings_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_browser_mocks.mdx b/api_docs/kbn_core_ui_settings_browser_mocks.mdx index 8ad400090cd58..0647caa343e58 100644 --- a/api_docs/kbn_core_ui_settings_browser_mocks.mdx +++ b/api_docs/kbn_core_ui_settings_browser_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-browser-mocks title: "@kbn/core-ui-settings-browser-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-browser-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-browser-mocks'] --- import kbnCoreUiSettingsBrowserMocksObj from './kbn_core_ui_settings_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_common.devdocs.json b/api_docs/kbn_core_ui_settings_common.devdocs.json index 7fd88652aec3a..6f31370eab373 100644 --- a/api_docs/kbn_core_ui_settings_common.devdocs.json +++ b/api_docs/kbn_core_ui_settings_common.devdocs.json @@ -431,6 +431,21 @@ ], "enums": [], "misc": [ + { + "parentPluginId": "@kbn/core-ui-settings-common", + "id": "def-common.TIMEZONE_OPTIONS", + "type": "Array", + "tags": [], + "label": "TIMEZONE_OPTIONS", + "description": [], + "signature": [ + "string[]" + ], + "path": "packages/core/ui-settings/core-ui-settings-common/src/timezones.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/core-ui-settings-common", "id": "def-common.UiSettingsScope", diff --git a/api_docs/kbn_core_ui_settings_common.mdx b/api_docs/kbn_core_ui_settings_common.mdx index 0d71c3ef8f737..eeb3a779d35b5 100644 --- a/api_docs/kbn_core_ui_settings_common.mdx +++ b/api_docs/kbn_core_ui_settings_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-common title: "@kbn/core-ui-settings-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-common'] --- import kbnCoreUiSettingsCommonObj from './kbn_core_ui_settings_common.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sh | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 24 | 0 | 3 | 0 | +| 25 | 0 | 4 | 0 | ## Common diff --git a/api_docs/kbn_core_ui_settings_server.mdx b/api_docs/kbn_core_ui_settings_server.mdx index 87073f274e0d9..f0d34230776c8 100644 --- a/api_docs/kbn_core_ui_settings_server.mdx +++ b/api_docs/kbn_core_ui_settings_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server title: "@kbn/core-ui-settings-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server'] --- import kbnCoreUiSettingsServerObj from './kbn_core_ui_settings_server.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server_internal.mdx b/api_docs/kbn_core_ui_settings_server_internal.mdx index 8093c1b0cd8bc..32b32d0e7fd94 100644 --- a/api_docs/kbn_core_ui_settings_server_internal.mdx +++ b/api_docs/kbn_core_ui_settings_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-internal title: "@kbn/core-ui-settings-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-internal'] --- import kbnCoreUiSettingsServerInternalObj from './kbn_core_ui_settings_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server_mocks.mdx b/api_docs/kbn_core_ui_settings_server_mocks.mdx index eb7ecbecb8779..1119ea24ebfb0 100644 --- a/api_docs/kbn_core_ui_settings_server_mocks.mdx +++ b/api_docs/kbn_core_ui_settings_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-ui-settings-server-mocks title: "@kbn/core-ui-settings-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-ui-settings-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-server-mocks'] --- import kbnCoreUiSettingsServerMocksObj from './kbn_core_ui_settings_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server.mdx b/api_docs/kbn_core_usage_data_server.mdx index 36f9c50b23a86..d6e8a9d0818f9 100644 --- a/api_docs/kbn_core_usage_data_server.mdx +++ b/api_docs/kbn_core_usage_data_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server title: "@kbn/core-usage-data-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server'] --- import kbnCoreUsageDataServerObj from './kbn_core_usage_data_server.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server_internal.mdx b/api_docs/kbn_core_usage_data_server_internal.mdx index 4b2f8d1f6d074..9d0c2a074e8c1 100644 --- a/api_docs/kbn_core_usage_data_server_internal.mdx +++ b/api_docs/kbn_core_usage_data_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-internal title: "@kbn/core-usage-data-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server-internal plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-internal'] --- import kbnCoreUsageDataServerInternalObj from './kbn_core_usage_data_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server_mocks.mdx b/api_docs/kbn_core_usage_data_server_mocks.mdx index d1629dc508945..39b7f3a676bf2 100644 --- a/api_docs/kbn_core_usage_data_server_mocks.mdx +++ b/api_docs/kbn_core_usage_data_server_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-usage-data-server-mocks title: "@kbn/core-usage-data-server-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-usage-data-server-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-mocks'] --- import kbnCoreUsageDataServerMocksObj from './kbn_core_usage_data_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_crypto.mdx b/api_docs/kbn_crypto.mdx index 7856f4d95b167..cebe27a86e77a 100644 --- a/api_docs/kbn_crypto.mdx +++ b/api_docs/kbn_crypto.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto title: "@kbn/crypto" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/crypto plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto'] --- import kbnCryptoObj from './kbn_crypto.devdocs.json'; diff --git a/api_docs/kbn_crypto_browser.mdx b/api_docs/kbn_crypto_browser.mdx index 439938a221048..91bb769b9a842 100644 --- a/api_docs/kbn_crypto_browser.mdx +++ b/api_docs/kbn_crypto_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-crypto-browser title: "@kbn/crypto-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/crypto-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto-browser'] --- import kbnCryptoBrowserObj from './kbn_crypto_browser.devdocs.json'; diff --git a/api_docs/kbn_cypress_config.mdx b/api_docs/kbn_cypress_config.mdx index 1782a1aadf290..936c0194cf100 100644 --- a/api_docs/kbn_cypress_config.mdx +++ b/api_docs/kbn_cypress_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-cypress-config title: "@kbn/cypress-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/cypress-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cypress-config'] --- import kbnCypressConfigObj from './kbn_cypress_config.devdocs.json'; diff --git a/api_docs/kbn_datemath.mdx b/api_docs/kbn_datemath.mdx index 619bd870232b6..f4d70bb7beaf9 100644 --- a/api_docs/kbn_datemath.mdx +++ b/api_docs/kbn_datemath.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-datemath title: "@kbn/datemath" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/datemath plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/datemath'] --- import kbnDatemathObj from './kbn_datemath.devdocs.json'; diff --git a/api_docs/kbn_dev_cli_errors.mdx b/api_docs/kbn_dev_cli_errors.mdx index 9321f17457136..bf21852659826 100644 --- a/api_docs/kbn_dev_cli_errors.mdx +++ b/api_docs/kbn_dev_cli_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-errors title: "@kbn/dev-cli-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-cli-errors plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-errors'] --- import kbnDevCliErrorsObj from './kbn_dev_cli_errors.devdocs.json'; diff --git a/api_docs/kbn_dev_cli_runner.mdx b/api_docs/kbn_dev_cli_runner.mdx index 11f5e3ccfba24..af8aa3f690f90 100644 --- a/api_docs/kbn_dev_cli_runner.mdx +++ b/api_docs/kbn_dev_cli_runner.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-cli-runner title: "@kbn/dev-cli-runner" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-cli-runner plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-cli-runner'] --- import kbnDevCliRunnerObj from './kbn_dev_cli_runner.devdocs.json'; diff --git a/api_docs/kbn_dev_proc_runner.mdx b/api_docs/kbn_dev_proc_runner.mdx index daec1a3a3ccf8..de10bacc58724 100644 --- a/api_docs/kbn_dev_proc_runner.mdx +++ b/api_docs/kbn_dev_proc_runner.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-proc-runner title: "@kbn/dev-proc-runner" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-proc-runner plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-proc-runner'] --- import kbnDevProcRunnerObj from './kbn_dev_proc_runner.devdocs.json'; diff --git a/api_docs/kbn_dev_utils.mdx b/api_docs/kbn_dev_utils.mdx index 7db1aa2928938..7e7d3a57e59ad 100644 --- a/api_docs/kbn_dev_utils.mdx +++ b/api_docs/kbn_dev_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dev-utils title: "@kbn/dev-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dev-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-utils'] --- import kbnDevUtilsObj from './kbn_dev_utils.devdocs.json'; diff --git a/api_docs/kbn_doc_links.mdx b/api_docs/kbn_doc_links.mdx index c528cdf93d410..f2bab21b1bf69 100644 --- a/api_docs/kbn_doc_links.mdx +++ b/api_docs/kbn_doc_links.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-doc-links title: "@kbn/doc-links" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/doc-links plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/doc-links'] --- import kbnDocLinksObj from './kbn_doc_links.devdocs.json'; diff --git a/api_docs/kbn_docs_utils.mdx b/api_docs/kbn_docs_utils.mdx index 56f56787b0444..136cbbc27c6dd 100644 --- a/api_docs/kbn_docs_utils.mdx +++ b/api_docs/kbn_docs_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-docs-utils title: "@kbn/docs-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/docs-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/docs-utils'] --- import kbnDocsUtilsObj from './kbn_docs_utils.devdocs.json'; diff --git a/api_docs/kbn_dom_drag_drop.mdx b/api_docs/kbn_dom_drag_drop.mdx index 406418493872c..43c5a487fa41a 100644 --- a/api_docs/kbn_dom_drag_drop.mdx +++ b/api_docs/kbn_dom_drag_drop.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-dom-drag-drop title: "@kbn/dom-drag-drop" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/dom-drag-drop plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dom-drag-drop'] --- import kbnDomDragDropObj from './kbn_dom_drag_drop.devdocs.json'; diff --git a/api_docs/kbn_ebt_tools.mdx b/api_docs/kbn_ebt_tools.mdx index 9c3bd3efec73a..8ee7f09600b9c 100644 --- a/api_docs/kbn_ebt_tools.mdx +++ b/api_docs/kbn_ebt_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ebt-tools title: "@kbn/ebt-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ebt-tools plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ebt-tools'] --- import kbnEbtToolsObj from './kbn_ebt_tools.devdocs.json'; diff --git a/api_docs/kbn_ecs.mdx b/api_docs/kbn_ecs.mdx index 46b71defe7da4..dabd67ea639b2 100644 --- a/api_docs/kbn_ecs.mdx +++ b/api_docs/kbn_ecs.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs title: "@kbn/ecs" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ecs plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs'] --- import kbnEcsObj from './kbn_ecs.devdocs.json'; diff --git a/api_docs/kbn_ecs_data_quality_dashboard.mdx b/api_docs/kbn_ecs_data_quality_dashboard.mdx index ddbaa0db48b8b..3f8b2071edb6f 100644 --- a/api_docs/kbn_ecs_data_quality_dashboard.mdx +++ b/api_docs/kbn_ecs_data_quality_dashboard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ecs-data-quality-dashboard title: "@kbn/ecs-data-quality-dashboard" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ecs-data-quality-dashboard plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ecs-data-quality-dashboard'] --- import kbnEcsDataQualityDashboardObj from './kbn_ecs_data_quality_dashboard.devdocs.json'; diff --git a/api_docs/kbn_es.mdx b/api_docs/kbn_es.mdx index 1a65998f03b06..d0211ec7b739d 100644 --- a/api_docs/kbn_es.mdx +++ b/api_docs/kbn_es.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es title: "@kbn/es" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es'] --- import kbnEsObj from './kbn_es.devdocs.json'; diff --git a/api_docs/kbn_es_archiver.mdx b/api_docs/kbn_es_archiver.mdx index 2b68af1f65c87..c47aa16f5d9aa 100644 --- a/api_docs/kbn_es_archiver.mdx +++ b/api_docs/kbn_es_archiver.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-archiver title: "@kbn/es-archiver" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-archiver plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-archiver'] --- import kbnEsArchiverObj from './kbn_es_archiver.devdocs.json'; diff --git a/api_docs/kbn_es_errors.mdx b/api_docs/kbn_es_errors.mdx index 1ae06e0a8702e..b23404d6e673c 100644 --- a/api_docs/kbn_es_errors.mdx +++ b/api_docs/kbn_es_errors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-errors title: "@kbn/es-errors" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-errors plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-errors'] --- import kbnEsErrorsObj from './kbn_es_errors.devdocs.json'; diff --git a/api_docs/kbn_es_query.mdx b/api_docs/kbn_es_query.mdx index 8cc57085ed64c..b3484d0acfb86 100644 --- a/api_docs/kbn_es_query.mdx +++ b/api_docs/kbn_es_query.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-query title: "@kbn/es-query" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-query plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-query'] --- import kbnEsQueryObj from './kbn_es_query.devdocs.json'; diff --git a/api_docs/kbn_es_types.mdx b/api_docs/kbn_es_types.mdx index 5e23146105fca..ae320937273a3 100644 --- a/api_docs/kbn_es_types.mdx +++ b/api_docs/kbn_es_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-es-types title: "@kbn/es-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/es-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-types'] --- import kbnEsTypesObj from './kbn_es_types.devdocs.json'; diff --git a/api_docs/kbn_eslint_plugin_imports.mdx b/api_docs/kbn_eslint_plugin_imports.mdx index 82252b028a16b..c0cd7f247745c 100644 --- a/api_docs/kbn_eslint_plugin_imports.mdx +++ b/api_docs/kbn_eslint_plugin_imports.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-eslint-plugin-imports title: "@kbn/eslint-plugin-imports" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/eslint-plugin-imports plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/eslint-plugin-imports'] --- import kbnEslintPluginImportsObj from './kbn_eslint_plugin_imports.devdocs.json'; diff --git a/api_docs/kbn_expandable_flyout.mdx b/api_docs/kbn_expandable_flyout.mdx index 87f8db790070c..bd67f9c70c6ee 100644 --- a/api_docs/kbn_expandable_flyout.mdx +++ b/api_docs/kbn_expandable_flyout.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-expandable-flyout title: "@kbn/expandable-flyout" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/expandable-flyout plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/expandable-flyout'] --- import kbnExpandableFlyoutObj from './kbn_expandable_flyout.devdocs.json'; diff --git a/api_docs/kbn_field_types.mdx b/api_docs/kbn_field_types.mdx index 138ccf7a0fac7..d24f4d36aacaa 100644 --- a/api_docs/kbn_field_types.mdx +++ b/api_docs/kbn_field_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-field-types title: "@kbn/field-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/field-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/field-types'] --- import kbnFieldTypesObj from './kbn_field_types.devdocs.json'; diff --git a/api_docs/kbn_find_used_node_modules.mdx b/api_docs/kbn_find_used_node_modules.mdx index 8247038f5a0cb..0ff18adb57009 100644 --- a/api_docs/kbn_find_used_node_modules.mdx +++ b/api_docs/kbn_find_used_node_modules.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-find-used-node-modules title: "@kbn/find-used-node-modules" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/find-used-node-modules plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/find-used-node-modules'] --- import kbnFindUsedNodeModulesObj from './kbn_find_used_node_modules.devdocs.json'; diff --git a/api_docs/kbn_ftr_common_functional_services.mdx b/api_docs/kbn_ftr_common_functional_services.mdx index c4cf3e930396b..b5cb393ecee58 100644 --- a/api_docs/kbn_ftr_common_functional_services.mdx +++ b/api_docs/kbn_ftr_common_functional_services.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ftr-common-functional-services title: "@kbn/ftr-common-functional-services" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ftr-common-functional-services plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ftr-common-functional-services'] --- import kbnFtrCommonFunctionalServicesObj from './kbn_ftr_common_functional_services.devdocs.json'; diff --git a/api_docs/kbn_generate.mdx b/api_docs/kbn_generate.mdx index 3a300819cd31c..af71fb24bab46 100644 --- a/api_docs/kbn_generate.mdx +++ b/api_docs/kbn_generate.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate title: "@kbn/generate" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate'] --- import kbnGenerateObj from './kbn_generate.devdocs.json'; diff --git a/api_docs/kbn_generate_csv.mdx b/api_docs/kbn_generate_csv.mdx index 7a4b72c3abe7d..0974d13e014d5 100644 --- a/api_docs/kbn_generate_csv.mdx +++ b/api_docs/kbn_generate_csv.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv title: "@kbn/generate-csv" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-csv plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv'] --- import kbnGenerateCsvObj from './kbn_generate_csv.devdocs.json'; diff --git a/api_docs/kbn_generate_csv_types.mdx b/api_docs/kbn_generate_csv_types.mdx index 3c0100b1d2e98..b34fdeed86825 100644 --- a/api_docs/kbn_generate_csv_types.mdx +++ b/api_docs/kbn_generate_csv_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-generate-csv-types title: "@kbn/generate-csv-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/generate-csv-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate-csv-types'] --- import kbnGenerateCsvTypesObj from './kbn_generate_csv_types.devdocs.json'; diff --git a/api_docs/kbn_guided_onboarding.mdx b/api_docs/kbn_guided_onboarding.mdx index 36207d1027ab2..42afc5141731d 100644 --- a/api_docs/kbn_guided_onboarding.mdx +++ b/api_docs/kbn_guided_onboarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-guided-onboarding title: "@kbn/guided-onboarding" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/guided-onboarding plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/guided-onboarding'] --- import kbnGuidedOnboardingObj from './kbn_guided_onboarding.devdocs.json'; diff --git a/api_docs/kbn_handlebars.mdx b/api_docs/kbn_handlebars.mdx index 94cecd24ec1d7..c40b6ea1d58ce 100644 --- a/api_docs/kbn_handlebars.mdx +++ b/api_docs/kbn_handlebars.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-handlebars title: "@kbn/handlebars" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/handlebars plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/handlebars'] --- import kbnHandlebarsObj from './kbn_handlebars.devdocs.json'; diff --git a/api_docs/kbn_hapi_mocks.mdx b/api_docs/kbn_hapi_mocks.mdx index 7930c2f4370ff..bdf2a88a68487 100644 --- a/api_docs/kbn_hapi_mocks.mdx +++ b/api_docs/kbn_hapi_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-hapi-mocks title: "@kbn/hapi-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/hapi-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/hapi-mocks'] --- import kbnHapiMocksObj from './kbn_hapi_mocks.devdocs.json'; diff --git a/api_docs/kbn_health_gateway_server.mdx b/api_docs/kbn_health_gateway_server.mdx index b28fe0b8b2455..cdc18073f6f93 100644 --- a/api_docs/kbn_health_gateway_server.mdx +++ b/api_docs/kbn_health_gateway_server.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-health-gateway-server title: "@kbn/health-gateway-server" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/health-gateway-server plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/health-gateway-server'] --- import kbnHealthGatewayServerObj from './kbn_health_gateway_server.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_card.mdx b/api_docs/kbn_home_sample_data_card.mdx index 0deb05875c562..fec966b810f85 100644 --- a/api_docs/kbn_home_sample_data_card.mdx +++ b/api_docs/kbn_home_sample_data_card.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-card title: "@kbn/home-sample-data-card" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/home-sample-data-card plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-card'] --- import kbnHomeSampleDataCardObj from './kbn_home_sample_data_card.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_tab.mdx b/api_docs/kbn_home_sample_data_tab.mdx index 581b681cecef1..203bb222166b2 100644 --- a/api_docs/kbn_home_sample_data_tab.mdx +++ b/api_docs/kbn_home_sample_data_tab.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-home-sample-data-tab title: "@kbn/home-sample-data-tab" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/home-sample-data-tab plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/home-sample-data-tab'] --- import kbnHomeSampleDataTabObj from './kbn_home_sample_data_tab.devdocs.json'; diff --git a/api_docs/kbn_i18n.mdx b/api_docs/kbn_i18n.mdx index 8e4dc15b80ffe..55b34ed2a0bb2 100644 --- a/api_docs/kbn_i18n.mdx +++ b/api_docs/kbn_i18n.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n title: "@kbn/i18n" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/i18n plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n'] --- import kbnI18nObj from './kbn_i18n.devdocs.json'; diff --git a/api_docs/kbn_i18n_react.mdx b/api_docs/kbn_i18n_react.mdx index abb00885bb624..e32b616b7d68e 100644 --- a/api_docs/kbn_i18n_react.mdx +++ b/api_docs/kbn_i18n_react.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-i18n-react title: "@kbn/i18n-react" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/i18n-react plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n-react'] --- import kbnI18nReactObj from './kbn_i18n_react.devdocs.json'; diff --git a/api_docs/kbn_import_resolver.mdx b/api_docs/kbn_import_resolver.mdx index b90b78d264e6d..eccc8f7a032b2 100644 --- a/api_docs/kbn_import_resolver.mdx +++ b/api_docs/kbn_import_resolver.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-import-resolver title: "@kbn/import-resolver" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/import-resolver plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/import-resolver'] --- import kbnImportResolverObj from './kbn_import_resolver.devdocs.json'; diff --git a/api_docs/kbn_interpreter.mdx b/api_docs/kbn_interpreter.mdx index 8ae6f81f7e3f6..21b0f06c85c3c 100644 --- a/api_docs/kbn_interpreter.mdx +++ b/api_docs/kbn_interpreter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-interpreter title: "@kbn/interpreter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/interpreter plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/interpreter'] --- import kbnInterpreterObj from './kbn_interpreter.devdocs.json'; diff --git a/api_docs/kbn_io_ts_utils.mdx b/api_docs/kbn_io_ts_utils.mdx index 88894bd77b540..9b1ab460a48e2 100644 --- a/api_docs/kbn_io_ts_utils.mdx +++ b/api_docs/kbn_io_ts_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-io-ts-utils title: "@kbn/io-ts-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/io-ts-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/io-ts-utils'] --- import kbnIoTsUtilsObj from './kbn_io_ts_utils.devdocs.json'; diff --git a/api_docs/kbn_jest_serializers.mdx b/api_docs/kbn_jest_serializers.mdx index 36cbea4bd6af1..a24ea34372a88 100644 --- a/api_docs/kbn_jest_serializers.mdx +++ b/api_docs/kbn_jest_serializers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-jest-serializers title: "@kbn/jest-serializers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/jest-serializers plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/jest-serializers'] --- import kbnJestSerializersObj from './kbn_jest_serializers.devdocs.json'; diff --git a/api_docs/kbn_journeys.mdx b/api_docs/kbn_journeys.mdx index 7aff1ed39c950..b12d5db04de4e 100644 --- a/api_docs/kbn_journeys.mdx +++ b/api_docs/kbn_journeys.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-journeys title: "@kbn/journeys" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/journeys plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/journeys'] --- import kbnJourneysObj from './kbn_journeys.devdocs.json'; diff --git a/api_docs/kbn_json_ast.mdx b/api_docs/kbn_json_ast.mdx index 6575e46155cea..cf09efc67ac87 100644 --- a/api_docs/kbn_json_ast.mdx +++ b/api_docs/kbn_json_ast.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-json-ast title: "@kbn/json-ast" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/json-ast plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/json-ast'] --- import kbnJsonAstObj from './kbn_json_ast.devdocs.json'; diff --git a/api_docs/kbn_kibana_manifest_schema.mdx b/api_docs/kbn_kibana_manifest_schema.mdx index 734388f62be94..7a779ddd3c4bd 100644 --- a/api_docs/kbn_kibana_manifest_schema.mdx +++ b/api_docs/kbn_kibana_manifest_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-kibana-manifest-schema title: "@kbn/kibana-manifest-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/kibana-manifest-schema plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/kibana-manifest-schema'] --- import kbnKibanaManifestSchemaObj from './kbn_kibana_manifest_schema.devdocs.json'; diff --git a/api_docs/kbn_language_documentation_popover.mdx b/api_docs/kbn_language_documentation_popover.mdx index b81d2dcb304a0..16fbaa5a83b23 100644 --- a/api_docs/kbn_language_documentation_popover.mdx +++ b/api_docs/kbn_language_documentation_popover.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-language-documentation-popover title: "@kbn/language-documentation-popover" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/language-documentation-popover plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/language-documentation-popover'] --- import kbnLanguageDocumentationPopoverObj from './kbn_language_documentation_popover.devdocs.json'; diff --git a/api_docs/kbn_logging.mdx b/api_docs/kbn_logging.mdx index 92ed20c005504..7b06571307450 100644 --- a/api_docs/kbn_logging.mdx +++ b/api_docs/kbn_logging.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging title: "@kbn/logging" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/logging plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging'] --- import kbnLoggingObj from './kbn_logging.devdocs.json'; diff --git a/api_docs/kbn_logging_mocks.mdx b/api_docs/kbn_logging_mocks.mdx index ebeb0577b6828..518342efda00a 100644 --- a/api_docs/kbn_logging_mocks.mdx +++ b/api_docs/kbn_logging_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-logging-mocks title: "@kbn/logging-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/logging-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging-mocks'] --- import kbnLoggingMocksObj from './kbn_logging_mocks.devdocs.json'; diff --git a/api_docs/kbn_managed_vscode_config.mdx b/api_docs/kbn_managed_vscode_config.mdx index 3e17c28e874d0..98ff5384db391 100644 --- a/api_docs/kbn_managed_vscode_config.mdx +++ b/api_docs/kbn_managed_vscode_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-managed-vscode-config title: "@kbn/managed-vscode-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/managed-vscode-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/managed-vscode-config'] --- import kbnManagedVscodeConfigObj from './kbn_managed_vscode_config.devdocs.json'; diff --git a/api_docs/kbn_mapbox_gl.mdx b/api_docs/kbn_mapbox_gl.mdx index 9226d054c7114..4ae224c44b852 100644 --- a/api_docs/kbn_mapbox_gl.mdx +++ b/api_docs/kbn_mapbox_gl.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-mapbox-gl title: "@kbn/mapbox-gl" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/mapbox-gl plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/mapbox-gl'] --- import kbnMapboxGlObj from './kbn_mapbox_gl.devdocs.json'; diff --git a/api_docs/kbn_ml_agg_utils.mdx b/api_docs/kbn_ml_agg_utils.mdx index dcdcbe657673f..d5a6b147d2164 100644 --- a/api_docs/kbn_ml_agg_utils.mdx +++ b/api_docs/kbn_ml_agg_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-agg-utils title: "@kbn/ml-agg-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-agg-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-agg-utils'] --- import kbnMlAggUtilsObj from './kbn_ml_agg_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_date_picker.mdx b/api_docs/kbn_ml_date_picker.mdx index 012cd0a9bab82..ad1a76cda77fd 100644 --- a/api_docs/kbn_ml_date_picker.mdx +++ b/api_docs/kbn_ml_date_picker.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-date-picker title: "@kbn/ml-date-picker" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-date-picker plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-date-picker'] --- import kbnMlDatePickerObj from './kbn_ml_date_picker.devdocs.json'; diff --git a/api_docs/kbn_ml_is_defined.mdx b/api_docs/kbn_ml_is_defined.mdx index 5190ef4750c04..53f52958f230d 100644 --- a/api_docs/kbn_ml_is_defined.mdx +++ b/api_docs/kbn_ml_is_defined.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-defined title: "@kbn/ml-is-defined" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-is-defined plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-defined'] --- import kbnMlIsDefinedObj from './kbn_ml_is_defined.devdocs.json'; diff --git a/api_docs/kbn_ml_is_populated_object.mdx b/api_docs/kbn_ml_is_populated_object.mdx index c11162afeb895..df2d44a227076 100644 --- a/api_docs/kbn_ml_is_populated_object.mdx +++ b/api_docs/kbn_ml_is_populated_object.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-is-populated-object title: "@kbn/ml-is-populated-object" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-is-populated-object plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-is-populated-object'] --- import kbnMlIsPopulatedObjectObj from './kbn_ml_is_populated_object.devdocs.json'; diff --git a/api_docs/kbn_ml_local_storage.mdx b/api_docs/kbn_ml_local_storage.mdx index 43e0cd03b1ddb..74d5d50e2ffd7 100644 --- a/api_docs/kbn_ml_local_storage.mdx +++ b/api_docs/kbn_ml_local_storage.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-local-storage title: "@kbn/ml-local-storage" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-local-storage plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-local-storage'] --- import kbnMlLocalStorageObj from './kbn_ml_local_storage.devdocs.json'; diff --git a/api_docs/kbn_ml_nested_property.mdx b/api_docs/kbn_ml_nested_property.mdx index 02db84ccb9b22..db930f178714d 100644 --- a/api_docs/kbn_ml_nested_property.mdx +++ b/api_docs/kbn_ml_nested_property.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-nested-property title: "@kbn/ml-nested-property" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-nested-property plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-nested-property'] --- import kbnMlNestedPropertyObj from './kbn_ml_nested_property.devdocs.json'; diff --git a/api_docs/kbn_ml_number_utils.mdx b/api_docs/kbn_ml_number_utils.mdx index 432bae715b716..ae2c03e78f9ff 100644 --- a/api_docs/kbn_ml_number_utils.mdx +++ b/api_docs/kbn_ml_number_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-number-utils title: "@kbn/ml-number-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-number-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-number-utils'] --- import kbnMlNumberUtilsObj from './kbn_ml_number_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_query_utils.mdx b/api_docs/kbn_ml_query_utils.mdx index 9aff898eb4eb7..9c81b23eb01dd 100644 --- a/api_docs/kbn_ml_query_utils.mdx +++ b/api_docs/kbn_ml_query_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-query-utils title: "@kbn/ml-query-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-query-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-query-utils'] --- import kbnMlQueryUtilsObj from './kbn_ml_query_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_random_sampler_utils.mdx b/api_docs/kbn_ml_random_sampler_utils.mdx index 9594b416d1010..7042b416b5611 100644 --- a/api_docs/kbn_ml_random_sampler_utils.mdx +++ b/api_docs/kbn_ml_random_sampler_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-random-sampler-utils title: "@kbn/ml-random-sampler-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-random-sampler-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-random-sampler-utils'] --- import kbnMlRandomSamplerUtilsObj from './kbn_ml_random_sampler_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_route_utils.mdx b/api_docs/kbn_ml_route_utils.mdx index 812ba0ee26588..f84a407e7f61a 100644 --- a/api_docs/kbn_ml_route_utils.mdx +++ b/api_docs/kbn_ml_route_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-route-utils title: "@kbn/ml-route-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-route-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-route-utils'] --- import kbnMlRouteUtilsObj from './kbn_ml_route_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_string_hash.mdx b/api_docs/kbn_ml_string_hash.mdx index 24b46a1211727..00bf605ac7816 100644 --- a/api_docs/kbn_ml_string_hash.mdx +++ b/api_docs/kbn_ml_string_hash.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-string-hash title: "@kbn/ml-string-hash" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-string-hash plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-string-hash'] --- import kbnMlStringHashObj from './kbn_ml_string_hash.devdocs.json'; diff --git a/api_docs/kbn_ml_trained_models_utils.mdx b/api_docs/kbn_ml_trained_models_utils.mdx index ab1eee824e4e7..f5dd277729937 100644 --- a/api_docs/kbn_ml_trained_models_utils.mdx +++ b/api_docs/kbn_ml_trained_models_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-trained-models-utils title: "@kbn/ml-trained-models-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-trained-models-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-trained-models-utils'] --- import kbnMlTrainedModelsUtilsObj from './kbn_ml_trained_models_utils.devdocs.json'; diff --git a/api_docs/kbn_ml_url_state.mdx b/api_docs/kbn_ml_url_state.mdx index 1a7737234063a..473f114a50709 100644 --- a/api_docs/kbn_ml_url_state.mdx +++ b/api_docs/kbn_ml_url_state.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ml-url-state title: "@kbn/ml-url-state" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ml-url-state plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-url-state'] --- import kbnMlUrlStateObj from './kbn_ml_url_state.devdocs.json'; diff --git a/api_docs/kbn_monaco.mdx b/api_docs/kbn_monaco.mdx index 984499cded1af..dbd1322725e51 100644 --- a/api_docs/kbn_monaco.mdx +++ b/api_docs/kbn_monaco.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-monaco title: "@kbn/monaco" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/monaco plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/monaco'] --- import kbnMonacoObj from './kbn_monaco.devdocs.json'; diff --git a/api_docs/kbn_object_versioning.mdx b/api_docs/kbn_object_versioning.mdx index 32b5e9b57368a..bdf70880504f7 100644 --- a/api_docs/kbn_object_versioning.mdx +++ b/api_docs/kbn_object_versioning.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-object-versioning title: "@kbn/object-versioning" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/object-versioning plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/object-versioning'] --- import kbnObjectVersioningObj from './kbn_object_versioning.devdocs.json'; diff --git a/api_docs/kbn_observability_alert_details.mdx b/api_docs/kbn_observability_alert_details.mdx index 4f351e4030539..ef2cadc4516c3 100644 --- a/api_docs/kbn_observability_alert_details.mdx +++ b/api_docs/kbn_observability_alert_details.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-observability-alert-details title: "@kbn/observability-alert-details" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/observability-alert-details plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/observability-alert-details'] --- import kbnObservabilityAlertDetailsObj from './kbn_observability_alert_details.devdocs.json'; diff --git a/api_docs/kbn_optimizer.mdx b/api_docs/kbn_optimizer.mdx index 120a449e46134..0897ce442f287 100644 --- a/api_docs/kbn_optimizer.mdx +++ b/api_docs/kbn_optimizer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer title: "@kbn/optimizer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/optimizer plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer'] --- import kbnOptimizerObj from './kbn_optimizer.devdocs.json'; diff --git a/api_docs/kbn_optimizer_webpack_helpers.mdx b/api_docs/kbn_optimizer_webpack_helpers.mdx index 11ada4b03b2c4..93899a1c199f4 100644 --- a/api_docs/kbn_optimizer_webpack_helpers.mdx +++ b/api_docs/kbn_optimizer_webpack_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-optimizer-webpack-helpers title: "@kbn/optimizer-webpack-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/optimizer-webpack-helpers plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer-webpack-helpers'] --- import kbnOptimizerWebpackHelpersObj from './kbn_optimizer_webpack_helpers.devdocs.json'; diff --git a/api_docs/kbn_osquery_io_ts_types.mdx b/api_docs/kbn_osquery_io_ts_types.mdx index 6c57fa5993c35..8d78be6e10ad9 100644 --- a/api_docs/kbn_osquery_io_ts_types.mdx +++ b/api_docs/kbn_osquery_io_ts_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-osquery-io-ts-types title: "@kbn/osquery-io-ts-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/osquery-io-ts-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/osquery-io-ts-types'] --- import kbnOsqueryIoTsTypesObj from './kbn_osquery_io_ts_types.devdocs.json'; diff --git a/api_docs/kbn_performance_testing_dataset_extractor.mdx b/api_docs/kbn_performance_testing_dataset_extractor.mdx index ef2bc5bb30c00..9f597884b2955 100644 --- a/api_docs/kbn_performance_testing_dataset_extractor.mdx +++ b/api_docs/kbn_performance_testing_dataset_extractor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-performance-testing-dataset-extractor title: "@kbn/performance-testing-dataset-extractor" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/performance-testing-dataset-extractor plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/performance-testing-dataset-extractor'] --- import kbnPerformanceTestingDatasetExtractorObj from './kbn_performance_testing_dataset_extractor.devdocs.json'; diff --git a/api_docs/kbn_plugin_generator.mdx b/api_docs/kbn_plugin_generator.mdx index 12c56a1f06127..ef15cdfe2059a 100644 --- a/api_docs/kbn_plugin_generator.mdx +++ b/api_docs/kbn_plugin_generator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-generator title: "@kbn/plugin-generator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-generator plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-generator'] --- import kbnPluginGeneratorObj from './kbn_plugin_generator.devdocs.json'; diff --git a/api_docs/kbn_plugin_helpers.mdx b/api_docs/kbn_plugin_helpers.mdx index 85277e3f9b819..c67a14a04373e 100644 --- a/api_docs/kbn_plugin_helpers.mdx +++ b/api_docs/kbn_plugin_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-plugin-helpers title: "@kbn/plugin-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/plugin-helpers plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-helpers'] --- import kbnPluginHelpersObj from './kbn_plugin_helpers.devdocs.json'; diff --git a/api_docs/kbn_react_field.mdx b/api_docs/kbn_react_field.mdx index cc60a332098b9..2a0a1a155a82c 100644 --- a/api_docs/kbn_react_field.mdx +++ b/api_docs/kbn_react_field.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-react-field title: "@kbn/react-field" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/react-field plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-field'] --- import kbnReactFieldObj from './kbn_react_field.devdocs.json'; diff --git a/api_docs/kbn_repo_file_maps.mdx b/api_docs/kbn_repo_file_maps.mdx index 6c482a565e3fd..e1f6c59096a77 100644 --- a/api_docs/kbn_repo_file_maps.mdx +++ b/api_docs/kbn_repo_file_maps.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-file-maps title: "@kbn/repo-file-maps" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-file-maps plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-file-maps'] --- import kbnRepoFileMapsObj from './kbn_repo_file_maps.devdocs.json'; diff --git a/api_docs/kbn_repo_linter.mdx b/api_docs/kbn_repo_linter.mdx index 3b4f01e195d8b..c60888f9af90a 100644 --- a/api_docs/kbn_repo_linter.mdx +++ b/api_docs/kbn_repo_linter.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-linter title: "@kbn/repo-linter" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-linter plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-linter'] --- import kbnRepoLinterObj from './kbn_repo_linter.devdocs.json'; diff --git a/api_docs/kbn_repo_path.mdx b/api_docs/kbn_repo_path.mdx index 6c5ba1f704985..af11a10209f93 100644 --- a/api_docs/kbn_repo_path.mdx +++ b/api_docs/kbn_repo_path.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-path title: "@kbn/repo-path" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-path plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-path'] --- import kbnRepoPathObj from './kbn_repo_path.devdocs.json'; diff --git a/api_docs/kbn_repo_source_classifier.mdx b/api_docs/kbn_repo_source_classifier.mdx index e4a7634ba7235..d7fc93cb103ac 100644 --- a/api_docs/kbn_repo_source_classifier.mdx +++ b/api_docs/kbn_repo_source_classifier.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-repo-source-classifier title: "@kbn/repo-source-classifier" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/repo-source-classifier plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-source-classifier'] --- import kbnRepoSourceClassifierObj from './kbn_repo_source_classifier.devdocs.json'; diff --git a/api_docs/kbn_reporting_common.mdx b/api_docs/kbn_reporting_common.mdx index 48d536fbbaa3d..335b4b0cbc84a 100644 --- a/api_docs/kbn_reporting_common.mdx +++ b/api_docs/kbn_reporting_common.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-reporting-common title: "@kbn/reporting-common" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/reporting-common plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/reporting-common'] --- import kbnReportingCommonObj from './kbn_reporting_common.devdocs.json'; diff --git a/api_docs/kbn_rison.mdx b/api_docs/kbn_rison.mdx index 174b1521d27fc..06232d88b030c 100644 --- a/api_docs/kbn_rison.mdx +++ b/api_docs/kbn_rison.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rison title: "@kbn/rison" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rison plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rison'] --- import kbnRisonObj from './kbn_rison.devdocs.json'; diff --git a/api_docs/kbn_rule_data_utils.mdx b/api_docs/kbn_rule_data_utils.mdx index e859c7c731d62..ac693b0eb23e7 100644 --- a/api_docs/kbn_rule_data_utils.mdx +++ b/api_docs/kbn_rule_data_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-rule-data-utils title: "@kbn/rule-data-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/rule-data-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rule-data-utils'] --- import kbnRuleDataUtilsObj from './kbn_rule_data_utils.devdocs.json'; diff --git a/api_docs/kbn_saved_objects_settings.devdocs.json b/api_docs/kbn_saved_objects_settings.devdocs.json new file mode 100644 index 0000000000000..f6d64f51a049d --- /dev/null +++ b/api_docs/kbn_saved_objects_settings.devdocs.json @@ -0,0 +1,58 @@ +{ + "id": "@kbn/saved-objects-settings", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "common": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [ + { + "parentPluginId": "@kbn/saved-objects-settings", + "id": "def-common.LISTING_LIMIT_SETTING", + "type": "string", + "tags": [], + "label": "LISTING_LIMIT_SETTING", + "description": [], + "signature": [ + "\"savedObjects:listingLimit\"" + ], + "path": "packages/kbn-saved-objects-settings/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/saved-objects-settings", + "id": "def-common.PER_PAGE_SETTING", + "type": "string", + "tags": [], + "label": "PER_PAGE_SETTING", + "description": [], + "signature": [ + "\"savedObjects:perPage\"" + ], + "path": "packages/kbn-saved-objects-settings/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ], + "objects": [] + } +} \ No newline at end of file diff --git a/api_docs/kbn_saved_objects_settings.mdx b/api_docs/kbn_saved_objects_settings.mdx new file mode 100644 index 0000000000000..27b29d34528e0 --- /dev/null +++ b/api_docs/kbn_saved_objects_settings.mdx @@ -0,0 +1,30 @@ +--- +#### +#### This document is auto-generated and is meant to be viewed inside our experimental, new docs system. +#### Reach out in #docs-engineering for more info. +#### +id: kibKbnSavedObjectsSettingsPluginApi +slug: /kibana-dev-docs/api/kbn-saved-objects-settings +title: "@kbn/saved-objects-settings" +image: https://source.unsplash.com/400x175/?github +description: API docs for the @kbn/saved-objects-settings plugin +date: 2023-04-18 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/saved-objects-settings'] +--- +import kbnSavedObjectsSettingsObj from './kbn_saved_objects_settings.devdocs.json'; + + + +Contact [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 2 | 0 | 2 | 0 | + +## Common + +### Consts, variables and types + + diff --git a/api_docs/kbn_security_solution_side_nav.mdx b/api_docs/kbn_security_solution_side_nav.mdx index 841e8322f82ba..8edfc25a8f14b 100644 --- a/api_docs/kbn_security_solution_side_nav.mdx +++ b/api_docs/kbn_security_solution_side_nav.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-side-nav title: "@kbn/security-solution-side-nav" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-side-nav plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-side-nav'] --- import kbnSecuritySolutionSideNavObj from './kbn_security_solution_side_nav.devdocs.json'; diff --git a/api_docs/kbn_security_solution_storybook_config.mdx b/api_docs/kbn_security_solution_storybook_config.mdx index 718b462743d54..bec820301d81d 100644 --- a/api_docs/kbn_security_solution_storybook_config.mdx +++ b/api_docs/kbn_security_solution_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-security-solution-storybook-config title: "@kbn/security-solution-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/security-solution-storybook-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/security-solution-storybook-config'] --- import kbnSecuritySolutionStorybookConfigObj from './kbn_security_solution_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_autocomplete.mdx b/api_docs/kbn_securitysolution_autocomplete.mdx index 1a37555ee16f2..a2b697366ceb2 100644 --- a/api_docs/kbn_securitysolution_autocomplete.mdx +++ b/api_docs/kbn_securitysolution_autocomplete.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-autocomplete title: "@kbn/securitysolution-autocomplete" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-autocomplete plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-autocomplete'] --- import kbnSecuritysolutionAutocompleteObj from './kbn_securitysolution_autocomplete.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_data_table.devdocs.json b/api_docs/kbn_securitysolution_data_table.devdocs.json new file mode 100644 index 0000000000000..2aa15fe5580f4 --- /dev/null +++ b/api_docs/kbn_securitysolution_data_table.devdocs.json @@ -0,0 +1,1862 @@ +{ + "id": "@kbn/securitysolution-data-table", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "common": { + "classes": [], + "functions": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.addBuildingBlockStyle", + "type": "Function", + "tags": [], + "label": "addBuildingBlockStyle", + "description": [], + "signature": [ + "(ecs: ", + { + "pluginId": "@kbn/securitysolution-ecs", + "scope": "common", + "docId": "kibKbnSecuritysolutionEcsPluginApi", + "section": "def-common.EcsSecurityExtension", + "text": "EcsSecurityExtension" + }, + ", theme: ", + { + "pluginId": "kibanaReact", + "scope": "common", + "docId": "kibKibanaReactPluginApi", + "section": "def-common.EuiTheme", + "text": "EuiTheme" + }, + ", setCellProps: (props: ", + "EuiDataGridSetCellProps", + ") => void, defaultStyles?: React.CSSProperties | undefined) => void" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.addBuildingBlockStyle.$1", + "type": "Object", + "tags": [], + "label": "ecs", + "description": [], + "signature": [ + { + "pluginId": "@kbn/securitysolution-ecs", + "scope": "common", + "docId": "kibKbnSecuritysolutionEcsPluginApi", + "section": "def-common.EcsSecurityExtension", + "text": "EcsSecurityExtension" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.addBuildingBlockStyle.$2", + "type": "Object", + "tags": [], + "label": "theme", + "description": [], + "signature": [ + { + "pluginId": "kibanaReact", + "scope": "common", + "docId": "kibKibanaReactPluginApi", + "section": "def-common.EuiTheme", + "text": "EuiTheme" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.addBuildingBlockStyle.$3", + "type": "Function", + "tags": [], + "label": "setCellProps", + "description": [], + "signature": [ + "(props: ", + "EuiDataGridSetCellProps", + ") => void" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.addBuildingBlockStyle.$4", + "type": "Object", + "tags": [], + "label": "defaultStyles", + "description": [], + "signature": [ + "React.CSSProperties | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableComponent", + "type": "Function", + "tags": [], + "label": "DataTableComponent", + "description": [], + "signature": [ + "React.NamedExoticComponent<", + "DataTableProps", + ">" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/index.tsx", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableComponent.$1", + "type": "Uncategorized", + "tags": [], + "label": "props", + "description": [], + "signature": [ + "P" + ], + "path": "node_modules/@types/react/index.d.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.dataTableReducer", + "type": "Function", + "tags": [], + "label": "dataTableReducer", + "description": [ + "The reducer for all data table actions" + ], + "signature": [ + "(state: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableState", + "text": "TableState" + }, + " | undefined, action: { type: any; }) => ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableState", + "text": "TableState" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/reducer.ts", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.dataTableReducer.$1", + "type": "Uncategorized", + "tags": [], + "label": "state", + "description": [], + "signature": [ + "PassedS" + ], + "path": "node_modules/typescript-fsa-reducers/dist/index.d.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.dataTableReducer.$2", + "type": "Object", + "tags": [], + "label": "action", + "description": [], + "signature": [ + "{ type: any; }" + ], + "path": "node_modules/typescript-fsa-reducers/dist/index.d.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getColumnHeaders", + "type": "Function", + "tags": [], + "label": "getColumnHeaders", + "description": [ + "Enriches the column headers with field details from the specified browserFields" + ], + "signature": [ + "(headers: ", + "ColumnHeaderOptions", + "[], browserFields: Readonly>>, isEventRenderedView?: boolean | undefined) => ", + "ColumnHeaderOptions", + "[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/column_headers/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getColumnHeaders.$1", + "type": "Array", + "tags": [], + "label": "headers", + "description": [], + "signature": [ + "ColumnHeaderOptions", + "[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/column_headers/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getColumnHeaders.$2", + "type": "Object", + "tags": [], + "label": "browserFields", + "description": [], + "signature": [ + "Readonly>>" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/column_headers/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getColumnHeaders.$3", + "type": "CompoundType", + "tags": [], + "label": "isEventRenderedView", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/column_headers/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": false + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getEventIdToDataMapping", + "type": "Function", + "tags": [], + "label": "getEventIdToDataMapping", + "description": [ + "\nCreates mapping of eventID -> fieldData for given fieldsToKeep. Used to store additional field\ndata necessary for custom timeline actions in conjunction with selection state" + ], + "signature": [ + "(timelineData: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineItem", + "text": "TimelineItem" + }, + "[], eventIds: string[], fieldsToKeep: string[], hasAlertsCrud: boolean) => Record" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getEventIdToDataMapping.$1", + "type": "Array", + "tags": [], + "label": "timelineData", + "description": [], + "signature": [ + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineItem", + "text": "TimelineItem" + }, + "[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getEventIdToDataMapping.$2", + "type": "Array", + "tags": [], + "label": "eventIds", + "description": [], + "signature": [ + "string[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getEventIdToDataMapping.$3", + "type": "Array", + "tags": [], + "label": "fieldsToKeep", + "description": [], + "signature": [ + "string[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getEventIdToDataMapping.$4", + "type": "boolean", + "tags": [], + "label": "hasAlertsCrud", + "description": [], + "signature": [ + "boolean" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getPageRowIndex", + "type": "Function", + "tags": [], + "label": "getPageRowIndex", + "description": [ + "\nrowIndex is bigger than `data.length` for pages with page numbers bigger than one.\nFor that reason, we must calculate `rowIndex % itemsPerPage`.\n\nEx:\nGiven `rowIndex` is `13` and `itemsPerPage` is `10`.\nIt means that the `activePage` is `2` and the `pageRowIndex` is `3`\n\n**Warning**:\nBe careful with array out of bounds. `pageRowIndex` can be bigger or equal to `data.length`\n in the scenario where the user changes the event status (Open, Acknowledged, Closed)." + ], + "signature": [ + "(rowIndex: number, itemsPerPage: number) => number" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/pagination.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getPageRowIndex.$1", + "type": "number", + "tags": [], + "label": "rowIndex", + "description": [], + "signature": [ + "number" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/pagination.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getPageRowIndex.$2", + "type": "number", + "tags": [], + "label": "itemsPerPage", + "description": [], + "signature": [ + "number" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/pagination.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.getTableByIdSelector", + "type": "Function", + "tags": [], + "label": "getTableByIdSelector", + "description": [], + "signature": [ + "() => ((state: { dataTable: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableState", + "text": "TableState" + }, + "; }, params_0: string) => ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.DataTableModel", + "text": "DataTableModel" + }, + ") & ", + "OutputSelectorFields", + "<(args_0: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.DataTableModel", + "text": "DataTableModel" + }, + ") => ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.DataTableModel", + "text": "DataTableModel" + }, + " & { clearCache: () => void; }> & { clearCache: () => void; }" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/selectors.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.isEventBuildingBlockType", + "type": "Function", + "tags": [], + "label": "isEventBuildingBlockType", + "description": [], + "signature": [ + "(event: ", + { + "pluginId": "@kbn/securitysolution-ecs", + "scope": "common", + "docId": "kibKbnSecuritysolutionEcsPluginApi", + "section": "def-common.EcsSecurityExtension", + "text": "EcsSecurityExtension" + }, + ") => boolean" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.isEventBuildingBlockType.$1", + "type": "Object", + "tags": [], + "label": "event", + "description": [], + "signature": [ + { + "pluginId": "@kbn/securitysolution-ecs", + "scope": "common", + "docId": "kibKbnSecuritysolutionEcsPluginApi", + "section": "def-common.EcsSecurityExtension", + "text": "EcsSecurityExtension" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/components/data_table/helpers.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + } + ], + "interfaces": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel", + "type": "Interface", + "tags": [], + "label": "DataTableModel", + "description": [], + "signature": [ + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.DataTableModel", + "text": "DataTableModel" + }, + " extends ", + "DataTableModelSettings" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.columns", + "type": "Array", + "tags": [], + "label": "columns", + "description": [ + "The columns displayed in the data table" + ], + "signature": [ + "(Pick<", + "EuiDataGridColumn", + ", \"id\" | \"display\" | \"displayAsText\" | \"initialWidth\"> & Pick<", + "EuiDataGridColumn", + ", \"id\" | \"actions\" | \"schema\" | \"display\" | \"defaultSortDirection\" | \"displayAsText\" | \"initialWidth\" | \"isSortable\" | \"isExpandable\" | \"isResizable\"> & { aggregatable?: boolean | undefined; category?: string | undefined; columnHeaderType: ", + "ColumnHeaderType", + "; description?: string | null | undefined; esTypes?: string[] | undefined; example?: string | number | null | undefined; format?: string | undefined; linkField?: string | undefined; placeholder?: string | undefined; subType?: ", + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined; type?: string | undefined; })[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.dataViewId", + "type": "CompoundType", + "tags": [], + "label": "dataViewId", + "description": [ + "Kibana data view id" + ], + "signature": [ + "string | null" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.deletedEventIds", + "type": "Array", + "tags": [], + "label": "deletedEventIds", + "description": [ + "Events to not be rendered" + ], + "signature": [ + "string[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.expandedDetail", + "type": "Object", + "tags": [], + "label": "expandedDetail", + "description": [ + "This holds the view information for the flyout when viewing data in a consuming view (i.e. hosts page) or the side panel in the primary data view" + ], + "signature": [ + "{ [x: string]: ", + "ExpandedDetailType", + " | undefined; }" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.filters", + "type": "Array", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.graphEventId", + "type": "string", + "tags": [], + "label": "graphEventId", + "description": [ + "When non-empty, display a graph view for this event" + ], + "signature": [ + "string | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.id", + "type": "string", + "tags": [], + "label": "id", + "description": [ + "Uniquely identifies the data table" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.indexNames", + "type": "Array", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "string[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.isLoading", + "type": "boolean", + "tags": [], + "label": "isLoading", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.isSelectAllChecked", + "type": "boolean", + "tags": [], + "label": "isSelectAllChecked", + "description": [ + "If selectAll checkbox in header is checked" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.itemsPerPage", + "type": "number", + "tags": [], + "label": "itemsPerPage", + "description": [ + "The number of items to show in a single page of results" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.itemsPerPageOptions", + "type": "Array", + "tags": [], + "label": "itemsPerPageOptions", + "description": [ + "Displays a series of choices that when selected, become the value of `itemsPerPage`" + ], + "signature": [ + "number[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.loadingEventIds", + "type": "Array", + "tags": [], + "label": "loadingEventIds", + "description": [ + "Events to be rendered as loading" + ], + "signature": [ + "string[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.selectedEventIds", + "type": "Object", + "tags": [], + "label": "selectedEventIds", + "description": [ + "Events selected on this timeline -- eventId to TimelineNonEcsData[] mapping of data required for bulk actions" + ], + "signature": [ + "{ [x: string]: ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.TimelineNonEcsData", + "text": "TimelineNonEcsData" + }, + "[]; }" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.initialized", + "type": "CompoundType", + "tags": [], + "label": "initialized", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.sessionViewConfig", + "type": "CompoundType", + "tags": [], + "label": "sessionViewConfig", + "description": [], + "signature": [ + "SessionViewConfig", + " | null" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.updated", + "type": "number", + "tags": [], + "label": "updated", + "description": [ + "updated saved object timestamp" + ], + "signature": [ + "number | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [ + "Total number of fetched events/alerts" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.viewMode", + "type": "CompoundType", + "tags": [], + "label": "viewMode", + "description": [], + "signature": [ + "\"gridView\" | \"eventRenderedView\"" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableModel.additionalFilters", + "type": "Object", + "tags": [], + "label": "additionalFilters", + "description": [], + "signature": [ + "{ showOnlyThreatIndicatorAlerts: boolean; showBuildingBlockAlerts: boolean; }" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableState", + "type": "Interface", + "tags": [], + "label": "DataTableState", + "description": [ + "The state of all timelines is stored here" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.DataTableState.dataTable", + "type": "Object", + "tags": [], + "label": "dataTable", + "description": [], + "signature": [ + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableState", + "text": "TableState" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/types.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SortColumnTable", + "type": "Interface", + "tags": [], + "label": "SortColumnTable", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SortColumnTable.columnId", + "type": "string", + "tags": [], + "label": "columnId", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SortColumnTable.columnType", + "type": "string", + "tags": [], + "label": "columnType", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SortColumnTable.esTypes", + "type": "Array", + "tags": [], + "label": "esTypes", + "description": [], + "signature": [ + "string[] | undefined" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SortColumnTable.sortDirection", + "type": "CompoundType", + "tags": [], + "label": "sortDirection", + "description": [], + "signature": [ + "\"asc\" | \"desc\" | \"none\" | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableById", + "type": "Interface", + "tags": [], + "label": "TableById", + "description": [ + "A map of id to data table" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableById.Unnamed", + "type": "IndexSignature", + "tags": [], + "label": "[id: string]: DataTableModel", + "description": [], + "signature": [ + "[id: string]: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.DataTableModel", + "text": "DataTableModel" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/types.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableState", + "type": "Interface", + "tags": [], + "label": "TableState", + "description": [ + "The state of all data tables is stored here" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableState.tableById", + "type": "Object", + "tags": [], + "label": "tableById", + "description": [], + "signature": [ + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableById", + "text": "TableById" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/types.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + } + ], + "enums": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.Direction", + "type": "Enum", + "tags": [], + "label": "Direction", + "description": [], + "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableEntityType", + "type": "Enum", + "tags": [], + "label": "TableEntityType", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableId", + "type": "Enum", + "tags": [], + "label": "TableId", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TimelineTabs", + "type": "Enum", + "tags": [], + "label": "TimelineTabs", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/detail_panel.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ], + "misc": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.defaultColumnHeaderType", + "type": "CompoundType", + "tags": [], + "label": "defaultColumnHeaderType", + "description": [], + "signature": [ + "\"not-filtered\" | \"text-filter\"" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.defaultHeaders", + "type": "Array", + "tags": [], + "label": "defaultHeaders", + "description": [], + "signature": [ + "ColumnHeaderOptions", + "[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.FILTER_OPEN", + "type": "string", + "tags": [], + "label": "FILTER_OPEN", + "description": [], + "signature": [ + "\"open\"" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SortDirectionTable", + "type": "Type", + "tags": [], + "label": "SortDirectionTable", + "description": [], + "signature": [ + "\"asc\" | \"desc\" | \"none\" | ", + { + "pluginId": "timelines", + "scope": "common", + "docId": "kibTimelinesPluginApi", + "section": "def-common.Direction", + "text": "Direction" + } + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.SubsetDataTableModel", + "type": "Type", + "tags": [], + "label": "SubsetDataTableModel", + "description": [], + "signature": [ + "{ readonly sort: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.SortColumnTable", + "text": "SortColumnTable" + }, + "[]; readonly title: string; readonly filters?: ", + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.Filter", + "text": "Filter" + }, + "[] | undefined; readonly columns: (Pick<", + "EuiDataGridColumn", + ", \"id\" | \"display\" | \"displayAsText\" | \"initialWidth\"> & Pick<", + "EuiDataGridColumn", + ", \"id\" | \"actions\" | \"schema\" | \"display\" | \"defaultSortDirection\" | \"displayAsText\" | \"initialWidth\" | \"isSortable\" | \"isExpandable\" | \"isResizable\"> & { aggregatable?: boolean | undefined; category?: string | undefined; columnHeaderType: ", + "ColumnHeaderType", + "; description?: string | null | undefined; esTypes?: string[] | undefined; example?: string | number | null | undefined; format?: string | undefined; linkField?: string | undefined; placeholder?: string | undefined; subType?: ", + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined; type?: string | undefined; })[]; readonly isLoading: boolean; readonly viewMode: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.ViewSelection", + "text": "ViewSelection" + }, + "; readonly dataViewId: string | null; readonly defaultColumns: (Pick<", + "EuiDataGridColumn", + ", \"id\" | \"display\" | \"displayAsText\" | \"initialWidth\"> & Pick<", + "EuiDataGridColumn", + ", \"id\" | \"actions\" | \"schema\" | \"display\" | \"defaultSortDirection\" | \"displayAsText\" | \"initialWidth\" | \"isSortable\" | \"isExpandable\" | \"isResizable\"> & { aggregatable?: boolean | undefined; category?: string | undefined; columnHeaderType: ", + "ColumnHeaderType", + "; description?: string | null | undefined; esTypes?: string[] | undefined; example?: string | number | null | undefined; format?: string | undefined; linkField?: string | undefined; placeholder?: string | undefined; subType?: ", + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.IFieldSubType", + "text": "IFieldSubType" + }, + " | undefined; type?: string | undefined; })[]; readonly initialized?: boolean | undefined; readonly queryFields: string[]; readonly selectAll: boolean; readonly showCheckboxes: boolean; readonly deletedEventIds: string[]; readonly expandedDetail: Partial>; readonly graphEventId?: string | undefined; readonly indexNames: string[]; readonly isSelectAllChecked: boolean; readonly itemsPerPage: number; readonly itemsPerPageOptions: number[]; readonly loadingEventIds: string[]; readonly selectedEventIds: Record; readonly sessionViewConfig: ", + "SessionViewConfig", + " | null; readonly totalCount: number; readonly additionalFilters: Record<", + "AlertPageFilterType", + ", boolean>; }" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/model.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.TableIdLiteral", + "type": "Type", + "tags": [], + "label": "TableIdLiteral", + "description": [], + "signature": [ + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".usersPageEvents | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".hostsPageEvents | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".networkPageEvents | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".hostsPageSessions | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".alertsOnRuleDetailsPage | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".alertsOnAlertsPage | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".test | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".rulePreview | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".kubernetesPageSessions | ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableId", + "text": "TableId" + }, + ".alertsOnCasePage" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.ViewSelection", + "type": "Type", + "tags": [], + "label": "ViewSelection", + "description": [], + "signature": [ + "\"gridView\" | \"eventRenderedView\"" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ], + "objects": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults", + "type": "Object", + "tags": [], + "label": "tableDefaults", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.defaultColumns", + "type": "Array", + "tags": [], + "label": "defaultColumns", + "description": [], + "signature": [ + "ColumnHeaderOptions", + "[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.dataViewId", + "type": "Uncategorized", + "tags": [], + "label": "dataViewId", + "description": [], + "signature": [ + "null" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.deletedEventIds", + "type": "Array", + "tags": [], + "label": "deletedEventIds", + "description": [], + "signature": [ + "never[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.expandedDetail", + "type": "Object", + "tags": [], + "label": "expandedDetail", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false, + "children": [] + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.filters", + "type": "Array", + "tags": [], + "label": "filters", + "description": [], + "signature": [ + "never[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.indexNames", + "type": "Array", + "tags": [], + "label": "indexNames", + "description": [], + "signature": [ + "never[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.isSelectAllChecked", + "type": "boolean", + "tags": [], + "label": "isSelectAllChecked", + "description": [], + "signature": [ + "false" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.isLoading", + "type": "boolean", + "tags": [], + "label": "isLoading", + "description": [], + "signature": [ + "false" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.itemsPerPage", + "type": "number", + "tags": [], + "label": "itemsPerPage", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.itemsPerPageOptions", + "type": "Array", + "tags": [], + "label": "itemsPerPageOptions", + "description": [], + "signature": [ + "number[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.loadingEventIds", + "type": "Array", + "tags": [], + "label": "loadingEventIds", + "description": [], + "signature": [ + "never[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.selectedEventIds", + "type": "Object", + "tags": [], + "label": "selectedEventIds", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false, + "children": [] + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.showCheckboxes", + "type": "boolean", + "tags": [], + "label": "showCheckboxes", + "description": [], + "signature": [ + "false" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.sort", + "type": "Array", + "tags": [], + "label": "sort", + "description": [], + "signature": [ + "{ columnId: string; columnType: string; esTypes: string[]; sortDirection: \"desc\"; }[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.selectAll", + "type": "boolean", + "tags": [], + "label": "selectAll", + "description": [], + "signature": [ + "false" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.graphEventId", + "type": "string", + "tags": [], + "label": "graphEventId", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.sessionViewConfig", + "type": "Uncategorized", + "tags": [], + "label": "sessionViewConfig", + "description": [], + "signature": [ + "null" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.columns", + "type": "Array", + "tags": [], + "label": "columns", + "description": [], + "signature": [ + "ColumnHeaderOptions", + "[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.queryFields", + "type": "Array", + "tags": [], + "label": "queryFields", + "description": [], + "signature": [ + "never[]" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.title", + "type": "string", + "tags": [], + "label": "title", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.totalCount", + "type": "number", + "tags": [], + "label": "totalCount", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.viewMode", + "type": "string", + "tags": [], + "label": "viewMode", + "description": [], + "signature": [ + "\"gridView\"" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.additionalFilters", + "type": "Object", + "tags": [], + "label": "additionalFilters", + "description": [], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.additionalFilters.showBuildingBlockAlerts", + "type": "boolean", + "tags": [], + "label": "showBuildingBlockAlerts", + "description": [], + "signature": [ + "false" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableDefaults.additionalFilters.showOnlyThreatIndicatorAlerts", + "type": "boolean", + "tags": [], + "label": "showOnlyThreatIndicatorAlerts", + "description": [], + "signature": [ + "false" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/store/data_table/defaults.ts", + "deprecated": false, + "trackAdoption": false + } + ] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-data-table", + "id": "def-common.tableEntity", + "type": "Object", + "tags": [], + "label": "tableEntity", + "description": [], + "signature": [ + "{ \"users-page-events\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"hosts-page-events\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"network-page-events\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"hosts-page-sessions-v2\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"alerts-rules-details-page\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"alerts-page\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"table-test\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; alternateTest: ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"rule-preview\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"kubernetes-page-sessions\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; \"alerts-case-page\": ", + { + "pluginId": "@kbn/securitysolution-data-table", + "scope": "common", + "docId": "kibKbnSecuritysolutionDataTablePluginApi", + "section": "def-common.TableEntityType", + "text": "TableEntityType" + }, + "; }" + ], + "path": "x-pack/packages/kbn-securitysolution-data-table/common/types/data_table/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + } + ] + } +} \ No newline at end of file diff --git a/api_docs/kbn_securitysolution_data_table.mdx b/api_docs/kbn_securitysolution_data_table.mdx new file mode 100644 index 0000000000000..3d942659e507e --- /dev/null +++ b/api_docs/kbn_securitysolution_data_table.mdx @@ -0,0 +1,42 @@ +--- +#### +#### This document is auto-generated and is meant to be viewed inside our experimental, new docs system. +#### Reach out in #docs-engineering for more info. +#### +id: kibKbnSecuritysolutionDataTablePluginApi +slug: /kibana-dev-docs/api/kbn-securitysolution-data-table +title: "@kbn/securitysolution-data-table" +image: https://source.unsplash.com/400x175/?github +description: API docs for the @kbn/securitysolution-data-table plugin +date: 2023-04-18 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-data-table'] +--- +import kbnSecuritysolutionDataTableObj from './kbn_securitysolution_data_table.devdocs.json'; + + + +Contact [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 95 | 0 | 72 | 7 | + +## Common + +### Objects + + +### Functions + + +### Interfaces + + +### Enums + + +### Consts, variables and types + + diff --git a/api_docs/kbn_securitysolution_ecs.mdx b/api_docs/kbn_securitysolution_ecs.mdx index 4da1d490dcf36..23f26f13400c5 100644 --- a/api_docs/kbn_securitysolution_ecs.mdx +++ b/api_docs/kbn_securitysolution_ecs.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-ecs title: "@kbn/securitysolution-ecs" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-ecs plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-ecs'] --- import kbnSecuritysolutionEcsObj from './kbn_securitysolution_ecs.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_es_utils.mdx b/api_docs/kbn_securitysolution_es_utils.mdx index dfd9ade19d258..ec272c689d3b4 100644 --- a/api_docs/kbn_securitysolution_es_utils.mdx +++ b/api_docs/kbn_securitysolution_es_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-es-utils title: "@kbn/securitysolution-es-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-es-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-es-utils'] --- import kbnSecuritysolutionEsUtilsObj from './kbn_securitysolution_es_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_exception_list_components.mdx b/api_docs/kbn_securitysolution_exception_list_components.mdx index bca96c1190521..42a51ba60af2c 100644 --- a/api_docs/kbn_securitysolution_exception_list_components.mdx +++ b/api_docs/kbn_securitysolution_exception_list_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-exception-list-components title: "@kbn/securitysolution-exception-list-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-exception-list-components plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-exception-list-components'] --- import kbnSecuritysolutionExceptionListComponentsObj from './kbn_securitysolution_exception_list_components.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_grouping.mdx b/api_docs/kbn_securitysolution_grouping.mdx index 8d644faa969f1..4f0072fd817a8 100644 --- a/api_docs/kbn_securitysolution_grouping.mdx +++ b/api_docs/kbn_securitysolution_grouping.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-grouping title: "@kbn/securitysolution-grouping" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-grouping plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-grouping'] --- import kbnSecuritysolutionGroupingObj from './kbn_securitysolution_grouping.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_hook_utils.mdx b/api_docs/kbn_securitysolution_hook_utils.mdx index 8134b68a73e7f..38f6f58e2a7b9 100644 --- a/api_docs/kbn_securitysolution_hook_utils.mdx +++ b/api_docs/kbn_securitysolution_hook_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-hook-utils title: "@kbn/securitysolution-hook-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-hook-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-hook-utils'] --- import kbnSecuritysolutionHookUtilsObj from './kbn_securitysolution_hook_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx index 305d45bf98a1b..8eda87547a660 100644 --- a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-alerting-types title: "@kbn/securitysolution-io-ts-alerting-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-alerting-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-alerting-types'] --- import kbnSecuritysolutionIoTsAlertingTypesObj from './kbn_securitysolution_io_ts_alerting_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_list_types.mdx b/api_docs/kbn_securitysolution_io_ts_list_types.mdx index a944e61b5df1f..a99d546082489 100644 --- a/api_docs/kbn_securitysolution_io_ts_list_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_list_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-list-types title: "@kbn/securitysolution-io-ts-list-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-list-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-list-types'] --- import kbnSecuritysolutionIoTsListTypesObj from './kbn_securitysolution_io_ts_list_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_types.mdx b/api_docs/kbn_securitysolution_io_ts_types.mdx index 7214d1ebd9a97..c206469d9c81e 100644 --- a/api_docs/kbn_securitysolution_io_ts_types.mdx +++ b/api_docs/kbn_securitysolution_io_ts_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-types title: "@kbn/securitysolution-io-ts-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-types'] --- import kbnSecuritysolutionIoTsTypesObj from './kbn_securitysolution_io_ts_types.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_io_ts_utils.mdx b/api_docs/kbn_securitysolution_io_ts_utils.mdx index 18f2ff5e98267..2c92875e75bd7 100644 --- a/api_docs/kbn_securitysolution_io_ts_utils.mdx +++ b/api_docs/kbn_securitysolution_io_ts_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-io-ts-utils title: "@kbn/securitysolution-io-ts-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-io-ts-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-io-ts-utils'] --- import kbnSecuritysolutionIoTsUtilsObj from './kbn_securitysolution_io_ts_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_api.mdx b/api_docs/kbn_securitysolution_list_api.mdx index 067bbcceaaeab..ae136149d07d6 100644 --- a/api_docs/kbn_securitysolution_list_api.mdx +++ b/api_docs/kbn_securitysolution_list_api.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-api title: "@kbn/securitysolution-list-api" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-api plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-api'] --- import kbnSecuritysolutionListApiObj from './kbn_securitysolution_list_api.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_constants.mdx b/api_docs/kbn_securitysolution_list_constants.mdx index 0265ad98e73ac..d60684245c382 100644 --- a/api_docs/kbn_securitysolution_list_constants.mdx +++ b/api_docs/kbn_securitysolution_list_constants.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-constants title: "@kbn/securitysolution-list-constants" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-constants plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-constants'] --- import kbnSecuritysolutionListConstantsObj from './kbn_securitysolution_list_constants.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_hooks.mdx b/api_docs/kbn_securitysolution_list_hooks.mdx index 2a0c12eddaca1..4b33f8a6abbd3 100644 --- a/api_docs/kbn_securitysolution_list_hooks.mdx +++ b/api_docs/kbn_securitysolution_list_hooks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-hooks title: "@kbn/securitysolution-list-hooks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-hooks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-hooks'] --- import kbnSecuritysolutionListHooksObj from './kbn_securitysolution_list_hooks.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_utils.devdocs.json b/api_docs/kbn_securitysolution_list_utils.devdocs.json index ae9d7b8f6fc72..af3d575d05602 100644 --- a/api_docs/kbn_securitysolution_list_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_list_utils.devdocs.json @@ -196,6 +196,53 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/securitysolution-list-utils", + "id": "def-common.fieldSupportsMatches", + "type": "Function", + "tags": [], + "label": "fieldSupportsMatches", + "description": [], + "signature": [ + "(field: ", + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.DataViewFieldBase", + "text": "DataViewFieldBase" + }, + ") => boolean | undefined" + ], + "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-list-utils", + "id": "def-common.fieldSupportsMatches.$1", + "type": "Object", + "tags": [], + "label": "field", + "description": [], + "signature": [ + { + "pluginId": "@kbn/es-query", + "scope": "common", + "docId": "kibKbnEsQueryPluginApi", + "section": "def-common.DataViewFieldBase", + "text": "DataViewFieldBase" + } + ], + "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/securitysolution-list-utils", "id": "def-common.filterExceptionItems", @@ -2330,6 +2377,39 @@ ], "returnComment": [], "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/securitysolution-list-utils", + "id": "def-common.isKibanaStringType", + "type": "Function", + "tags": [], + "label": "isKibanaStringType", + "description": [], + "signature": [ + "(type: string) => boolean" + ], + "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/securitysolution-list-utils", + "id": "def-common.isKibanaStringType.$1", + "type": "string", + "tags": [], + "label": "type", + "description": [], + "signature": [ + "string" + ], + "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false } ], "interfaces": [ @@ -2743,11 +2823,11 @@ "description": [], "signature": [ { - "pluginId": "@kbn/es-query", + "pluginId": "@kbn/securitysolution-list-utils", "scope": "common", - "docId": "kibKbnEsQueryPluginApi", - "section": "def-common.DataViewFieldBase", - "text": "DataViewFieldBase" + "docId": "kibKbnSecuritysolutionListUtilsPluginApi", + "section": "def-common.DataViewField", + "text": "DataViewField" }, " | undefined" ], diff --git a/api_docs/kbn_securitysolution_list_utils.mdx b/api_docs/kbn_securitysolution_list_utils.mdx index c159299bef59b..91b702277c921 100644 --- a/api_docs/kbn_securitysolution_list_utils.mdx +++ b/api_docs/kbn_securitysolution_list_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-list-utils title: "@kbn/securitysolution-list-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-list-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-utils'] --- import kbnSecuritysolutionListUtilsObj from './kbn_securitysolution_list_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-solution-platform](https://github.com/orgs/elastic/te | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 206 | 10 | 159 | 0 | +| 210 | 10 | 163 | 0 | ## Common diff --git a/api_docs/kbn_securitysolution_rules.mdx b/api_docs/kbn_securitysolution_rules.mdx index 4295a6b8e98f5..27ce921681830 100644 --- a/api_docs/kbn_securitysolution_rules.mdx +++ b/api_docs/kbn_securitysolution_rules.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-rules title: "@kbn/securitysolution-rules" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-rules plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-rules'] --- import kbnSecuritysolutionRulesObj from './kbn_securitysolution_rules.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_t_grid.mdx b/api_docs/kbn_securitysolution_t_grid.mdx index 5058f388a81a6..a474045f5c74e 100644 --- a/api_docs/kbn_securitysolution_t_grid.mdx +++ b/api_docs/kbn_securitysolution_t_grid.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-t-grid title: "@kbn/securitysolution-t-grid" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-t-grid plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-t-grid'] --- import kbnSecuritysolutionTGridObj from './kbn_securitysolution_t_grid.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_utils.mdx b/api_docs/kbn_securitysolution_utils.mdx index c2fb376196316..d2603e518f764 100644 --- a/api_docs/kbn_securitysolution_utils.mdx +++ b/api_docs/kbn_securitysolution_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-securitysolution-utils title: "@kbn/securitysolution-utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/securitysolution-utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-utils'] --- import kbnSecuritysolutionUtilsObj from './kbn_securitysolution_utils.devdocs.json'; diff --git a/api_docs/kbn_server_http_tools.mdx b/api_docs/kbn_server_http_tools.mdx index 5f9e16b35a0b0..8094dc6ed8a35 100644 --- a/api_docs/kbn_server_http_tools.mdx +++ b/api_docs/kbn_server_http_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-http-tools title: "@kbn/server-http-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/server-http-tools plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-http-tools'] --- import kbnServerHttpToolsObj from './kbn_server_http_tools.devdocs.json'; diff --git a/api_docs/kbn_server_route_repository.mdx b/api_docs/kbn_server_route_repository.mdx index e5a29b88393c7..8f06616ffeafa 100644 --- a/api_docs/kbn_server_route_repository.mdx +++ b/api_docs/kbn_server_route_repository.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-server-route-repository title: "@kbn/server-route-repository" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/server-route-repository plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-route-repository'] --- import kbnServerRouteRepositoryObj from './kbn_server_route_repository.devdocs.json'; diff --git a/api_docs/kbn_shared_svg.mdx b/api_docs/kbn_shared_svg.mdx index 81ed2ba91169a..625af47e20b91 100644 --- a/api_docs/kbn_shared_svg.mdx +++ b/api_docs/kbn_shared_svg.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-svg title: "@kbn/shared-svg" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-svg plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-svg'] --- import kbnSharedSvgObj from './kbn_shared_svg.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_avatar_solution.mdx b/api_docs/kbn_shared_ux_avatar_solution.mdx index 9acdb9f864c28..f3c543936022f 100644 --- a/api_docs/kbn_shared_ux_avatar_solution.mdx +++ b/api_docs/kbn_shared_ux_avatar_solution.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-solution title: "@kbn/shared-ux-avatar-solution" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-avatar-solution plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-solution'] --- import kbnSharedUxAvatarSolutionObj from './kbn_shared_ux_avatar_solution.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx b/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx index 1803518bc0b1a..c7f660fc5d422 100644 --- a/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx +++ b/api_docs/kbn_shared_ux_avatar_user_profile_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-avatar-user-profile-components title: "@kbn/shared-ux-avatar-user-profile-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-avatar-user-profile-components plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-avatar-user-profile-components'] --- import kbnSharedUxAvatarUserProfileComponentsObj from './kbn_shared_ux_avatar_user_profile_components.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx index 337789c7a85ea..3722ab19af545 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen.mdx +++ b/api_docs/kbn_shared_ux_button_exit_full_screen.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen title: "@kbn/shared-ux-button-exit-full-screen" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-exit-full-screen plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen'] --- import kbnSharedUxButtonExitFullScreenObj from './kbn_shared_ux_button_exit_full_screen.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx index 0f999ba813602..23d88b9bb7bc2 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx +++ b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen-mocks title: "@kbn/shared-ux-button-exit-full-screen-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-exit-full-screen-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen-mocks'] --- import kbnSharedUxButtonExitFullScreenMocksObj from './kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_toolbar.mdx b/api_docs/kbn_shared_ux_button_toolbar.mdx index 128f8eb57bec7..65a874e30c4ba 100644 --- a/api_docs/kbn_shared_ux_button_toolbar.mdx +++ b/api_docs/kbn_shared_ux_button_toolbar.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-toolbar title: "@kbn/shared-ux-button-toolbar" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-toolbar plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-toolbar'] --- import kbnSharedUxButtonToolbarObj from './kbn_shared_ux_button_toolbar.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_card_no_data.mdx b/api_docs/kbn_shared_ux_card_no_data.mdx index 86cbb14469218..6c6bd673810c8 100644 --- a/api_docs/kbn_shared_ux_card_no_data.mdx +++ b/api_docs/kbn_shared_ux_card_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data title: "@kbn/shared-ux-card-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-card-no-data plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data'] --- import kbnSharedUxCardNoDataObj from './kbn_shared_ux_card_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx index 28915aa8c5f81..e223fdfdebcb9 100644 --- a/api_docs/kbn_shared_ux_card_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_card_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-card-no-data-mocks title: "@kbn/shared-ux-card-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-card-no-data-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-card-no-data-mocks'] --- import kbnSharedUxCardNoDataMocksObj from './kbn_shared_ux_card_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_context.mdx b/api_docs/kbn_shared_ux_file_context.mdx index 2fc3892bc621d..76f3f5836a837 100644 --- a/api_docs/kbn_shared_ux_file_context.mdx +++ b/api_docs/kbn_shared_ux_file_context.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-context title: "@kbn/shared-ux-file-context" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-context plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-context'] --- import kbnSharedUxFileContextObj from './kbn_shared_ux_file_context.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_image.mdx b/api_docs/kbn_shared_ux_file_image.mdx index 0bff8c7e9ddcd..2309a89ee51ae 100644 --- a/api_docs/kbn_shared_ux_file_image.mdx +++ b/api_docs/kbn_shared_ux_file_image.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image title: "@kbn/shared-ux-file-image" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-image plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image'] --- import kbnSharedUxFileImageObj from './kbn_shared_ux_file_image.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_image_mocks.mdx b/api_docs/kbn_shared_ux_file_image_mocks.mdx index ae1ef0d013b1a..7d504a9b90abe 100644 --- a/api_docs/kbn_shared_ux_file_image_mocks.mdx +++ b/api_docs/kbn_shared_ux_file_image_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-image-mocks title: "@kbn/shared-ux-file-image-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-image-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-image-mocks'] --- import kbnSharedUxFileImageMocksObj from './kbn_shared_ux_file_image_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_mocks.mdx b/api_docs/kbn_shared_ux_file_mocks.mdx index 6e7e02f10221d..c1c7b2bd635ef 100644 --- a/api_docs/kbn_shared_ux_file_mocks.mdx +++ b/api_docs/kbn_shared_ux_file_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-mocks title: "@kbn/shared-ux-file-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-mocks'] --- import kbnSharedUxFileMocksObj from './kbn_shared_ux_file_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_picker.mdx b/api_docs/kbn_shared_ux_file_picker.mdx index e8137c8543d86..bc72a83b4631a 100644 --- a/api_docs/kbn_shared_ux_file_picker.mdx +++ b/api_docs/kbn_shared_ux_file_picker.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-picker title: "@kbn/shared-ux-file-picker" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-picker plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-picker'] --- import kbnSharedUxFilePickerObj from './kbn_shared_ux_file_picker.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_types.mdx b/api_docs/kbn_shared_ux_file_types.mdx index 353905d5b025e..7bfade800a5b0 100644 --- a/api_docs/kbn_shared_ux_file_types.mdx +++ b/api_docs/kbn_shared_ux_file_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-types title: "@kbn/shared-ux-file-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-types'] --- import kbnSharedUxFileTypesObj from './kbn_shared_ux_file_types.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_upload.mdx b/api_docs/kbn_shared_ux_file_upload.mdx index 86188abb2c6dd..d789138a1f3c4 100644 --- a/api_docs/kbn_shared_ux_file_upload.mdx +++ b/api_docs/kbn_shared_ux_file_upload.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-upload title: "@kbn/shared-ux-file-upload" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-upload plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-upload'] --- import kbnSharedUxFileUploadObj from './kbn_shared_ux_file_upload.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_file_util.mdx b/api_docs/kbn_shared_ux_file_util.mdx index 2475d66df4671..cd2005cbe2f6c 100644 --- a/api_docs/kbn_shared_ux_file_util.mdx +++ b/api_docs/kbn_shared_ux_file_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-file-util title: "@kbn/shared-ux-file-util" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-file-util plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-file-util'] --- import kbnSharedUxFileUtilObj from './kbn_shared_ux_file_util.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_link_redirect_app.mdx b/api_docs/kbn_shared_ux_link_redirect_app.mdx index 670e2c073147c..453e3d551b616 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app.mdx +++ b/api_docs/kbn_shared_ux_link_redirect_app.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app title: "@kbn/shared-ux-link-redirect-app" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-link-redirect-app plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app'] --- import kbnSharedUxLinkRedirectAppObj from './kbn_shared_ux_link_redirect_app.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx index 37415dc053cee..840098b088fb6 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx +++ b/api_docs/kbn_shared_ux_link_redirect_app_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-link-redirect-app-mocks title: "@kbn/shared-ux-link-redirect-app-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-link-redirect-app-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-link-redirect-app-mocks'] --- import kbnSharedUxLinkRedirectAppMocksObj from './kbn_shared_ux_link_redirect_app_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_markdown.mdx b/api_docs/kbn_shared_ux_markdown.mdx index 05b55ef66f1f2..6168d5ff59b0c 100644 --- a/api_docs/kbn_shared_ux_markdown.mdx +++ b/api_docs/kbn_shared_ux_markdown.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown title: "@kbn/shared-ux-markdown" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-markdown plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown'] --- import kbnSharedUxMarkdownObj from './kbn_shared_ux_markdown.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_markdown_mocks.mdx b/api_docs/kbn_shared_ux_markdown_mocks.mdx index 678a5440d0ff3..0b2c65a94ccc3 100644 --- a/api_docs/kbn_shared_ux_markdown_mocks.mdx +++ b/api_docs/kbn_shared_ux_markdown_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-markdown-mocks title: "@kbn/shared-ux-markdown-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-markdown-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-markdown-mocks'] --- import kbnSharedUxMarkdownMocksObj from './kbn_shared_ux_markdown_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx index 0faff1e5a669f..733df6b02ef93 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_analytics_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data title: "@kbn/shared-ux-page-analytics-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-analytics-no-data plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data'] --- import kbnSharedUxPageAnalyticsNoDataObj from './kbn_shared_ux_page_analytics_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx index 65539c84d6453..0826251e7e69b 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-analytics-no-data-mocks title: "@kbn/shared-ux-page-analytics-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-analytics-no-data-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-analytics-no-data-mocks'] --- import kbnSharedUxPageAnalyticsNoDataMocksObj from './kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx index a2c1145c34add..8d57ca813a7bb 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data title: "@kbn/shared-ux-page-kibana-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-no-data plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data'] --- import kbnSharedUxPageKibanaNoDataObj from './kbn_shared_ux_page_kibana_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx index f918c7a8f48cc..4796a4dc64d56 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-no-data-mocks title: "@kbn/shared-ux-page-kibana-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-no-data-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-no-data-mocks'] --- import kbnSharedUxPageKibanaNoDataMocksObj from './kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_template.mdx b/api_docs/kbn_shared_ux_page_kibana_template.mdx index 417ecc5d9b4ff..e41913e16925f 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_template.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template title: "@kbn/shared-ux-page-kibana-template" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-template plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template'] --- import kbnSharedUxPageKibanaTemplateObj from './kbn_shared_ux_page_kibana_template.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx index d7fffbf47deae..3104c250cd274 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_kibana_template_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-kibana-template-mocks title: "@kbn/shared-ux-page-kibana-template-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-kibana-template-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template-mocks'] --- import kbnSharedUxPageKibanaTemplateMocksObj from './kbn_shared_ux_page_kibana_template_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data.mdx b/api_docs/kbn_shared_ux_page_no_data.mdx index 506efe0ed5ee9..c4f55f5c20806 100644 --- a/api_docs/kbn_shared_ux_page_no_data.mdx +++ b/api_docs/kbn_shared_ux_page_no_data.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data title: "@kbn/shared-ux-page-no-data" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data'] --- import kbnSharedUxPageNoDataObj from './kbn_shared_ux_page_no_data.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_config.mdx b/api_docs/kbn_shared_ux_page_no_data_config.mdx index 86338abfcdd3e..d167b1e958751 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config title: "@kbn/shared-ux-page-no-data-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config'] --- import kbnSharedUxPageNoDataConfigObj from './kbn_shared_ux_page_no_data_config.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx index 66bdf91cd2a75..f5de870c5b104 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_config_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-config-mocks title: "@kbn/shared-ux-page-no-data-config-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-config-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-config-mocks'] --- import kbnSharedUxPageNoDataConfigMocksObj from './kbn_shared_ux_page_no_data_config_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx index 3d735c1a16bd4..7ec62a659a858 100644 --- a/api_docs/kbn_shared_ux_page_no_data_mocks.mdx +++ b/api_docs/kbn_shared_ux_page_no_data_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-no-data-mocks title: "@kbn/shared-ux-page-no-data-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-no-data-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-no-data-mocks'] --- import kbnSharedUxPageNoDataMocksObj from './kbn_shared_ux_page_no_data_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_page_solution_nav.mdx b/api_docs/kbn_shared_ux_page_solution_nav.mdx index 914abb7032b78..64c532fffed65 100644 --- a/api_docs/kbn_shared_ux_page_solution_nav.mdx +++ b/api_docs/kbn_shared_ux_page_solution_nav.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-page-solution-nav title: "@kbn/shared-ux-page-solution-nav" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-page-solution-nav plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-solution-nav'] --- import kbnSharedUxPageSolutionNavObj from './kbn_shared_ux_page_solution_nav.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx index a07be1ca9ca68..71813a99b74dc 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views.mdx +++ b/api_docs/kbn_shared_ux_prompt_no_data_views.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views title: "@kbn/shared-ux-prompt-no-data-views" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-no-data-views plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views'] --- import kbnSharedUxPromptNoDataViewsObj from './kbn_shared_ux_prompt_no_data_views.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx index b3f1df88bbae1..52ba22e84684f 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx +++ b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-no-data-views-mocks title: "@kbn/shared-ux-prompt-no-data-views-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-no-data-views-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-no-data-views-mocks'] --- import kbnSharedUxPromptNoDataViewsMocksObj from './kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_prompt_not_found.mdx b/api_docs/kbn_shared_ux_prompt_not_found.mdx index 9cdf29364f2e0..9f237bb6371dc 100644 --- a/api_docs/kbn_shared_ux_prompt_not_found.mdx +++ b/api_docs/kbn_shared_ux_prompt_not_found.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-prompt-not-found title: "@kbn/shared-ux-prompt-not-found" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-prompt-not-found plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-prompt-not-found'] --- import kbnSharedUxPromptNotFoundObj from './kbn_shared_ux_prompt_not_found.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_router.mdx b/api_docs/kbn_shared_ux_router.mdx index a4a5cc5aa4d1c..ea4b2719da63f 100644 --- a/api_docs/kbn_shared_ux_router.mdx +++ b/api_docs/kbn_shared_ux_router.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router title: "@kbn/shared-ux-router" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-router plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router'] --- import kbnSharedUxRouterObj from './kbn_shared_ux_router.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_router_mocks.mdx b/api_docs/kbn_shared_ux_router_mocks.mdx index 81665e6d0129a..29ff909748e4b 100644 --- a/api_docs/kbn_shared_ux_router_mocks.mdx +++ b/api_docs/kbn_shared_ux_router_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-router-mocks title: "@kbn/shared-ux-router-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-router-mocks plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-router-mocks'] --- import kbnSharedUxRouterMocksObj from './kbn_shared_ux_router_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_storybook_config.mdx b/api_docs/kbn_shared_ux_storybook_config.mdx index 5b68def8ce126..2827c6086dc04 100644 --- a/api_docs/kbn_shared_ux_storybook_config.mdx +++ b/api_docs/kbn_shared_ux_storybook_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-config title: "@kbn/shared-ux-storybook-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-storybook-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-config'] --- import kbnSharedUxStorybookConfigObj from './kbn_shared_ux_storybook_config.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_storybook_mock.mdx b/api_docs/kbn_shared_ux_storybook_mock.mdx index 34dd3646204a2..cca631a87cd4d 100644 --- a/api_docs/kbn_shared_ux_storybook_mock.mdx +++ b/api_docs/kbn_shared_ux_storybook_mock.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-storybook-mock title: "@kbn/shared-ux-storybook-mock" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-storybook-mock plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-storybook-mock'] --- import kbnSharedUxStorybookMockObj from './kbn_shared_ux_storybook_mock.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_utility.mdx b/api_docs/kbn_shared_ux_utility.mdx index 55a1a66677beb..fd49eeb3bece1 100644 --- a/api_docs/kbn_shared_ux_utility.mdx +++ b/api_docs/kbn_shared_ux_utility.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-utility title: "@kbn/shared-ux-utility" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-utility plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-utility'] --- import kbnSharedUxUtilityObj from './kbn_shared_ux_utility.devdocs.json'; diff --git a/api_docs/kbn_slo_schema.mdx b/api_docs/kbn_slo_schema.mdx index ef6034b3e4898..354903e690a21 100644 --- a/api_docs/kbn_slo_schema.mdx +++ b/api_docs/kbn_slo_schema.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-slo-schema title: "@kbn/slo-schema" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/slo-schema plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/slo-schema'] --- import kbnSloSchemaObj from './kbn_slo_schema.devdocs.json'; diff --git a/api_docs/kbn_some_dev_log.mdx b/api_docs/kbn_some_dev_log.mdx index a57ebb54382b3..d66dea91b8a6f 100644 --- a/api_docs/kbn_some_dev_log.mdx +++ b/api_docs/kbn_some_dev_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-some-dev-log title: "@kbn/some-dev-log" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/some-dev-log plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/some-dev-log'] --- import kbnSomeDevLogObj from './kbn_some_dev_log.devdocs.json'; diff --git a/api_docs/kbn_std.mdx b/api_docs/kbn_std.mdx index 88c0dcef6e143..4fccf81370810 100644 --- a/api_docs/kbn_std.mdx +++ b/api_docs/kbn_std.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-std title: "@kbn/std" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/std plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/std'] --- import kbnStdObj from './kbn_std.devdocs.json'; diff --git a/api_docs/kbn_stdio_dev_helpers.mdx b/api_docs/kbn_stdio_dev_helpers.mdx index 6d02d5e19576b..fb3bbf806a401 100644 --- a/api_docs/kbn_stdio_dev_helpers.mdx +++ b/api_docs/kbn_stdio_dev_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-stdio-dev-helpers title: "@kbn/stdio-dev-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/stdio-dev-helpers plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/stdio-dev-helpers'] --- import kbnStdioDevHelpersObj from './kbn_stdio_dev_helpers.devdocs.json'; diff --git a/api_docs/kbn_storybook.mdx b/api_docs/kbn_storybook.mdx index 5069611abf3ca..3de038e136336 100644 --- a/api_docs/kbn_storybook.mdx +++ b/api_docs/kbn_storybook.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-storybook title: "@kbn/storybook" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/storybook plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/storybook'] --- import kbnStorybookObj from './kbn_storybook.devdocs.json'; diff --git a/api_docs/kbn_telemetry_tools.mdx b/api_docs/kbn_telemetry_tools.mdx index 5728a2d8707a8..cfcafe77f4a48 100644 --- a/api_docs/kbn_telemetry_tools.mdx +++ b/api_docs/kbn_telemetry_tools.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-telemetry-tools title: "@kbn/telemetry-tools" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/telemetry-tools plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/telemetry-tools'] --- import kbnTelemetryToolsObj from './kbn_telemetry_tools.devdocs.json'; diff --git a/api_docs/kbn_test.mdx b/api_docs/kbn_test.mdx index 89a5e8f70dd04..a7e70f981fba1 100644 --- a/api_docs/kbn_test.mdx +++ b/api_docs/kbn_test.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test title: "@kbn/test" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test'] --- import kbnTestObj from './kbn_test.devdocs.json'; diff --git a/api_docs/kbn_test_jest_helpers.mdx b/api_docs/kbn_test_jest_helpers.mdx index 0cec0fee44239..e90b770c49a23 100644 --- a/api_docs/kbn_test_jest_helpers.mdx +++ b/api_docs/kbn_test_jest_helpers.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-jest-helpers title: "@kbn/test-jest-helpers" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-jest-helpers plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-jest-helpers'] --- import kbnTestJestHelpersObj from './kbn_test_jest_helpers.devdocs.json'; diff --git a/api_docs/kbn_test_subj_selector.mdx b/api_docs/kbn_test_subj_selector.mdx index 516aa3e891eea..ea78c22a4920e 100644 --- a/api_docs/kbn_test_subj_selector.mdx +++ b/api_docs/kbn_test_subj_selector.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-test-subj-selector title: "@kbn/test-subj-selector" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/test-subj-selector plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-subj-selector'] --- import kbnTestSubjSelectorObj from './kbn_test_subj_selector.devdocs.json'; diff --git a/api_docs/kbn_tooling_log.mdx b/api_docs/kbn_tooling_log.mdx index 743f54114d259..33e8ca0f4e73e 100644 --- a/api_docs/kbn_tooling_log.mdx +++ b/api_docs/kbn_tooling_log.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-tooling-log title: "@kbn/tooling-log" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/tooling-log plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/tooling-log'] --- import kbnToolingLogObj from './kbn_tooling_log.devdocs.json'; diff --git a/api_docs/kbn_ts_projects.mdx b/api_docs/kbn_ts_projects.mdx index 1c0bf5f8590fe..4ef9e429af459 100644 --- a/api_docs/kbn_ts_projects.mdx +++ b/api_docs/kbn_ts_projects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ts-projects title: "@kbn/ts-projects" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ts-projects plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ts-projects'] --- import kbnTsProjectsObj from './kbn_ts_projects.devdocs.json'; diff --git a/api_docs/kbn_typed_react_router_config.mdx b/api_docs/kbn_typed_react_router_config.mdx index a23767813b8a3..3631c441c34ee 100644 --- a/api_docs/kbn_typed_react_router_config.mdx +++ b/api_docs/kbn_typed_react_router_config.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-typed-react-router-config title: "@kbn/typed-react-router-config" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/typed-react-router-config plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/typed-react-router-config'] --- import kbnTypedReactRouterConfigObj from './kbn_typed_react_router_config.devdocs.json'; diff --git a/api_docs/kbn_ui_actions_browser.mdx b/api_docs/kbn_ui_actions_browser.mdx index e9b447b5e6359..2fae9c1d82668 100644 --- a/api_docs/kbn_ui_actions_browser.mdx +++ b/api_docs/kbn_ui_actions_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-actions-browser title: "@kbn/ui-actions-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-actions-browser plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-actions-browser'] --- import kbnUiActionsBrowserObj from './kbn_ui_actions_browser.devdocs.json'; diff --git a/api_docs/kbn_ui_shared_deps_src.mdx b/api_docs/kbn_ui_shared_deps_src.mdx index c7de73cebc15a..8191484ba5834 100644 --- a/api_docs/kbn_ui_shared_deps_src.mdx +++ b/api_docs/kbn_ui_shared_deps_src.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-shared-deps-src title: "@kbn/ui-shared-deps-src" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-shared-deps-src plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-shared-deps-src'] --- import kbnUiSharedDepsSrcObj from './kbn_ui_shared_deps_src.devdocs.json'; diff --git a/api_docs/kbn_ui_theme.mdx b/api_docs/kbn_ui_theme.mdx index 9a57f23f573fa..afa5621c24dd0 100644 --- a/api_docs/kbn_ui_theme.mdx +++ b/api_docs/kbn_ui_theme.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ui-theme title: "@kbn/ui-theme" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/ui-theme plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-theme'] --- import kbnUiThemeObj from './kbn_ui_theme.devdocs.json'; diff --git a/api_docs/kbn_user_profile_components.mdx b/api_docs/kbn_user_profile_components.mdx index 5865bb2ea2433..186a8f826428d 100644 --- a/api_docs/kbn_user_profile_components.mdx +++ b/api_docs/kbn_user_profile_components.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-user-profile-components title: "@kbn/user-profile-components" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/user-profile-components plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/user-profile-components'] --- import kbnUserProfileComponentsObj from './kbn_user_profile_components.devdocs.json'; diff --git a/api_docs/kbn_utility_types.mdx b/api_docs/kbn_utility_types.mdx index 274f9cef4f8c2..d1fc0f672252e 100644 --- a/api_docs/kbn_utility_types.mdx +++ b/api_docs/kbn_utility_types.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types title: "@kbn/utility-types" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utility-types plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types'] --- import kbnUtilityTypesObj from './kbn_utility_types.devdocs.json'; diff --git a/api_docs/kbn_utility_types_jest.mdx b/api_docs/kbn_utility_types_jest.mdx index b53b6f99180fa..a78c9ff36b9c8 100644 --- a/api_docs/kbn_utility_types_jest.mdx +++ b/api_docs/kbn_utility_types_jest.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utility-types-jest title: "@kbn/utility-types-jest" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utility-types-jest plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utility-types-jest'] --- import kbnUtilityTypesJestObj from './kbn_utility_types_jest.devdocs.json'; diff --git a/api_docs/kbn_utils.mdx b/api_docs/kbn_utils.mdx index 02c0856dcf2ca..ffdbc677b4d20 100644 --- a/api_docs/kbn_utils.mdx +++ b/api_docs/kbn_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-utils title: "@kbn/utils" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/utils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utils'] --- import kbnUtilsObj from './kbn_utils.devdocs.json'; diff --git a/api_docs/kbn_yarn_lock_validator.mdx b/api_docs/kbn_yarn_lock_validator.mdx index 87fe3074687f0..afbc6e1514ece 100644 --- a/api_docs/kbn_yarn_lock_validator.mdx +++ b/api_docs/kbn_yarn_lock_validator.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-yarn-lock-validator title: "@kbn/yarn-lock-validator" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/yarn-lock-validator plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/yarn-lock-validator'] --- import kbnYarnLockValidatorObj from './kbn_yarn_lock_validator.devdocs.json'; diff --git a/api_docs/kibana_overview.mdx b/api_docs/kibana_overview.mdx index 627620b1d180e..4a14e097b5a6e 100644 --- a/api_docs/kibana_overview.mdx +++ b/api_docs/kibana_overview.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaOverview title: "kibanaOverview" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaOverview plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaOverview'] --- import kibanaOverviewObj from './kibana_overview.devdocs.json'; diff --git a/api_docs/kibana_react.mdx b/api_docs/kibana_react.mdx index 351272c090c85..5a580fea57c7c 100644 --- a/api_docs/kibana_react.mdx +++ b/api_docs/kibana_react.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaReact title: "kibanaReact" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaReact plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaReact'] --- import kibanaReactObj from './kibana_react.devdocs.json'; diff --git a/api_docs/kibana_utils.mdx b/api_docs/kibana_utils.mdx index 297bb4a0753b5..9694f7d515bb3 100644 --- a/api_docs/kibana_utils.mdx +++ b/api_docs/kibana_utils.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kibanaUtils title: "kibanaUtils" image: https://source.unsplash.com/400x175/?github description: API docs for the kibanaUtils plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaUtils'] --- import kibanaUtilsObj from './kibana_utils.devdocs.json'; diff --git a/api_docs/kubernetes_security.mdx b/api_docs/kubernetes_security.mdx index 9d881e0618bfe..76c162d42d53a 100644 --- a/api_docs/kubernetes_security.mdx +++ b/api_docs/kubernetes_security.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kubernetesSecurity title: "kubernetesSecurity" image: https://source.unsplash.com/400x175/?github description: API docs for the kubernetesSecurity plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kubernetesSecurity'] --- import kubernetesSecurityObj from './kubernetes_security.devdocs.json'; diff --git a/api_docs/lens.mdx b/api_docs/lens.mdx index 7f313c4772135..5377268b2dc32 100644 --- a/api_docs/lens.mdx +++ b/api_docs/lens.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lens title: "lens" image: https://source.unsplash.com/400x175/?github description: API docs for the lens plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lens'] --- import lensObj from './lens.devdocs.json'; diff --git a/api_docs/license_api_guard.mdx b/api_docs/license_api_guard.mdx index 5d8be76748cc5..7fe813ac1ed82 100644 --- a/api_docs/license_api_guard.mdx +++ b/api_docs/license_api_guard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licenseApiGuard title: "licenseApiGuard" image: https://source.unsplash.com/400x175/?github description: API docs for the licenseApiGuard plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseApiGuard'] --- import licenseApiGuardObj from './license_api_guard.devdocs.json'; diff --git a/api_docs/license_management.mdx b/api_docs/license_management.mdx index 305d211d5d5e7..5b6307ca22c86 100644 --- a/api_docs/license_management.mdx +++ b/api_docs/license_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licenseManagement title: "licenseManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the licenseManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseManagement'] --- import licenseManagementObj from './license_management.devdocs.json'; diff --git a/api_docs/licensing.mdx b/api_docs/licensing.mdx index 1eeafd0f63236..98bf9c1fa8ae2 100644 --- a/api_docs/licensing.mdx +++ b/api_docs/licensing.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licensing title: "licensing" image: https://source.unsplash.com/400x175/?github description: API docs for the licensing plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licensing'] --- import licensingObj from './licensing.devdocs.json'; diff --git a/api_docs/lists.mdx b/api_docs/lists.mdx index e35521bdcd952..017be96350ac0 100644 --- a/api_docs/lists.mdx +++ b/api_docs/lists.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lists title: "lists" image: https://source.unsplash.com/400x175/?github description: API docs for the lists plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lists'] --- import listsObj from './lists.devdocs.json'; diff --git a/api_docs/management.mdx b/api_docs/management.mdx index 6b8c5b2eb16cc..f95d5c3108003 100644 --- a/api_docs/management.mdx +++ b/api_docs/management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/management title: "management" image: https://source.unsplash.com/400x175/?github description: API docs for the management plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'management'] --- import managementObj from './management.devdocs.json'; diff --git a/api_docs/maps.mdx b/api_docs/maps.mdx index 2fb6cc2c4bea1..4162686593d2e 100644 --- a/api_docs/maps.mdx +++ b/api_docs/maps.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/maps title: "maps" image: https://source.unsplash.com/400x175/?github description: API docs for the maps plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'maps'] --- import mapsObj from './maps.devdocs.json'; diff --git a/api_docs/maps_ems.mdx b/api_docs/maps_ems.mdx index eac12a4fbba79..058893cf79f57 100644 --- a/api_docs/maps_ems.mdx +++ b/api_docs/maps_ems.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/mapsEms title: "mapsEms" image: https://source.unsplash.com/400x175/?github description: API docs for the mapsEms plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mapsEms'] --- import mapsEmsObj from './maps_ems.devdocs.json'; diff --git a/api_docs/ml.mdx b/api_docs/ml.mdx index e1bad7698a82e..f87cd86d7c650 100644 --- a/api_docs/ml.mdx +++ b/api_docs/ml.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ml title: "ml" image: https://source.unsplash.com/400x175/?github description: API docs for the ml plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ml'] --- import mlObj from './ml.devdocs.json'; diff --git a/api_docs/monitoring.mdx b/api_docs/monitoring.mdx index 79cb0cdd61755..66f5f745e831d 100644 --- a/api_docs/monitoring.mdx +++ b/api_docs/monitoring.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoring title: "monitoring" image: https://source.unsplash.com/400x175/?github description: API docs for the monitoring plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoring'] --- import monitoringObj from './monitoring.devdocs.json'; diff --git a/api_docs/monitoring_collection.mdx b/api_docs/monitoring_collection.mdx index 3d7dd2a3d12f2..099410cb470cd 100644 --- a/api_docs/monitoring_collection.mdx +++ b/api_docs/monitoring_collection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/monitoringCollection title: "monitoringCollection" image: https://source.unsplash.com/400x175/?github description: API docs for the monitoringCollection plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoringCollection'] --- import monitoringCollectionObj from './monitoring_collection.devdocs.json'; diff --git a/api_docs/navigation.mdx b/api_docs/navigation.mdx index a0c0d43320345..bbabd06919df1 100644 --- a/api_docs/navigation.mdx +++ b/api_docs/navigation.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/navigation title: "navigation" image: https://source.unsplash.com/400x175/?github description: API docs for the navigation plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'navigation'] --- import navigationObj from './navigation.devdocs.json'; diff --git a/api_docs/newsfeed.mdx b/api_docs/newsfeed.mdx index 12c058b6bf2c4..16aea8ad4d480 100644 --- a/api_docs/newsfeed.mdx +++ b/api_docs/newsfeed.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/newsfeed title: "newsfeed" image: https://source.unsplash.com/400x175/?github description: API docs for the newsfeed plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'newsfeed'] --- import newsfeedObj from './newsfeed.devdocs.json'; diff --git a/api_docs/notifications.mdx b/api_docs/notifications.mdx index 46e736baef0d8..2b804922debe0 100644 --- a/api_docs/notifications.mdx +++ b/api_docs/notifications.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/notifications title: "notifications" image: https://source.unsplash.com/400x175/?github description: API docs for the notifications plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'notifications'] --- import notificationsObj from './notifications.devdocs.json'; diff --git a/api_docs/observability.devdocs.json b/api_docs/observability.devdocs.json index 4e6eee1fde796..44e312e71c6d6 100644 --- a/api_docs/observability.devdocs.json +++ b/api_docs/observability.devdocs.json @@ -4389,7 +4389,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - "[]; has: (id: string) => boolean; register: (objectType: ", + "[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -4397,7 +4397,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - ") => void; }" + ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/observability/public/plugin.ts", "deprecated": false, @@ -4626,7 +4626,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">[]; has: (id: string) => boolean; register: (objectType: ", + ">[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -4642,7 +4642,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/observability/public/plugin.ts", "deprecated": false, diff --git a/api_docs/observability.mdx b/api_docs/observability.mdx index c3c443d00182e..f9e097a2564a2 100644 --- a/api_docs/observability.mdx +++ b/api_docs/observability.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observability title: "observability" image: https://source.unsplash.com/400x175/?github description: API docs for the observability plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observability'] --- import observabilityObj from './observability.devdocs.json'; diff --git a/api_docs/observability_shared.mdx b/api_docs/observability_shared.mdx index 14cb7c15bc456..d5d70399bfd0f 100644 --- a/api_docs/observability_shared.mdx +++ b/api_docs/observability_shared.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/observabilityShared title: "observabilityShared" image: https://source.unsplash.com/400x175/?github description: API docs for the observabilityShared plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observabilityShared'] --- import observabilitySharedObj from './observability_shared.devdocs.json'; diff --git a/api_docs/osquery.mdx b/api_docs/osquery.mdx index 20f4e09551e85..11f7de7c24d37 100644 --- a/api_docs/osquery.mdx +++ b/api_docs/osquery.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/osquery title: "osquery" image: https://source.unsplash.com/400x175/?github description: API docs for the osquery plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'osquery'] --- import osqueryObj from './osquery.devdocs.json'; diff --git a/api_docs/plugin_directory.mdx b/api_docs/plugin_directory.mdx index ed98c651524f0..c2992ea7066af 100644 --- a/api_docs/plugin_directory.mdx +++ b/api_docs/plugin_directory.mdx @@ -7,7 +7,7 @@ id: kibDevDocsPluginDirectory slug: /kibana-dev-docs/api-meta/plugin-api-directory title: Directory description: Directory of public APIs available through plugins or packages. -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -15,13 +15,13 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Count | Plugins or Packages with a
public API | Number of teams | |--------------|----------|------------------------| -| 593 | 489 | 38 | +| 595 | 491 | 37 | ### Public API health stats | API Count | Any Count | Missing comments | Missing exports | |--------------|----------|-----------------|--------| -| 68854 | 526 | 59477 | 1332 | +| 68983 | 526 | 59579 | 1338 | ## Plugin Directory @@ -29,7 +29,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] |--------------|----------------|-----------|--------------|----------|---------------|--------| | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 259 | 8 | 254 | 26 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 36 | 1 | 32 | 2 | -| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | AIOps plugin maintained by ML team. | 12 | 0 | 1 | 2 | +| | [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) | AIOps plugin maintained by ML team. | 37 | 0 | 22 | 0 | | | [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-ops) | - | 601 | 1 | 580 | 42 | | | [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) | The user interface for Elastic APM | 43 | 0 | 43 | 109 | | | [@elastic/infra-monitoring-ui](https://github.com/orgs/elastic/teams/infra-monitoring-ui) | Asset manager plugin for entity assets (inventory, topology, etc) | 3 | 0 | 3 | 0 | @@ -53,7 +53,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | crossClusterReplication | [@elastic/platform-deployment-management](https://github.com/orgs/elastic/teams/platform-deployment-management) | - | 0 | 0 | 0 | 0 | | customBranding | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | Enables customization of Kibana | 0 | 0 | 0 | 0 | | | [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) | Add custom data integrations so they can be displayed in the Fleet integrations app | 271 | 0 | 252 | 1 | -| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 188 | 0 | 179 | 13 | +| | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 190 | 0 | 181 | 14 | | | [@elastic/kibana-presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | - | 54 | 0 | 51 | 0 | | | [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/kibana-visualizations) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3271 | 119 | 2577 | 27 | | | [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin provides the ability to create data views via a modal flyout inside Kibana apps | 16 | 0 | 7 | 0 | @@ -381,7 +381,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 30 | 1 | 18 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 11 | 1 | 11 | 3 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 8 | 0 | 8 | 0 | -| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 24 | 0 | 3 | 0 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 25 | 0 | 4 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 32 | 1 | 16 | 0 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 18 | 1 | 17 | 3 | | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 6 | 0 | 6 | 0 | @@ -465,9 +465,11 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 73 | 0 | 65 | 0 | | | [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kibana-operations) | - | 13 | 2 | 8 | 0 | | | [@elastic/security-detections-response](https://github.com/orgs/elastic/teams/security-detections-response) | - | 102 | 0 | 99 | 0 | +| | [@elastic/appex-sharedux](https://github.com/orgs/elastic/teams/appex-sharedux) | - | 2 | 0 | 2 | 0 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 30 | 0 | 30 | 0 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 2 | 0 | 0 | 0 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 56 | 1 | 41 | 1 | +| | [@elastic/security-threat-hunting-investigations](https://github.com/orgs/elastic/teams/security-threat-hunting-investigations) | - | 95 | 0 | 72 | 7 | | | [@elastic/security-threat-hunting-explore](https://github.com/orgs/elastic/teams/security-threat-hunting-explore) | - | 341 | 1 | 337 | 32 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 68 | 0 | 62 | 1 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 104 | 0 | 93 | 1 | @@ -480,7 +482,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 67 | 0 | 64 | 0 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 35 | 0 | 23 | 0 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 60 | 0 | 47 | 0 | -| | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 206 | 10 | 159 | 0 | +| | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 210 | 10 | 163 | 0 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 26 | 0 | 23 | 0 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 120 | 0 | 116 | 0 | | | [@elastic/security-solution-platform](https://github.com/orgs/elastic/teams/security-solution-platform) | - | 31 | 2 | 29 | 0 | diff --git a/api_docs/presentation_util.mdx b/api_docs/presentation_util.mdx index 2a828e37087a3..a5e850da8b2cb 100644 --- a/api_docs/presentation_util.mdx +++ b/api_docs/presentation_util.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/presentationUtil title: "presentationUtil" image: https://source.unsplash.com/400x175/?github description: API docs for the presentationUtil plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationUtil'] --- import presentationUtilObj from './presentation_util.devdocs.json'; diff --git a/api_docs/profiling.mdx b/api_docs/profiling.mdx index 80f761d4a6863..532a14b3be1cb 100644 --- a/api_docs/profiling.mdx +++ b/api_docs/profiling.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/profiling title: "profiling" image: https://source.unsplash.com/400x175/?github description: API docs for the profiling plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'profiling'] --- import profilingObj from './profiling.devdocs.json'; diff --git a/api_docs/remote_clusters.mdx b/api_docs/remote_clusters.mdx index 6a511870ef745..7afb72b454a44 100644 --- a/api_docs/remote_clusters.mdx +++ b/api_docs/remote_clusters.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/remoteClusters title: "remoteClusters" image: https://source.unsplash.com/400x175/?github description: API docs for the remoteClusters plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'remoteClusters'] --- import remoteClustersObj from './remote_clusters.devdocs.json'; diff --git a/api_docs/reporting.mdx b/api_docs/reporting.mdx index efb8a608743fd..cb79cce43c521 100644 --- a/api_docs/reporting.mdx +++ b/api_docs/reporting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/reporting title: "reporting" image: https://source.unsplash.com/400x175/?github description: API docs for the reporting plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'reporting'] --- import reportingObj from './reporting.devdocs.json'; diff --git a/api_docs/rollup.mdx b/api_docs/rollup.mdx index c2e0a7751797a..465dff3eeb282 100644 --- a/api_docs/rollup.mdx +++ b/api_docs/rollup.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/rollup title: "rollup" image: https://source.unsplash.com/400x175/?github description: API docs for the rollup plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'rollup'] --- import rollupObj from './rollup.devdocs.json'; diff --git a/api_docs/rule_registry.mdx b/api_docs/rule_registry.mdx index 5fe3a3f049e16..0c3666ca0988c 100644 --- a/api_docs/rule_registry.mdx +++ b/api_docs/rule_registry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ruleRegistry title: "ruleRegistry" image: https://source.unsplash.com/400x175/?github description: API docs for the ruleRegistry plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ruleRegistry'] --- import ruleRegistryObj from './rule_registry.devdocs.json'; diff --git a/api_docs/runtime_fields.mdx b/api_docs/runtime_fields.mdx index 4efca35346ee4..d8d18ebab68ce 100644 --- a/api_docs/runtime_fields.mdx +++ b/api_docs/runtime_fields.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/runtimeFields title: "runtimeFields" image: https://source.unsplash.com/400x175/?github description: API docs for the runtimeFields plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'runtimeFields'] --- import runtimeFieldsObj from './runtime_fields.devdocs.json'; diff --git a/api_docs/saved_objects.mdx b/api_docs/saved_objects.mdx index e53f830e1c473..75f04d6d2a9ab 100644 --- a/api_docs/saved_objects.mdx +++ b/api_docs/saved_objects.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjects title: "savedObjects" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjects plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjects'] --- import savedObjectsObj from './saved_objects.devdocs.json'; diff --git a/api_docs/saved_objects_finder.devdocs.json b/api_docs/saved_objects_finder.devdocs.json index 08991612ff496..9ae6255f9aefe 100644 --- a/api_docs/saved_objects_finder.devdocs.json +++ b/api_docs/saved_objects_finder.devdocs.json @@ -789,7 +789,7 @@ "signature": [ "\"savedObjects:listingLimit\"" ], - "path": "src/plugins/saved_objects_finder/common/index.ts", + "path": "packages/kbn-saved-objects-settings/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false @@ -804,7 +804,7 @@ "signature": [ "\"savedObjects:perPage\"" ], - "path": "src/plugins/saved_objects_finder/common/index.ts", + "path": "packages/kbn-saved-objects-settings/index.ts", "deprecated": false, "trackAdoption": false, "initialIsOpen": false diff --git a/api_docs/saved_objects_finder.mdx b/api_docs/saved_objects_finder.mdx index d78ff6ee811c0..944092f2f1730 100644 --- a/api_docs/saved_objects_finder.mdx +++ b/api_docs/saved_objects_finder.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsFinder title: "savedObjectsFinder" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsFinder plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsFinder'] --- import savedObjectsFinderObj from './saved_objects_finder.devdocs.json'; diff --git a/api_docs/saved_objects_management.mdx b/api_docs/saved_objects_management.mdx index df93303e8d070..46da841238f33 100644 --- a/api_docs/saved_objects_management.mdx +++ b/api_docs/saved_objects_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsManagement title: "savedObjectsManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsManagement plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsManagement'] --- import savedObjectsManagementObj from './saved_objects_management.devdocs.json'; diff --git a/api_docs/saved_objects_tagging.mdx b/api_docs/saved_objects_tagging.mdx index c865a7959851f..97ffc99a1d799 100644 --- a/api_docs/saved_objects_tagging.mdx +++ b/api_docs/saved_objects_tagging.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTagging title: "savedObjectsTagging" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsTagging plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTagging'] --- import savedObjectsTaggingObj from './saved_objects_tagging.devdocs.json'; diff --git a/api_docs/saved_objects_tagging_oss.mdx b/api_docs/saved_objects_tagging_oss.mdx index 785e64d46e5b3..a8b1ad9fdf80a 100644 --- a/api_docs/saved_objects_tagging_oss.mdx +++ b/api_docs/saved_objects_tagging_oss.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedObjectsTaggingOss title: "savedObjectsTaggingOss" image: https://source.unsplash.com/400x175/?github description: API docs for the savedObjectsTaggingOss plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTaggingOss'] --- import savedObjectsTaggingOssObj from './saved_objects_tagging_oss.devdocs.json'; diff --git a/api_docs/saved_search.mdx b/api_docs/saved_search.mdx index 198d0296a308f..64dce1aa69699 100644 --- a/api_docs/saved_search.mdx +++ b/api_docs/saved_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/savedSearch title: "savedSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the savedSearch plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedSearch'] --- import savedSearchObj from './saved_search.devdocs.json'; diff --git a/api_docs/screenshot_mode.mdx b/api_docs/screenshot_mode.mdx index a302b2108245d..2e34968c8916b 100644 --- a/api_docs/screenshot_mode.mdx +++ b/api_docs/screenshot_mode.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotMode title: "screenshotMode" image: https://source.unsplash.com/400x175/?github description: API docs for the screenshotMode plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotMode'] --- import screenshotModeObj from './screenshot_mode.devdocs.json'; diff --git a/api_docs/screenshotting.mdx b/api_docs/screenshotting.mdx index 077b670f4605f..ec45ea848d125 100644 --- a/api_docs/screenshotting.mdx +++ b/api_docs/screenshotting.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/screenshotting title: "screenshotting" image: https://source.unsplash.com/400x175/?github description: API docs for the screenshotting plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotting'] --- import screenshottingObj from './screenshotting.devdocs.json'; diff --git a/api_docs/security.mdx b/api_docs/security.mdx index efdb4d9dff9a9..1698f95c19367 100644 --- a/api_docs/security.mdx +++ b/api_docs/security.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/security title: "security" image: https://source.unsplash.com/400x175/?github description: API docs for the security plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'security'] --- import securityObj from './security.devdocs.json'; diff --git a/api_docs/security_solution.mdx b/api_docs/security_solution.mdx index 4acac308b8545..af52d6774356e 100644 --- a/api_docs/security_solution.mdx +++ b/api_docs/security_solution.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/securitySolution title: "securitySolution" image: https://source.unsplash.com/400x175/?github description: API docs for the securitySolution plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolution'] --- import securitySolutionObj from './security_solution.devdocs.json'; diff --git a/api_docs/session_view.mdx b/api_docs/session_view.mdx index 4dd6c4cd77f66..4214cc36d11c5 100644 --- a/api_docs/session_view.mdx +++ b/api_docs/session_view.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/sessionView title: "sessionView" image: https://source.unsplash.com/400x175/?github description: API docs for the sessionView plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'sessionView'] --- import sessionViewObj from './session_view.devdocs.json'; diff --git a/api_docs/share.mdx b/api_docs/share.mdx index ff1347346e4fd..0c0fe95e8eb93 100644 --- a/api_docs/share.mdx +++ b/api_docs/share.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/share title: "share" image: https://source.unsplash.com/400x175/?github description: API docs for the share plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'share'] --- import shareObj from './share.devdocs.json'; diff --git a/api_docs/snapshot_restore.mdx b/api_docs/snapshot_restore.mdx index 59048f5ee77db..89d8fd224eaaa 100644 --- a/api_docs/snapshot_restore.mdx +++ b/api_docs/snapshot_restore.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/snapshotRestore title: "snapshotRestore" image: https://source.unsplash.com/400x175/?github description: API docs for the snapshotRestore plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'snapshotRestore'] --- import snapshotRestoreObj from './snapshot_restore.devdocs.json'; diff --git a/api_docs/spaces.mdx b/api_docs/spaces.mdx index 61e3663cbd85a..0ae0d52259d7d 100644 --- a/api_docs/spaces.mdx +++ b/api_docs/spaces.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/spaces title: "spaces" image: https://source.unsplash.com/400x175/?github description: API docs for the spaces plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spaces'] --- import spacesObj from './spaces.devdocs.json'; diff --git a/api_docs/stack_alerts.mdx b/api_docs/stack_alerts.mdx index 661794d3f9505..5c08c52b7f8d1 100644 --- a/api_docs/stack_alerts.mdx +++ b/api_docs/stack_alerts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackAlerts title: "stackAlerts" image: https://source.unsplash.com/400x175/?github description: API docs for the stackAlerts plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackAlerts'] --- import stackAlertsObj from './stack_alerts.devdocs.json'; diff --git a/api_docs/stack_connectors.mdx b/api_docs/stack_connectors.mdx index bd30337912051..4c7ac9b47cfbe 100644 --- a/api_docs/stack_connectors.mdx +++ b/api_docs/stack_connectors.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/stackConnectors title: "stackConnectors" image: https://source.unsplash.com/400x175/?github description: API docs for the stackConnectors plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackConnectors'] --- import stackConnectorsObj from './stack_connectors.devdocs.json'; diff --git a/api_docs/task_manager.mdx b/api_docs/task_manager.mdx index 5fc0872060c5e..94c77afcffa2a 100644 --- a/api_docs/task_manager.mdx +++ b/api_docs/task_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/taskManager title: "taskManager" image: https://source.unsplash.com/400x175/?github description: API docs for the taskManager plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'taskManager'] --- import taskManagerObj from './task_manager.devdocs.json'; diff --git a/api_docs/telemetry.mdx b/api_docs/telemetry.mdx index 7e8fbbd9e45b5..f4b92ece0e010 100644 --- a/api_docs/telemetry.mdx +++ b/api_docs/telemetry.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetry title: "telemetry" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetry plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetry'] --- import telemetryObj from './telemetry.devdocs.json'; diff --git a/api_docs/telemetry_collection_manager.mdx b/api_docs/telemetry_collection_manager.mdx index 9d40da84ce68f..2af3fecb0bdbb 100644 --- a/api_docs/telemetry_collection_manager.mdx +++ b/api_docs/telemetry_collection_manager.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionManager title: "telemetryCollectionManager" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryCollectionManager plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionManager'] --- import telemetryCollectionManagerObj from './telemetry_collection_manager.devdocs.json'; diff --git a/api_docs/telemetry_collection_xpack.mdx b/api_docs/telemetry_collection_xpack.mdx index 612688195bf6d..310868095e02b 100644 --- a/api_docs/telemetry_collection_xpack.mdx +++ b/api_docs/telemetry_collection_xpack.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryCollectionXpack title: "telemetryCollectionXpack" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryCollectionXpack plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionXpack'] --- import telemetryCollectionXpackObj from './telemetry_collection_xpack.devdocs.json'; diff --git a/api_docs/telemetry_management_section.mdx b/api_docs/telemetry_management_section.mdx index dc441e4dc3794..bde4e1fa26213 100644 --- a/api_docs/telemetry_management_section.mdx +++ b/api_docs/telemetry_management_section.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/telemetryManagementSection title: "telemetryManagementSection" image: https://source.unsplash.com/400x175/?github description: API docs for the telemetryManagementSection plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryManagementSection'] --- import telemetryManagementSectionObj from './telemetry_management_section.devdocs.json'; diff --git a/api_docs/threat_intelligence.mdx b/api_docs/threat_intelligence.mdx index b03a5c30082be..6649db6849400 100644 --- a/api_docs/threat_intelligence.mdx +++ b/api_docs/threat_intelligence.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/threatIntelligence title: "threatIntelligence" image: https://source.unsplash.com/400x175/?github description: API docs for the threatIntelligence plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'threatIntelligence'] --- import threatIntelligenceObj from './threat_intelligence.devdocs.json'; diff --git a/api_docs/timelines.mdx b/api_docs/timelines.mdx index f147262a9d82e..4419699db323b 100644 --- a/api_docs/timelines.mdx +++ b/api_docs/timelines.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/timelines title: "timelines" image: https://source.unsplash.com/400x175/?github description: API docs for the timelines plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'timelines'] --- import timelinesObj from './timelines.devdocs.json'; diff --git a/api_docs/transform.mdx b/api_docs/transform.mdx index d83f2320df5c3..628c255d1b188 100644 --- a/api_docs/transform.mdx +++ b/api_docs/transform.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/transform title: "transform" image: https://source.unsplash.com/400x175/?github description: API docs for the transform plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'transform'] --- import transformObj from './transform.devdocs.json'; diff --git a/api_docs/triggers_actions_ui.devdocs.json b/api_docs/triggers_actions_ui.devdocs.json index 97ac8b566e066..957f8e44345a9 100644 --- a/api_docs/triggers_actions_ui.devdocs.json +++ b/api_docs/triggers_actions_ui.devdocs.json @@ -3854,7 +3854,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">[]; has: (id: string) => boolean; register: (objectType: ", + ">[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -3870,7 +3870,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, @@ -3900,7 +3900,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - "[]; has: (id: string) => boolean; register: (objectType: ", + "[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -3908,7 +3908,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - ") => void; }" + ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, @@ -5215,7 +5215,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - "[]; has: (id: string) => boolean; register: (objectType: ", + "[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -5223,7 +5223,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - ") => void; }" + ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", "deprecated": false, @@ -5269,7 +5269,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">[]; has: (id: string) => boolean; register: (objectType: ", + ">[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -5285,7 +5285,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", "deprecated": false, @@ -5303,9 +5303,9 @@ "AlertsTableConfigurationRegistry", "; list: () => ", "AlertsTableConfigurationRegistry", - "[]; has: (id: string) => boolean; register: (objectType: ", + "[]; register: (objectType: ", "AlertsTableConfigurationRegistry", - ") => void; }" + ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", "deprecated": false, @@ -5569,7 +5569,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - "[]; has: (id: string) => boolean; register: (objectType: ", + "[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -5577,7 +5577,7 @@ "section": "def-public.ActionTypeModel", "text": "ActionTypeModel" }, - ") => void; }" + ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, @@ -5668,9 +5668,9 @@ "AlertsTableConfigurationRegistry", "; list: () => ", "AlertsTableConfigurationRegistry", - "[]; has: (id: string) => boolean; register: (objectType: ", + "[]; register: (objectType: ", "AlertsTableConfigurationRegistry", - ") => void; }" + ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, @@ -6004,7 +6004,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">[]; has: (id: string) => boolean; register: (objectType: ", + ">[]; register: (objectType: ", { "pluginId": "triggersActionsUi", "scope": "public", @@ -6020,7 +6020,7 @@ "section": "def-common.RuleTypeParams", "text": "RuleTypeParams" }, - ">) => void; }" + ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, diff --git a/api_docs/triggers_actions_ui.mdx b/api_docs/triggers_actions_ui.mdx index 03408359d7ec6..c6ad3886c12b0 100644 --- a/api_docs/triggers_actions_ui.mdx +++ b/api_docs/triggers_actions_ui.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/triggersActionsUi title: "triggersActionsUi" image: https://source.unsplash.com/400x175/?github description: API docs for the triggersActionsUi plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'triggersActionsUi'] --- import triggersActionsUiObj from './triggers_actions_ui.devdocs.json'; diff --git a/api_docs/ui_actions.mdx b/api_docs/ui_actions.mdx index 9402a78501065..a2cfa74cfd650 100644 --- a/api_docs/ui_actions.mdx +++ b/api_docs/ui_actions.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActions title: "uiActions" image: https://source.unsplash.com/400x175/?github description: API docs for the uiActions plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActions'] --- import uiActionsObj from './ui_actions.devdocs.json'; diff --git a/api_docs/ui_actions_enhanced.mdx b/api_docs/ui_actions_enhanced.mdx index 20f94f0faa805..bb9a992413684 100644 --- a/api_docs/ui_actions_enhanced.mdx +++ b/api_docs/ui_actions_enhanced.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/uiActionsEnhanced title: "uiActionsEnhanced" image: https://source.unsplash.com/400x175/?github description: API docs for the uiActionsEnhanced plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActionsEnhanced'] --- import uiActionsEnhancedObj from './ui_actions_enhanced.devdocs.json'; diff --git a/api_docs/unified_field_list.devdocs.json b/api_docs/unified_field_list.devdocs.json index 22e319c1b515a..c21a3c52f5e02 100644 --- a/api_docs/unified_field_list.devdocs.json +++ b/api_docs/unified_field_list.devdocs.json @@ -3560,7 +3560,7 @@ "section": "def-common.FieldFormatsRegistry", "text": "FieldFormatsRegistry" }, - ", \"register\" | \"init\"> & { deserialize: ", + ", \"init\" | \"register\"> & { deserialize: ", { "pluginId": "fieldFormats", "scope": "common", diff --git a/api_docs/unified_field_list.mdx b/api_docs/unified_field_list.mdx index f472f2f2779ef..0e8df430367a3 100644 --- a/api_docs/unified_field_list.mdx +++ b/api_docs/unified_field_list.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedFieldList title: "unifiedFieldList" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedFieldList plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedFieldList'] --- import unifiedFieldListObj from './unified_field_list.devdocs.json'; diff --git a/api_docs/unified_histogram.devdocs.json b/api_docs/unified_histogram.devdocs.json index f88fd244420f4..7550ec5192e72 100644 --- a/api_docs/unified_histogram.devdocs.json +++ b/api_docs/unified_histogram.devdocs.json @@ -745,7 +745,7 @@ "section": "def-common.FieldFormatsRegistry", "text": "FieldFormatsRegistry" }, - ", \"register\" | \"init\"> & { deserialize: ", + ", \"init\" | \"register\"> & { deserialize: ", { "pluginId": "fieldFormats", "scope": "common", diff --git a/api_docs/unified_histogram.mdx b/api_docs/unified_histogram.mdx index 9c7adbe221ec2..9ab0773517528 100644 --- a/api_docs/unified_histogram.mdx +++ b/api_docs/unified_histogram.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedHistogram title: "unifiedHistogram" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedHistogram plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedHistogram'] --- import unifiedHistogramObj from './unified_histogram.devdocs.json'; diff --git a/api_docs/unified_search.mdx b/api_docs/unified_search.mdx index de6f2a6345374..6d31cdbf6b69e 100644 --- a/api_docs/unified_search.mdx +++ b/api_docs/unified_search.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch title: "unifiedSearch" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedSearch plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch'] --- import unifiedSearchObj from './unified_search.devdocs.json'; diff --git a/api_docs/unified_search_autocomplete.mdx b/api_docs/unified_search_autocomplete.mdx index 44576f33ea6d2..6b324846fbb51 100644 --- a/api_docs/unified_search_autocomplete.mdx +++ b/api_docs/unified_search_autocomplete.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedSearch-autocomplete title: "unifiedSearch.autocomplete" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedSearch.autocomplete plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch.autocomplete'] --- import unifiedSearchAutocompleteObj from './unified_search_autocomplete.devdocs.json'; diff --git a/api_docs/url_forwarding.mdx b/api_docs/url_forwarding.mdx index a72b17c554e7c..f0438b8d54d73 100644 --- a/api_docs/url_forwarding.mdx +++ b/api_docs/url_forwarding.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/urlForwarding title: "urlForwarding" image: https://source.unsplash.com/400x175/?github description: API docs for the urlForwarding plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'urlForwarding'] --- import urlForwardingObj from './url_forwarding.devdocs.json'; diff --git a/api_docs/usage_collection.mdx b/api_docs/usage_collection.mdx index 100dd1c69bc85..d4c77908e9162 100644 --- a/api_docs/usage_collection.mdx +++ b/api_docs/usage_collection.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/usageCollection title: "usageCollection" image: https://source.unsplash.com/400x175/?github description: API docs for the usageCollection plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'usageCollection'] --- import usageCollectionObj from './usage_collection.devdocs.json'; diff --git a/api_docs/ux.mdx b/api_docs/ux.mdx index 210252de48117..bba75c953766b 100644 --- a/api_docs/ux.mdx +++ b/api_docs/ux.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ux title: "ux" image: https://source.unsplash.com/400x175/?github description: API docs for the ux plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ux'] --- import uxObj from './ux.devdocs.json'; diff --git a/api_docs/vis_default_editor.mdx b/api_docs/vis_default_editor.mdx index e4017f4660815..d5785fa647c1d 100644 --- a/api_docs/vis_default_editor.mdx +++ b/api_docs/vis_default_editor.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visDefaultEditor title: "visDefaultEditor" image: https://source.unsplash.com/400x175/?github description: API docs for the visDefaultEditor plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visDefaultEditor'] --- import visDefaultEditorObj from './vis_default_editor.devdocs.json'; diff --git a/api_docs/vis_type_gauge.mdx b/api_docs/vis_type_gauge.mdx index 45bd43356cbae..301bc3ea87a6a 100644 --- a/api_docs/vis_type_gauge.mdx +++ b/api_docs/vis_type_gauge.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeGauge title: "visTypeGauge" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeGauge plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeGauge'] --- import visTypeGaugeObj from './vis_type_gauge.devdocs.json'; diff --git a/api_docs/vis_type_heatmap.mdx b/api_docs/vis_type_heatmap.mdx index 2d9072e20fe53..274f2b0cdd702 100644 --- a/api_docs/vis_type_heatmap.mdx +++ b/api_docs/vis_type_heatmap.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeHeatmap title: "visTypeHeatmap" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeHeatmap plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeHeatmap'] --- import visTypeHeatmapObj from './vis_type_heatmap.devdocs.json'; diff --git a/api_docs/vis_type_pie.mdx b/api_docs/vis_type_pie.mdx index cd6b496a46915..303568940f534 100644 --- a/api_docs/vis_type_pie.mdx +++ b/api_docs/vis_type_pie.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypePie title: "visTypePie" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypePie plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypePie'] --- import visTypePieObj from './vis_type_pie.devdocs.json'; diff --git a/api_docs/vis_type_table.mdx b/api_docs/vis_type_table.mdx index c0524f1ee6f0c..0a9b787d4a65e 100644 --- a/api_docs/vis_type_table.mdx +++ b/api_docs/vis_type_table.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTable title: "visTypeTable" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTable plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTable'] --- import visTypeTableObj from './vis_type_table.devdocs.json'; diff --git a/api_docs/vis_type_timelion.mdx b/api_docs/vis_type_timelion.mdx index ed63b542820dc..7bdb30db5dbe4 100644 --- a/api_docs/vis_type_timelion.mdx +++ b/api_docs/vis_type_timelion.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimelion title: "visTypeTimelion" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTimelion plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimelion'] --- import visTypeTimelionObj from './vis_type_timelion.devdocs.json'; diff --git a/api_docs/vis_type_timeseries.mdx b/api_docs/vis_type_timeseries.mdx index b9bdf181ed0c0..4df03c3b1d319 100644 --- a/api_docs/vis_type_timeseries.mdx +++ b/api_docs/vis_type_timeseries.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeTimeseries title: "visTypeTimeseries" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeTimeseries plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimeseries'] --- import visTypeTimeseriesObj from './vis_type_timeseries.devdocs.json'; diff --git a/api_docs/vis_type_vega.mdx b/api_docs/vis_type_vega.mdx index 19245aaafdbb2..2ae8799970648 100644 --- a/api_docs/vis_type_vega.mdx +++ b/api_docs/vis_type_vega.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVega title: "visTypeVega" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeVega plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVega'] --- import visTypeVegaObj from './vis_type_vega.devdocs.json'; diff --git a/api_docs/vis_type_vislib.mdx b/api_docs/vis_type_vislib.mdx index 339b7c13816b6..56a01202a9b99 100644 --- a/api_docs/vis_type_vislib.mdx +++ b/api_docs/vis_type_vislib.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeVislib title: "visTypeVislib" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeVislib plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVislib'] --- import visTypeVislibObj from './vis_type_vislib.devdocs.json'; diff --git a/api_docs/vis_type_xy.mdx b/api_docs/vis_type_xy.mdx index b9e32973efedc..894c6fe49c6a7 100644 --- a/api_docs/vis_type_xy.mdx +++ b/api_docs/vis_type_xy.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visTypeXy title: "visTypeXy" image: https://source.unsplash.com/400x175/?github description: API docs for the visTypeXy plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeXy'] --- import visTypeXyObj from './vis_type_xy.devdocs.json'; diff --git a/api_docs/visualizations.mdx b/api_docs/visualizations.mdx index a2c3bd49900ab..d551e436f7742 100644 --- a/api_docs/visualizations.mdx +++ b/api_docs/visualizations.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/visualizations title: "visualizations" image: https://source.unsplash.com/400x175/?github description: API docs for the visualizations plugin -date: 2023-04-17 +date: 2023-04-18 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visualizations'] --- import visualizationsObj from './visualizations.devdocs.json'; From 970de9147ea2b51488e63dd71e28b9df7a7bf138 Mon Sep 17 00:00:00 2001 From: Cristina Amico Date: Tue, 18 Apr 2023 08:44:16 +0200 Subject: [PATCH 006/144] [Fleet] Surface new overview dashboards in fleet (#154914) Closes https://github.com/elastic/kibana/issues/153848 ## Summary - Adds two link buttons on top of agent list page to access "Ingest overview" and "Agent Info" dashboards Screenshot 2023-04-13 at 15 22 53 The links are built using the new URL service [locator](https://github.com/elastic/kibana/blob/e80abe810837eeeff7fdcd594c6f8950590b49cd/x-pack/plugins/fleet/public/hooks/use_locator.ts#L14) and the [getRedirectLink](https://github.com/elastic/kibana/blob/main/src/plugins/share/README.mdx#using-locator-of-another-app) method; - Refactoring existing instances of `useKibanaLink` to use the url locator instead; These new dashboards were already accessible from the ` elastic_agent.*` datastreams table actions, however I replaced the `useKibanaLink` hook there as well: Screenshot 2023-04-13 at 16 03 47 TODO: I don't know where to add the "Integrations" dashboard yet, I'm not sure it should go on the Integrations details page. ### Checklist - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- x-pack/plugins/fleet/common/constants/epm.ts | 3 -- .../plugins/fleet/common/constants/index.ts | 1 + .../fleet/common/constants/locators.ts | 19 +++++++ x-pack/plugins/fleet/common/index.ts | 2 + .../components/agent_dashboard_link.test.tsx | 11 ++++ .../components/agent_dashboard_link.tsx | 22 +++++--- .../components/dashboards_buttons.tsx | 53 +++++++++++++++++++ .../components/search_and_filter_bar.test.tsx | 11 ++++ .../components/search_and_filter_bar.tsx | 21 ++++---- .../components/data_stream_row_actions.tsx | 10 ++-- .../plugins/fleet/public/constants/index.ts | 5 +- x-pack/plugins/fleet/public/hooks/index.ts | 1 + .../plugins/fleet/public/hooks/use_locator.ts | 6 ++- .../apis/integrations/elastic_agent.ts | 11 ++-- 14 files changed, 140 insertions(+), 36 deletions(-) create mode 100644 x-pack/plugins/fleet/common/constants/locators.ts create mode 100644 x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/dashboards_buttons.tsx diff --git a/x-pack/plugins/fleet/common/constants/epm.ts b/x-pack/plugins/fleet/common/constants/epm.ts index f380d66d0223c..a1d73b452cf72 100644 --- a/x-pack/plugins/fleet/common/constants/epm.ts +++ b/x-pack/plugins/fleet/common/constants/epm.ts @@ -22,9 +22,6 @@ export const FLEET_CLOUD_SECURITY_POSTURE_KSPM_POLICY_TEMPLATE = 'kspm'; export const PACKAGE_TEMPLATE_SUFFIX = '@package'; export const USER_SETTINGS_TEMPLATE_SUFFIX = '@custom'; -export const FLEET_ELASTIC_AGENT_DETAILS_DASHBOARD_ID = - 'elastic_agent-f47f18cc-9c7d-4278-b2ea-a6dee816d395'; - export const DATASET_VAR_NAME = 'data_stream.dataset'; /* Package rules: diff --git a/x-pack/plugins/fleet/common/constants/index.ts b/x-pack/plugins/fleet/common/constants/index.ts index 4dcc2d58d65ba..9892c883805f7 100644 --- a/x-pack/plugins/fleet/common/constants/index.ts +++ b/x-pack/plugins/fleet/common/constants/index.ts @@ -20,6 +20,7 @@ export * from './fleet_server_policy_config'; export * from './authz'; export * from './file_storage'; export * from './message_signing_keys'; +export * from './locators'; // TODO: This is the default `index.max_result_window` ES setting, which dictates // the maximum amount of results allowed to be returned from a search. It's possible diff --git a/x-pack/plugins/fleet/common/constants/locators.ts b/x-pack/plugins/fleet/common/constants/locators.ts new file mode 100644 index 0000000000000..daa00bcae46e0 --- /dev/null +++ b/x-pack/plugins/fleet/common/constants/locators.ts @@ -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. + */ + +export const LOCATORS_IDS = { + APM_LOCATOR: 'APM_LOCATOR', + DASHBOARD_APP: 'DASHBOARD_APP_LOCATOR', +} as const; + +// Dashboards ids +export const DASHBOARD_LOCATORS_IDS = { + ELASTIC_AGENT_OVERVIEW: 'elastic_agent-a148dc70-6b3c-11ed-98de-67bdecd21824', + ELASTIC_AGENT_AGENT_INFO: 'elastic_agent-0600ffa0-6b5e-11ed-98de-67bdecd21824', + ELASTIC_AGENT_AGENT_METRICS: 'elastic_agent-f47f18cc-9c7d-4278-b2ea-a6dee816d395', + ELASTIC_AGENT_INTEGRATIONS: 'elastic_agent-1a4e7280-6b5e-11ed-98de-67bdecd21824', +} as const; diff --git a/x-pack/plugins/fleet/common/index.ts b/x-pack/plugins/fleet/common/index.ts index 3cdfa354a8c5f..3ca552966a7c5 100644 --- a/x-pack/plugins/fleet/common/index.ts +++ b/x-pack/plugins/fleet/common/index.ts @@ -52,6 +52,8 @@ export { // Statuses // Authz ENDPOINT_PRIVILEGES, + // dashboards ids + DASHBOARD_LOCATORS_IDS, } from './constants'; export { // Route services diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.test.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.test.tsx index 7a65be0a460c9..79908819ff863 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.test.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.test.tsx @@ -25,6 +25,17 @@ jest.mock('../../../../../../hooks/use_fleet_status', () => ({ jest.mock('../../../../../../hooks/use_request/epm'); +jest.mock('../../../../../../hooks/use_locator', () => { + return { + useDashboardLocator: jest.fn().mockImplementation(() => { + return { + id: 'DASHBOARD_APP_LOCATOR', + getRedirectUrl: jest.fn().mockResolvedValue('app/dashboards#/view/elastic_agent-a0001'), + }; + }), + }; +}); + describe('AgentDashboardLink', () => { it('should enable the button if elastic_agent package is installed and policy has monitoring enabled', async () => { mockedUseGetPackageInfoByKeyQuery.mockReturnValue({ diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.tsx index 6c7479fd8c801..6832f81961ddb 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_dashboard_link.tsx @@ -10,21 +10,26 @@ import { FormattedMessage } from '@kbn/i18n-react'; import { EuiButton, EuiToolTip } from '@elastic/eui'; import styled from 'styled-components'; -import { useGetPackageInfoByKeyQuery, useKibanaLink, useLink } from '../../../../hooks'; +import { useGetPackageInfoByKeyQuery, useLink, useDashboardLocator } from '../../../../hooks'; import type { Agent, AgentPolicy } from '../../../../types'; import { FLEET_ELASTIC_AGENT_PACKAGE, - FLEET_ELASTIC_AGENT_DETAILS_DASHBOARD_ID, + DASHBOARD_LOCATORS_IDS, } from '../../../../../../../common/constants'; function useAgentDashboardLink(agent: Agent) { const { isLoading, data } = useGetPackageInfoByKeyQuery(FLEET_ELASTIC_AGENT_PACKAGE); const isInstalled = data?.item.status === 'installed'; + const dashboardLocator = useDashboardLocator(); - const dashboardLink = useKibanaLink(`/dashboard/${FLEET_ELASTIC_AGENT_DETAILS_DASHBOARD_ID}`); - const query = `_a=(query:(language:kuery,query:'elastic_agent.id:${agent.id}'))`; - const link = `${dashboardLink}?${query}`; + const link = dashboardLocator?.getRedirectUrl({ + dashboardId: DASHBOARD_LOCATORS_IDS.ELASTIC_AGENT_AGENT_METRICS, + query: { + language: 'kuery', + query: `elastic_agent.id:${agent.id}`, + }, + }); return { isLoading, @@ -50,7 +55,12 @@ export const AgentDashboardLink: React.FunctionComponent<{ !isInstalled || isLoading || !isLogAndMetricsEnabled ? { disabled: true } : { href: link }; const button = ( - + { + const dashboardLocator = useDashboardLocator(); + + const getDashboardHref = (dashboardId: string) => { + return dashboardLocator?.getRedirectUrl({ dashboardId }) || ''; + }; + + return ( + <> + + + + + + + + + + + + + + ); +}; diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.test.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.test.tsx index e239f31ed3adc..9af04b04761a6 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.test.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.test.tsx @@ -36,6 +36,17 @@ jest.mock('../../../../components', () => { }; }); +jest.mock('../../../../../../hooks/use_locator', () => { + return { + useDashboardLocator: jest.fn().mockImplementation(() => { + return { + id: 'DASHBOARD_APP_LOCATOR', + getRedirectUrl: jest.fn().mockResolvedValue('app/dashboards#/view/elastic_agent-a0002'), + }; + }), + }; +}); + const TestComponent = (props: any) => ( diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx index 4ca43020e132a..c9c527ba36e0a 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_list_page/components/search_and_filter_bar.tsx @@ -31,15 +31,12 @@ import { AgentBulkActions } from './bulk_actions'; import type { SelectionMode } from './types'; import { AgentActivityButton } from './agent_activity_button'; import { AgentStatusFilter } from './agent_status_filter'; +import { DashboardsButtons } from './dashboards_buttons'; const ClearAllTagsFilterItem = styled(EuiFilterSelectItem)` padding: ${(props) => props.theme.eui.euiSizeS}; `; -const FlexEndEuiFlexItem = styled(EuiFlexItem)` - align-self: flex-end; -`; - export const SearchAndFilterBar: React.FunctionComponent<{ agentPolicies: AgentPolicy[]; draftKuery: string; @@ -118,17 +115,18 @@ export const SearchAndFilterBar: React.FunctionComponent<{ return ( <> - {/* Search and filter bar */} - - - + {/* Top Buttons and Links */} + + {totalAgents > 0 && } + + - + - + - + + {/* Search and filters */} diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/data_stream/list_page/components/data_stream_row_actions.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/data_stream/list_page/components/data_stream_row_actions.tsx index 7d88327e73fd6..8822117f56d67 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/data_stream/list_page/components/data_stream_row_actions.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/data_stream/list_page/components/data_stream_row_actions.tsx @@ -10,13 +10,15 @@ import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import type { DataStream } from '../../../../types'; -import { useKibanaLink } from '../../../../hooks'; +import { useDashboardLocator } from '../../../../hooks'; import { ContextMenuActions } from '../../../../components'; import { useAPMServiceDetailHref } from '../../../../hooks/use_apm_service_href'; export const DataStreamRowActions = memo<{ datastream: DataStream }>(({ datastream }) => { const { dashboards } = datastream; + const dashboardLocator = useDashboardLocator(); + const actionNameSingular = ( (({ datastre items: [ { icon: 'dashboardApp', - /* eslint-disable-next-line react-hooks/rules-of-hooks */ - href: useKibanaLink(`/dashboard/${dashboards[0].id || ''}`), + href: dashboardLocator?.getRedirectUrl({ dashboardId: dashboards[0]?.id } || ''), name: actionNameSingular, }, ], @@ -109,8 +110,7 @@ export const DataStreamRowActions = memo<{ datastream: DataStream }>(({ datastre items: dashboards.map((dashboard) => { return { icon: 'dashboardApp', - /* eslint-disable-next-line react-hooks/rules-of-hooks */ - href: useKibanaLink(`/dashboard/${dashboard.id || ''}`), + href: dashboardLocator?.getRedirectUrl({ dashboardId: dashboard?.id } || ''), name: dashboard.title, }; }), diff --git a/x-pack/plugins/fleet/public/constants/index.ts b/x-pack/plugins/fleet/public/constants/index.ts index 22ba08f3f9a1a..2c682af1fcbcc 100644 --- a/x-pack/plugins/fleet/public/constants/index.ts +++ b/x-pack/plugins/fleet/public/constants/index.ts @@ -22,6 +22,7 @@ export { AUTO_UPDATE_PACKAGES, KEEP_POLICIES_UP_TO_DATE_PACKAGES, AUTO_UPGRADE_POLICIES_PACKAGES, + LOCATORS_IDS, } from '../../common/constants'; export * from './page_paths'; @@ -37,7 +38,3 @@ export const DURATION_APM_SETTINGS_VARS = { TAIL_SAMPLING_INTERVAL: 'tail_sampling_interval', WRITE_TIMEOUT: 'write_timeout', }; - -export const LOCATORS_IDS = { - APM_LOCATOR: 'APM_LOCATOR', -} as const; diff --git a/x-pack/plugins/fleet/public/hooks/index.ts b/x-pack/plugins/fleet/public/hooks/index.ts index 0f7f6b2f4d165..a9fb6ef7758c7 100644 --- a/x-pack/plugins/fleet/public/hooks/index.ts +++ b/x-pack/plugins/fleet/public/hooks/index.ts @@ -31,3 +31,4 @@ export * from './use_flyout_context'; export * from './use_is_guided_onboarding_active'; export * from './use_fleet_server_hosts_for_policy'; export * from './use_fleet_server_standalone'; +export * from './use_locator'; diff --git a/x-pack/plugins/fleet/public/hooks/use_locator.ts b/x-pack/plugins/fleet/public/hooks/use_locator.ts index 46ec3e4c75d13..a3fed97679456 100644 --- a/x-pack/plugins/fleet/public/hooks/use_locator.ts +++ b/x-pack/plugins/fleet/public/hooks/use_locator.ts @@ -7,7 +7,7 @@ import type { SerializableRecord } from '@kbn/utility-types'; import type { ValuesType } from 'utility-types'; -import type { LOCATORS_IDS } from '../constants'; +import { LOCATORS_IDS } from '../constants'; import { useStartServices } from './use_core'; @@ -17,3 +17,7 @@ export function useLocator( const services = useStartServices(); return services.share.url.locators.get(locatorId); } + +export function useDashboardLocator() { + return useLocator(LOCATORS_IDS.DASHBOARD_APP); +} diff --git a/x-pack/test/fleet_api_integration/apis/integrations/elastic_agent.ts b/x-pack/test/fleet_api_integration/apis/integrations/elastic_agent.ts index 7fad10904a4f4..7cd94543cad30 100644 --- a/x-pack/test/fleet_api_integration/apis/integrations/elastic_agent.ts +++ b/x-pack/test/fleet_api_integration/apis/integrations/elastic_agent.ts @@ -6,10 +6,9 @@ */ import expect from '@kbn/expect'; -import { - FLEET_ELASTIC_AGENT_PACKAGE, - FLEET_ELASTIC_AGENT_DETAILS_DASHBOARD_ID, -} from '@kbn/fleet-plugin/common/constants/epm'; +import { FLEET_ELASTIC_AGENT_PACKAGE } from '@kbn/fleet-plugin/common/constants/epm'; + +import { DASHBOARD_LOCATORS_IDS } from '@kbn/fleet-plugin/common'; import { FtrProviderContext } from '../../../api_integration/ftr_provider_context'; import { skipIfNoDockerRegistry } from '../../helpers'; import { setupFleetAndAgents } from '../agents/services'; @@ -47,10 +46,10 @@ export default function (providerContext: FtrProviderContext) { it('Install elastic agent details dashboard with the correct id', async () => { const resDashboard = await kibanaServer.savedObjects.get({ type: 'dashboard', - id: FLEET_ELASTIC_AGENT_DETAILS_DASHBOARD_ID, + id: DASHBOARD_LOCATORS_IDS.ELASTIC_AGENT_AGENT_METRICS, }); - expect(resDashboard.id).to.eql(FLEET_ELASTIC_AGENT_DETAILS_DASHBOARD_ID); + expect(resDashboard.id).to.eql(DASHBOARD_LOCATORS_IDS.ELASTIC_AGENT_AGENT_METRICS); }); after(async () => { From 682f12ea77e8845c79952ccef4c5da2b0dee3e33 Mon Sep 17 00:00:00 2001 From: Julia Rechkunova Date: Tue, 18 Apr 2023 09:11:07 +0200 Subject: [PATCH 007/144] [Discover][Saved Query] Add schema for Saved Query SO (#154230) ## Summary A follow up for https://github.com/elastic/kibana/pull/153131 This PR adds schema for Saved Query SO type. --- .../group2/check_registered_types.test.ts | 2 +- .../data/server/saved_objects/query.ts | 16 +++------- .../server/saved_objects/schemas/query.ts | 32 +++++++++++++++++++ 3 files changed, 38 insertions(+), 12 deletions(-) create mode 100644 src/plugins/data/server/saved_objects/schemas/query.ts diff --git a/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts b/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts index 541bfa046b0d3..09977e1c272ab 100644 --- a/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts +++ b/src/core/server/integration_tests/saved_objects/migrations/group2/check_registered_types.test.ts @@ -123,7 +123,7 @@ describe('checking migration metadata changes on all registered SO types', () => "osquery-pack": "edd84b2c59ef36214ece0676706da8f22175c660", "osquery-pack-asset": "18e08979d46ee7e5538f54c080aec4d8c58516ca", "osquery-saved-query": "f5e4e303f65c7607248ea8b2672f1ee30e4fb15e", - "query": "ec6000b775f06f81470df42d23f7a88cb31d64ba", + "query": "cfc049e1f0574fb4fdb2d653d7c10bdc970a2610", "rules-settings": "9854495c3b54b16a6625fb250c35e5504da72266", "sample-data-telemetry": "c38daf1a49ed24f2a4fb091e6e1e833fccf19935", "search": "ed3a9b1681b57d69560909d51933fdf17576ea68", diff --git a/src/plugins/data/server/saved_objects/query.ts b/src/plugins/data/server/saved_objects/query.ts index c32a13e85888a..cf75c28743d4f 100644 --- a/src/plugins/data/server/saved_objects/query.ts +++ b/src/plugins/data/server/saved_objects/query.ts @@ -8,6 +8,7 @@ import { SavedObjectsType } from '@kbn/core/server'; import { savedQueryMigrations } from './migrations/query'; +import { SCHEMA_QUERY_V8_8_0 } from './schemas/query'; export const querySavedObjectType: SavedObjectsType = { name: 'query', @@ -29,21 +30,14 @@ export const querySavedObjectType: SavedObjectsType = { }, }, mappings: { + dynamic: false, properties: { title: { type: 'text' }, description: { type: 'text' }, - query: { - dynamic: false, - properties: { - language: { type: 'keyword' }, - }, - }, - filters: { - dynamic: false, - properties: {}, - }, - timefilter: { dynamic: false, properties: {} }, }, }, migrations: savedQueryMigrations, + schemas: { + '8.8.0': SCHEMA_QUERY_V8_8_0, + }, }; diff --git a/src/plugins/data/server/saved_objects/schemas/query.ts b/src/plugins/data/server/saved_objects/schemas/query.ts new file mode 100644 index 0000000000000..c460a06b9727a --- /dev/null +++ b/src/plugins/data/server/saved_objects/schemas/query.ts @@ -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 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { schema } from '@kbn/config-schema'; + +// As per `SavedQueryAttributes` +export const SCHEMA_QUERY_V8_8_0 = schema.object({ + title: schema.string(), + description: schema.string({ defaultValue: '' }), + query: schema.object({ + language: schema.string(), + query: schema.oneOf([schema.string(), schema.object({}, { unknowns: 'allow' })]), + }), + filters: schema.maybe(schema.arrayOf(schema.object({}, { unknowns: 'allow' }))), + timefilter: schema.maybe( + schema.object({ + from: schema.string(), + to: schema.string(), + refreshInterval: schema.maybe( + schema.object({ + value: schema.number(), + pause: schema.boolean(), + }) + ), + }) + ), +}); From 823cc3f49b5cb2c91f0edc29edc1f52ab3585770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Fern=C3=A1ndez=20Haro?= Date: Tue, 18 Apr 2023 10:15:35 +0200 Subject: [PATCH 008/144] [`getSavedObjectsCount`] Use `soClient` instead of `.kibana` searches (#155035) ## Summary As part of #154888, we need to stop making direct requests to the index `.kibana`, and use the SO Clients instead. This PR changes the utility `getSavedObjectsCount` to use aggregations in the SO client. ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios ### For maintainers - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) I'm pointing to `main` because it's an improvement we needed anyway. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../src/lib/aggregations/validation.test.ts | 17 +++ .../src/lib/aggregations/validation.ts | 8 ++ .../get_saved_object_counts.test.ts | 116 ++++++------------ .../get_saved_object_counts.ts | 44 +++---- .../kibana_usage_collector.test.ts | 12 +- .../kibana_usage_collector.ts | 11 +- .../saved_objects_count_collector.test.ts | 7 +- .../saved_objects_count_collector.ts | 5 +- .../kibana_usage_collection/server/plugin.ts | 2 +- .../kibana_usage_collection/tsconfig.json | 1 + 10 files changed, 95 insertions(+), 128 deletions(-) diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.test.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.test.ts index 0120ecf75c797..0b5d750e57040 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.test.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.test.ts @@ -522,4 +522,21 @@ describe('validateAndConvertAggregations', () => { '"[aggName.cardinality.field] Invalid attribute path: alert.alert.actions.group"' ); }); + + it('allows aggregations for root fields', () => { + const aggregations: AggsMap = { + types: { + terms: { + field: 'type', + }, + }, + }; + expect(validateAndConvertAggregations(['foo'], aggregations, mockMappings)).toEqual({ + types: { + terms: { + field: 'type', + }, + }, + }); + }); }); diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.ts index b3a6bbae5e956..c673f73d8d844 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/aggregations/validation.ts @@ -18,6 +18,7 @@ import { rewriteRootLevelAttribute, } from './validation_utils'; import { aggregationSchemas } from './aggs_types'; +import { getRootFields } from '../included_fields'; const aggregationKeys = ['aggs', 'aggregations']; @@ -226,6 +227,10 @@ const isAttributeValue = (fieldName: string, fieldValue: unknown): boolean => { return attributeFields.includes(fieldName) && typeof fieldValue === 'string'; }; +const isRootField = (fieldName: string): boolean => { + return getRootFields().includes(fieldName); +}; + const validateAndRewriteAttributePath = ( attributePath: string, { allowedTypes, indexMapping, currentPath }: ValidationContext @@ -236,5 +241,8 @@ const validateAndRewriteAttributePath = ( if (isObjectTypeAttribute(attributePath, indexMapping, allowedTypes)) { return rewriteObjectTypeAttribute(attributePath); } + if (isRootField(attributePath)) { + return attributePath; + } throw new Error(`[${currentPath.join('.')}] Invalid attribute path: ${attributePath}`); }; diff --git a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.test.ts b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.test.ts index 173453e9e2420..f83200f56f27c 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.test.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.test.ts @@ -6,48 +6,41 @@ * Side Public License, v 1. */ -import { elasticsearchServiceMock } from '@kbn/core/server/mocks'; +import type { SavedObjectsClientContract } from '@kbn/core-saved-objects-api-server'; +import { createCollectorFetchContextMock } from '@kbn/usage-collection-plugin/server/mocks'; import { getSavedObjectsCounts } from './get_saved_object_counts'; -function mockGetSavedObjectsCounts(params: TBody) { - const esClient = elasticsearchServiceMock.createClusterClient().asInternalUser; - // @ts-expect-error arbitrary type - esClient.search.mockResponse(params); - return esClient; -} +const soEmptyResponse = { total: 0, saved_objects: [], per_page: 0, page: 1 }; describe('getSavedObjectsCounts', () => { + const fetchContextMock = createCollectorFetchContextMock(); + const soClient = fetchContextMock.soClient as jest.Mocked; + + beforeEach(() => { + soClient.find.mockReset(); + }); + test('should not fail if no body returned', async () => { - const esClient = mockGetSavedObjectsCounts({}); + soClient.find.mockResolvedValueOnce(soEmptyResponse); - const results = await getSavedObjectsCounts(esClient, '.kibana', ['type-a']); + const results = await getSavedObjectsCounts(soClient, ['type-a']); // Make sure ES.search is triggered (we'll test the actual params in other specific tests) - expect(esClient.search).toHaveBeenCalledTimes(1); + expect(soClient.find).toHaveBeenCalledTimes(1); expect(results).toStrictEqual({ total: 0, per_type: [], non_expected_types: [], others: 0 }); }); test('should match all and request the `missing` bucket (size + 1) when `exclusive === false`', async () => { - const esClient = mockGetSavedObjectsCounts({}); - await getSavedObjectsCounts(esClient, '.kibana', ['type-a', 'type_2']); - expect(esClient.search).toHaveBeenCalledWith({ - index: '.kibana', - ignore_unavailable: true, - filter_path: [ - 'aggregations.types.buckets', - 'aggregations.types.sum_other_doc_count', - 'hits.total', - ], - body: { - size: 0, - track_total_hits: true, - query: { match_all: {} }, - aggs: { - types: { - terms: { - field: 'type', - size: 3, - missing: 'missing_so_type', - }, + soClient.find.mockResolvedValueOnce(soEmptyResponse); + await getSavedObjectsCounts(soClient, ['type-a', 'type_2']); + expect(soClient.find).toHaveBeenCalledWith({ + type: ['type-a', 'type_2'], + perPage: 0, + aggs: { + types: { + terms: { + field: 'type', + size: 3, + missing: 'missing_so_type', }, }, }, @@ -55,22 +48,12 @@ describe('getSavedObjectsCounts', () => { }); test('should apply the terms query and aggregation with the size matching the length of the list when `exclusive === true`', async () => { - const esClient = mockGetSavedObjectsCounts({}); - await getSavedObjectsCounts(esClient, '.kibana', ['type_one', 'type_two'], true); - expect(esClient.search).toHaveBeenCalledWith({ - index: '.kibana', - ignore_unavailable: true, - filter_path: [ - 'aggregations.types.buckets', - 'aggregations.types.sum_other_doc_count', - 'hits.total', - ], - body: { - size: 0, - track_total_hits: true, - query: { terms: { type: ['type_one', 'type_two'] } }, - aggs: { types: { terms: { field: 'type', size: 2 } } }, - }, + soClient.find.mockResolvedValueOnce(soEmptyResponse); + await getSavedObjectsCounts(soClient, ['type_one', 'type_two'], true); + expect(soClient.find).toHaveBeenCalledWith({ + type: ['type_one', 'type_two'], + perPage: 0, + aggs: { types: { terms: { field: 'type', size: 2 } } }, }); }); @@ -80,39 +63,13 @@ describe('getSavedObjectsCounts', () => { { key: 'type-two', doc_count: 2 }, ]; - const esClient = mockGetSavedObjectsCounts({ - hits: { total: { value: 13 } }, - aggregations: { types: { buckets, sum_other_doc_count: 10 } }, - }); - - const results = await getSavedObjectsCounts(esClient, '.kibana', [ - 'type_one', - 'type-two', - 'type-3', - ]); - expect(results).toStrictEqual({ + soClient.find.mockResolvedValueOnce({ + ...soEmptyResponse, total: 13, - per_type: [ - { key: 'type_one', doc_count: 1 }, - { key: 'type-two', doc_count: 2 }, - ], - non_expected_types: [], - others: 10, - }); - }); - - test('supports ES returning total as a number (just in case)', async () => { - const buckets = [ - { key: 'type_one', doc_count: 1 }, - { key: 'type-two', doc_count: 2 }, - ]; - - const esClient = mockGetSavedObjectsCounts({ - hits: { total: 13 }, aggregations: { types: { buckets, sum_other_doc_count: 10 } }, }); - const results = await getSavedObjectsCounts(esClient, '.kibana', ['type_one', 'type-two']); + const results = await getSavedObjectsCounts(soClient, ['type_one', 'type-two', 'type-3']); expect(results).toStrictEqual({ total: 13, per_type: [ @@ -132,12 +89,13 @@ describe('getSavedObjectsCounts', () => { { key: 'type-four', doc_count: 2 }, ]; - const esClient = mockGetSavedObjectsCounts({ - hits: { total: { value: 13 } }, + soClient.find.mockResolvedValueOnce({ + ...soEmptyResponse, + total: 13, aggregations: { types: { buckets, sum_other_doc_count: 6 } }, }); - const results = await getSavedObjectsCounts(esClient, '.kibana', ['type_one', 'type-two']); + const results = await getSavedObjectsCounts(soClient, ['type_one', 'type-two']); expect(results).toStrictEqual({ total: 13, per_type: [ diff --git a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.ts b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.ts index 812933eeb3e69..cdca68e5d6006 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/get_saved_object_counts/get_saved_object_counts.ts @@ -7,7 +7,7 @@ */ import { estypes } from '@elastic/elasticsearch'; -import { ElasticsearchClient } from '@kbn/core/server'; +import type { SavedObjectsClientContract } from '@kbn/core/server'; const MISSING_TYPE_KEY = 'missing_so_type'; @@ -39,40 +39,28 @@ export interface SavedObjectsCounts { * It also returns a break-down of the document count for all the built-in SOs in Kibana (or the types specified in `soTypes`). * Finally, it completes the information with an `others` counter, that indicates the number of documents that do not match the SO type breakdown. * - * @param esClient The {@link ElasticsearchClient} to use when performing the aggregation. - * @param kibanaIndex The index where SOs are stored. Typically '.kibana'. + * @param soClient The {@link SavedObjectsClientContract} to use when performing the aggregation. * @param soTypes The SO types we want to know about. * @param exclusive If `true`, the results will only contain the breakdown for the specified `soTypes`. Otherwise, it'll also return `missing` and `others` bucket. * @returns {@link SavedObjectsCounts} */ export async function getSavedObjectsCounts( - esClient: ElasticsearchClient, - kibanaIndex: string, // Typically '.kibana'. We might need a way to obtain it from the SavedObjects client (or the SavedObjects client to provide a way to run aggregations?) + soClient: SavedObjectsClientContract, soTypes: string[], exclusive: boolean = false ): Promise { - const body = await esClient.search({ - index: kibanaIndex, - ignore_unavailable: true, - filter_path: [ - 'aggregations.types.buckets', - 'aggregations.types.sum_other_doc_count', - 'hits.total', - ], - body: { - size: 0, - track_total_hits: true, - query: exclusive ? { terms: { type: soTypes } } : { match_all: {} }, - aggs: { - types: { - terms: { - field: 'type', - // If `exclusive == true`, we only care about the strict length of the provided SO types. - // Otherwise, we want to account for the `missing` bucket (size and missing option). - ...(exclusive - ? { size: soTypes.length } - : { missing: MISSING_TYPE_KEY, size: soTypes.length + 1 }), - }, + const body = await soClient.find({ + type: soTypes, + perPage: 0, + aggs: { + types: { + terms: { + field: 'type', + // If `exclusive == true`, we only care about the strict length of the provided SO types. + // Otherwise, we want to account for the `missing` bucket (size and missing option). + ...(exclusive + ? { size: soTypes.length } + : { missing: MISSING_TYPE_KEY, size: soTypes.length + 1 }), }, }, }, @@ -93,7 +81,7 @@ export async function getSavedObjectsCounts( }); return { - total: (typeof body.hits?.total === 'number' ? body.hits?.total : body.hits?.total?.value) ?? 0, + total: body.total, per_type: perType, non_expected_types: nonExpectedTypes, others: body.aggregations?.types?.sum_other_doc_count ?? 0, diff --git a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.test.ts b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.test.ts index 65003ff99c22a..cdf2ca35d6ecc 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.test.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.test.ts @@ -6,7 +6,7 @@ * Side Public License, v 1. */ -import { loggingSystemMock, elasticsearchServiceMock } from '@kbn/core/server/mocks'; +import { loggingSystemMock } from '@kbn/core/server/mocks'; import { Collector, createCollectorFetchContextMock, @@ -52,7 +52,8 @@ describe('kibana_usage', () => { }); describe('getKibanaSavedObjectCounts', () => { - const esClient = elasticsearchServiceMock.createClusterClient().asInternalUser; + const fetchContextMock = createCollectorFetchContextMock(); + const soClient = fetchContextMock.soClient; test('Get all the saved objects equal to 0 because no results were found', async () => { getSavedObjectsCountsMock.mockResolvedValueOnce({ @@ -61,7 +62,7 @@ describe('getKibanaSavedObjectCounts', () => { non_expected_types: [], others: 0, }); - const results = await getKibanaSavedObjectCounts(esClient, '.kibana'); + const results = await getKibanaSavedObjectCounts(soClient); expect(results).toStrictEqual({ dashboard: { total: 0 }, visualization: { total: 0 }, @@ -83,7 +84,7 @@ describe('getKibanaSavedObjectCounts', () => { others: 0, }); - const results = await getKibanaSavedObjectCounts(esClient, '.kibana'); + const results = await getKibanaSavedObjectCounts(soClient); expect(results).toStrictEqual({ dashboard: { total: 1 }, visualization: { total: 0 }, @@ -93,8 +94,7 @@ describe('getKibanaSavedObjectCounts', () => { }); expect(getSavedObjectsCountsMock).toHaveBeenCalledWith( - esClient, - '.kibana', + soClient, ['dashboard', 'visualization', 'search', 'index-pattern', 'graph-workspace'], true ); diff --git a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.ts index dbff86fb23ad7..9a128888f05d5 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/kibana_usage_collector.ts @@ -6,9 +6,9 @@ * Side Public License, v 1. */ -import type { ElasticsearchClient } from '@kbn/core/server'; import type { UsageCollectionSetup } from '@kbn/usage-collection-plugin/server'; import { snakeCase } from 'lodash'; +import { SavedObjectsClientContract } from '@kbn/core/server'; import { getSavedObjectsCounts } from './get_saved_object_counts'; interface KibanaSavedObjectCounts { @@ -26,10 +26,9 @@ interface KibanaUsage extends KibanaSavedObjectCounts { const TYPES = ['dashboard', 'visualization', 'search', 'index-pattern', 'graph-workspace']; export async function getKibanaSavedObjectCounts( - esClient: ElasticsearchClient, - kibanaIndex: string + soClient: SavedObjectsClientContract ): Promise { - const { per_type: buckets } = await getSavedObjectsCounts(esClient, kibanaIndex, TYPES, true); + const { per_type: buckets } = await getSavedObjectsCounts(soClient, TYPES, true); const allZeros = Object.fromEntries( TYPES.map((type) => [snakeCase(type), { total: 0 }]) @@ -80,10 +79,10 @@ export function registerKibanaUsageCollector( }, }, }, - async fetch({ esClient }) { + async fetch({ soClient }) { return { index: kibanaIndex, - ...(await getKibanaSavedObjectCounts(esClient, kibanaIndex)), + ...(await getKibanaSavedObjectCounts(soClient)), }; }, }) diff --git a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.test.ts b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.test.ts index 25ac79f88e523..53168be3c34b6 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.test.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.test.ts @@ -17,10 +17,8 @@ describe('saved_objects_count_collector', () => { const usageCollectionMock = createUsageCollectionSetupMock(); const fetchContextMock = createCollectorFetchContextMock(); - const kibanaIndex = '.kibana-tests'; - beforeAll(() => - registerSavedObjectsCountUsageCollector(usageCollectionMock, kibanaIndex, () => + registerSavedObjectsCountUsageCollector(usageCollectionMock, () => Promise.resolve(['type_one', 'type_two', 'type-three', 'type-four']) ) ); @@ -81,8 +79,7 @@ describe('saved_objects_count_collector', () => { }); expect(getSavedObjectsCountsMock).toHaveBeenCalledWith( - fetchContextMock.esClient, - kibanaIndex, + fetchContextMock.soClient, ['type_one', 'type_two', 'type-three', 'type-four'], false ); diff --git a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.ts b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.ts index 376a036a0f24a..49bfb7819389d 100644 --- a/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.ts +++ b/src/plugins/kibana_usage_collection/server/collectors/saved_objects_counts/saved_objects_count_collector.ts @@ -23,7 +23,6 @@ interface SavedObjectsCountUsage { export function registerSavedObjectsCountUsageCollector( usageCollection: UsageCollectionSetup, - kibanaIndex: string, getAllSavedObjectTypes: () => Promise ) { usageCollection.registerCollector( @@ -68,14 +67,14 @@ export function registerSavedObjectsCountUsageCollector( }, }, }, - async fetch({ esClient }) { + async fetch({ soClient }) { const allRegisteredSOTypes = await getAllSavedObjectTypes(); const { total, per_type: buckets, non_expected_types: nonRegisteredTypes, others, - } = await getSavedObjectsCounts(esClient, kibanaIndex, allRegisteredSOTypes, false); + } = await getSavedObjectsCounts(soClient, allRegisteredSOTypes, false); return { total, by_type: buckets.map(({ key: type, doc_count: count }) => ({ type, count })), diff --git a/src/plugins/kibana_usage_collection/server/plugin.ts b/src/plugins/kibana_usage_collection/server/plugin.ts index 784ab3ef4af62..8787d085c692e 100644 --- a/src/plugins/kibana_usage_collection/server/plugin.ts +++ b/src/plugins/kibana_usage_collection/server/plugin.ts @@ -148,7 +148,7 @@ export class KibanaUsageCollectionPlugin implements Plugin { .getAllTypes() .map(({ name }) => name); }; - registerSavedObjectsCountUsageCollector(usageCollection, kibanaIndex, getAllSavedObjectTypes); + registerSavedObjectsCountUsageCollector(usageCollection, getAllSavedObjectTypes); registerManagementUsageCollector(usageCollection, getUiSettingsClient); registerUiMetricUsageCollector(usageCollection, registerType, getSavedObjectsClient); registerApplicationUsageCollector( diff --git a/src/plugins/kibana_usage_collection/tsconfig.json b/src/plugins/kibana_usage_collection/tsconfig.json index 271032000d510..d56cb860cd463 100644 --- a/src/plugins/kibana_usage_collection/tsconfig.json +++ b/src/plugins/kibana_usage_collection/tsconfig.json @@ -18,6 +18,7 @@ "@kbn/logging", "@kbn/core-test-helpers-kbn-server", "@kbn/core-usage-data-server", + "@kbn/core-saved-objects-api-server", ], "exclude": [ "target/**/*", From 617debdf79a9af77164e89755f4d2defdd72fafa Mon Sep 17 00:00:00 2001 From: Sean Story Date: Tue, 18 Apr 2023 03:42:26 -0500 Subject: [PATCH 009/144] Generate the sample doc differently for sourceField vs fieldMappings (#154980) ## Summary Generates the sample document for testing your pipeline differently depending on if you are working with `sourceField` and `destinationField` vs if you're using a `FieldMapping[]`. Before: Screenshot 2023-04-14 at 2 05 58 PM After: Screenshot 2023-04-14 at 2 06 06 PM ### Checklist - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../pipelines/ml_inference/test_pipeline.tsx | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/pipelines/ml_inference/test_pipeline.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/pipelines/ml_inference/test_pipeline.tsx index 2e7fbd51e9147..5d6332b7c0475 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/pipelines/ml_inference/test_pipeline.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/pipelines/ml_inference/test_pipeline.tsx @@ -34,7 +34,7 @@ import './add_inference_pipeline_flyout.scss'; export const TestPipeline: React.FC = () => { const { addInferencePipelineModal: { - configuration: { sourceField }, + configuration: { sourceField, fieldMappings }, indexName, }, getDocumentsErr, @@ -49,6 +49,12 @@ export const TestPipeline: React.FC = () => { const isSmallerViewport = useIsWithinMaxBreakpoint('s'); const inputRef = useRef(); + const sampleFieldValue = i18n.translate( + 'xpack.enterpriseSearch.content.indices.pipelines.addInferencePipelineModal.steps.test.sampleValue', + { + defaultMessage: 'REPLACE ME', + } + ); return ( <> @@ -152,7 +158,22 @@ export const TestPipeline: React.FC = () => {

- {`[{"_index":"index","_id":"id","_source":{"${sourceField}":"bar"}}]`} + {JSON.stringify( + JSON.parse( + `[{"_index":"index", "_id":"id", "_source":{${ + fieldMappings + ? fieldMappings + .map( + (fieldMapping) => + `"${fieldMapping.sourceField}": "${sampleFieldValue}"` + ) + .join(', ') + : `"${sourceField}":"${sampleFieldValue}"` + }}}]` + ), + null, + 2 + )}
From c75863385d374b2716972f67e60f67256c899bf8 Mon Sep 17 00:00:00 2001 From: Coen Warmer Date: Tue, 18 Apr 2023 11:03:44 +0200 Subject: [PATCH 010/144] Use Observability Page Template from Observability Shared in APM and Profiling (#154776) Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- x-pack/packages/ml/agg_utils/tsconfig.json | 2 +- x-pack/plugins/apm/kibana.jsonc | 6 ++---- x-pack/plugins/apm/public/application/index.tsx | 1 + .../apm/public/components/routing/apm_error_boundary.tsx | 4 ++-- .../components/routing/templates/apm_main_template.tsx | 6 +++--- .../routing/templates/settings_template.stories.tsx | 2 +- .../public/context/apm_plugin/mock_apm_plugin_context.tsx | 1 + x-pack/plugins/apm/public/plugin.ts | 8 +++++++- x-pack/plugins/apm/tsconfig.json | 1 + x-pack/plugins/profiling/kibana.jsonc | 6 ++---- x-pack/plugins/profiling/public/plugin.tsx | 2 +- x-pack/plugins/profiling/public/types.ts | 2 ++ x-pack/plugins/profiling/tsconfig.json | 1 + 13 files changed, 25 insertions(+), 17 deletions(-) diff --git a/x-pack/packages/ml/agg_utils/tsconfig.json b/x-pack/packages/ml/agg_utils/tsconfig.json index 53328adab80f2..fc8993c828529 100644 --- a/x-pack/packages/ml/agg_utils/tsconfig.json +++ b/x-pack/packages/ml/agg_utils/tsconfig.json @@ -17,7 +17,7 @@ "@kbn/ml-is-populated-object", "@kbn/ml-string-hash", "@kbn/data-views-plugin", - "@kbn/ml-random-sampler-utils" + "@kbn/ml-random-sampler-utils", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/apm/kibana.jsonc b/x-pack/plugins/apm/kibana.jsonc index 02ca85e30f0ad..f8038cad8fff7 100644 --- a/x-pack/plugins/apm/kibana.jsonc +++ b/x-pack/plugins/apm/kibana.jsonc @@ -7,10 +7,7 @@ "id": "apm", "server": true, "browser": true, - "configPath": [ - "xpack", - "apm" - ], + "configPath": ["xpack", "apm"], "requiredPlugins": [ "data", "embeddable", @@ -19,6 +16,7 @@ "inspector", "licensing", "observability", + "observabilityShared", "exploratoryView", "ruleRegistry", "triggersActionsUi", diff --git a/x-pack/plugins/apm/public/application/index.tsx b/x-pack/plugins/apm/public/application/index.tsx index 5711b5a1f41c8..9bad342c7669e 100644 --- a/x-pack/plugins/apm/public/application/index.tsx +++ b/x-pack/plugins/apm/public/application/index.tsx @@ -49,6 +49,7 @@ export const renderApp = ({ data: pluginsStart.data, inspector: pluginsStart.inspector, observability: pluginsStart.observability, + observabilityShared: pluginsStart.observabilityShared, observabilityRuleTypeRegistry, dataViews: pluginsStart.dataViews, unifiedSearch: pluginsStart.unifiedSearch, diff --git a/x-pack/plugins/apm/public/components/routing/apm_error_boundary.tsx b/x-pack/plugins/apm/public/components/routing/apm_error_boundary.tsx index 26b641a25896d..3b7849ddacf30 100644 --- a/x-pack/plugins/apm/public/components/routing/apm_error_boundary.tsx +++ b/x-pack/plugins/apm/public/components/routing/apm_error_boundary.tsx @@ -45,9 +45,9 @@ const pageHeader = { function ErrorWithTemplate({ error }: { error: Error }) { const { services } = useKibana(); - const { observability } = services; + const { observabilityShared } = services; - const ObservabilityPageTemplate = observability.navigation.PageTemplate; + const ObservabilityPageTemplate = observabilityShared.navigation.PageTemplate; if (error instanceof NotFoundRouteException) { return ( diff --git a/x-pack/plugins/apm/public/components/routing/templates/apm_main_template.tsx b/x-pack/plugins/apm/public/components/routing/templates/apm_main_template.tsx index c4bcc4e5fc612..5704fd18058bd 100644 --- a/x-pack/plugins/apm/public/components/routing/templates/apm_main_template.tsx +++ b/x-pack/plugins/apm/public/components/routing/templates/apm_main_template.tsx @@ -7,7 +7,7 @@ import { EuiPageHeaderProps } from '@elastic/eui'; import { useKibana } from '@kbn/kibana-react-plugin/public'; -import { ObservabilityPageTemplateProps } from '@kbn/observability-plugin/public/components/shared/page_template/page_template'; +import { ObservabilityPageTemplateProps } from '@kbn/observability-shared-plugin/public'; import type { KibanaPageTemplateProps } from '@kbn/shared-ux-page-kibana-template'; import React from 'react'; import { useLocation } from 'react-router-dom'; @@ -54,10 +54,10 @@ export function ApmMainTemplate({ const location = useLocation(); const { services } = useKibana(); - const { http, docLinks, observability, application } = services; + const { http, docLinks, observabilityShared, application } = services; const basePath = http?.basePath.get(); - const ObservabilityPageTemplate = observability.navigation.PageTemplate; + const ObservabilityPageTemplate = observabilityShared.navigation.PageTemplate; const { data, status } = useFetcher((callApmApi) => { return callApmApi('GET /internal/apm/has_data'); diff --git a/x-pack/plugins/apm/public/components/routing/templates/settings_template.stories.tsx b/x-pack/plugins/apm/public/components/routing/templates/settings_template.stories.tsx index ec3188f4ff197..b214a79b7a1f8 100644 --- a/x-pack/plugins/apm/public/components/routing/templates/settings_template.stories.tsx +++ b/x-pack/plugins/apm/public/components/routing/templates/settings_template.stories.tsx @@ -16,7 +16,7 @@ import { SettingsTemplate } from './settings_template'; type Args = ComponentProps; const coreMock = { - observability: { + observabilityShared: { navigation: { PageTemplate: () => { return <>hello world; diff --git a/x-pack/plugins/apm/public/context/apm_plugin/mock_apm_plugin_context.tsx b/x-pack/plugins/apm/public/context/apm_plugin/mock_apm_plugin_context.tsx index ffca2a1b3cc4a..6924277f229c0 100644 --- a/x-pack/plugins/apm/public/context/apm_plugin/mock_apm_plugin_context.tsx +++ b/x-pack/plugins/apm/public/context/apm_plugin/mock_apm_plugin_context.tsx @@ -94,6 +94,7 @@ const mockCorePlugins = { inspector: {}, maps: {}, observability: {}, + observabilityShared: {}, data: {}, }; diff --git a/x-pack/plugins/apm/public/plugin.ts b/x-pack/plugins/apm/public/plugin.ts index ba7b455c05bb6..ac1d7294a27be 100644 --- a/x-pack/plugins/apm/public/plugin.ts +++ b/x-pack/plugins/apm/public/plugin.ts @@ -38,6 +38,10 @@ import type { LicensingPluginSetup } from '@kbn/licensing-plugin/public'; import type { MapsStartApi } from '@kbn/maps-plugin/public'; import type { MlPluginSetup, MlPluginStart } from '@kbn/ml-plugin/public'; import type { SharePluginSetup } from '@kbn/share-plugin/public'; +import type { + ObservabilitySharedPluginSetup, + ObservabilitySharedPluginStart, +} from '@kbn/observability-shared-plugin/public'; import { FetchDataParams, METRIC_TYPE, @@ -80,6 +84,7 @@ export interface ApmPluginSetupDeps { licensing: LicensingPluginSetup; ml?: MlPluginSetup; observability: ObservabilityPublicSetup; + observabilityShared: ObservabilitySharedPluginSetup; triggersActionsUi: TriggersAndActionsUIPublicPluginSetup; share: SharePluginSetup; } @@ -96,6 +101,7 @@ export interface ApmPluginStartDeps { ml?: MlPluginStart; triggersActionsUi: TriggersAndActionsUIPublicPluginStart; observability: ObservabilityPublicStart; + observabilityShared: ObservabilitySharedPluginStart; fleet?: FleetStart; fieldFormats?: FieldFormatsStart; security?: SecurityPluginStart; @@ -162,7 +168,7 @@ export class ApmPlugin implements Plugin { } // register observability nav if user has access to plugin - plugins.observability.navigation.registerSections( + plugins.observabilityShared.navigation.registerSections( from(core.getStartServices()).pipe( map(([coreStart, pluginsStart]) => { if (coreStart.application.capabilities.apm.show) { diff --git a/x-pack/plugins/apm/tsconfig.json b/x-pack/plugins/apm/tsconfig.json index 5419244c7cb15..e049bed128afa 100644 --- a/x-pack/plugins/apm/tsconfig.json +++ b/x-pack/plugins/apm/tsconfig.json @@ -83,6 +83,7 @@ "@kbn/alerts-as-data-utils", "@kbn/exploratory-view-plugin", "@kbn/logging-mocks", + "@kbn/observability-shared-plugin", ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/profiling/kibana.jsonc b/x-pack/plugins/profiling/kibana.jsonc index a1290cc79b499..bf7f17fb5e5ec 100644 --- a/x-pack/plugins/profiling/kibana.jsonc +++ b/x-pack/plugins/profiling/kibana.jsonc @@ -6,16 +6,14 @@ "id": "profiling", "server": true, "browser": true, - "configPath": [ - "xpack", - "profiling" - ], + "configPath": ["xpack", "profiling"], "requiredPlugins": [ "navigation", "data", "kibanaUtils", "share", "observability", + "observabilityShared", "features", "kibanaReact", "unifiedSearch", diff --git a/x-pack/plugins/profiling/public/plugin.tsx b/x-pack/plugins/profiling/public/plugin.tsx index ae3030b528efb..4d700d1b028fb 100644 --- a/x-pack/plugins/profiling/public/plugin.tsx +++ b/x-pack/plugins/profiling/public/plugin.tsx @@ -77,7 +77,7 @@ export class ProfilingPlugin implements Plugin { }) ); - pluginsSetup.observability.navigation.registerSections(section$); + pluginsSetup.observabilityShared.navigation.registerSections(section$); coreSetup.application.register({ id: 'profiling', diff --git a/x-pack/plugins/profiling/public/types.ts b/x-pack/plugins/profiling/public/types.ts index 42563dd3258fb..da0bc65f02d34 100644 --- a/x-pack/plugins/profiling/public/types.ts +++ b/x-pack/plugins/profiling/public/types.ts @@ -13,11 +13,13 @@ import type { ObservabilityPublicSetup, ObservabilityPublicStart, } from '@kbn/observability-plugin/public'; +import { ObservabilitySharedPluginSetup } from '@kbn/observability-shared-plugin/public/plugin'; import { ChartsPluginSetup, ChartsPluginStart } from '@kbn/charts-plugin/public'; import { LicensingPluginSetup } from '@kbn/licensing-plugin/public'; export interface ProfilingPluginPublicSetupDeps { observability: ObservabilityPublicSetup; + observabilityShared: ObservabilitySharedPluginSetup; dataViews: DataViewsPublicPluginSetup; data: DataPublicPluginSetup; charts: ChartsPluginSetup; diff --git a/x-pack/plugins/profiling/tsconfig.json b/x-pack/plugins/profiling/tsconfig.json index 4002050ee8e79..effbfc83a3716 100644 --- a/x-pack/plugins/profiling/tsconfig.json +++ b/x-pack/plugins/profiling/tsconfig.json @@ -44,6 +44,7 @@ "@kbn/i18n-react", "@kbn/ml-plugin", "@kbn/share-plugin", + "@kbn/observability-shared-plugin", "@kbn/licensing-plugin", // add references to other TypeScript projects the plugin depends on From 9d096c5623066fbd8464d61cd745fbea8a1692bf Mon Sep 17 00:00:00 2001 From: Marco Liberati Date: Tue, 18 Apr 2023 11:31:21 +0200 Subject: [PATCH 011/144] [Lens] Improve reporting size for Lens visualizations (#154931) ## Summary Fix #154894 This PR "rotate" most of Lens visualizations to have a landscape version of the PNG/PDF exports. ### Checklist Delete any items that are not applicable to this PR. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### Risk Matrix Delete this section if it is not applicable to this PR. Before closing this PR, invite QA, stakeholders, and other developers to identify risks that should be tested prior to the change/feature release. When forming the risk matrix, consider some of the following examples and how they may potentially impact the change: | Risk | Probability | Severity | Mitigation/Notes | |---------------------------|-------------|----------|-------------------------| | Multiple Spaces—unexpected behavior in non-default Kibana Space. | Low | High | Integration tests will verify that all features are still supported in non-default Kibana Space and when user switches between spaces. | | Multiple nodes—Elasticsearch polling might have race conditions when multiple Kibana nodes are polling for the same tasks. | High | Low | Tasks are idempotent, so executing them multiple times will not result in logical error, but will degrade performance. To test for this case we add plenty of unit tests around this logic and document manual testing procedure. | | Code should gracefully handle cases when feature X or plugin Y are disabled. | Medium | High | Unit tests will verify that any feature flag or plugin combination still results in our service operational. | | [See more potential risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) | ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../plugins/lens/public/app_plugin/lens_top_nav.tsx | 12 +++++++++++- .../plugins/lens/public/app_plugin/share_action.ts | 8 ++++++++ x-pack/plugins/lens/public/types.ts | 4 ++++ 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx b/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx index 2678b5a0368fb..50d70bb58ae75 100644 --- a/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx +++ b/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx @@ -37,7 +37,7 @@ import { import { combineQueryAndFilters, getLayerMetaInfo } from './show_underlying_data'; import { changeIndexPattern } from '../state_management/lens_slice'; import { LensByReferenceInput } from '../embeddable'; -import { getShareURL } from './share_action'; +import { DEFAULT_LENS_LAYOUT_DIMENSIONS, getShareURL } from './share_action'; function getSaveButtonMeta({ contextFromEmbeddable, @@ -578,6 +578,10 @@ export const LensTopNavMenu = ({ return; } + if (visualization.activeId == null || !visualizationMap[visualization.activeId]) { + return; + } + const { shareableUrl, savedObjectURL, @@ -608,6 +612,12 @@ export const LensTopNavMenu = ({ id: LENS_APP_LOCATOR, params: locatorParams, }, + layout: { + dimensions: + visualizationMap[visualization.activeId].getReportingLayout?.( + visualization.state + ) ?? DEFAULT_LENS_LAYOUT_DIMENSIONS, + }, }; share.toggleShareContextMenu({ diff --git a/x-pack/plugins/lens/public/app_plugin/share_action.ts b/x-pack/plugins/lens/public/app_plugin/share_action.ts index 55e4b978f015d..c9ec3a11ef5e7 100644 --- a/x-pack/plugins/lens/public/app_plugin/share_action.ts +++ b/x-pack/plugins/lens/public/app_plugin/share_action.ts @@ -27,6 +27,14 @@ interface ShareableConfiguration adHocDataViews?: DataViewSpec[]; } +// This approximate Lens workspace dimensions ratio on a typical widescreen +export const DEFAULT_LENS_LAYOUT_DIMENSIONS = { + width: 1793, + // this is a magic number from the reporting tool implementation + // see: x-pack/plugins/screenshotting/server/browsers/chromium/driver_factory/index.ts#L146 + height: 1086, +}; + function getShareURLForSavedObject( { application, data }: Pick, currentDoc: Document | undefined diff --git a/x-pack/plugins/lens/public/types.ts b/x-pack/plugins/lens/public/types.ts index 786d75816cafa..786fc50450a94 100644 --- a/x-pack/plugins/lens/public/types.ts +++ b/x-pack/plugins/lens/public/types.ts @@ -1292,6 +1292,10 @@ export interface Visualization { ) => Suggestion | undefined; getVisualizationInfo?: (state: T) => VisualizationInfo; + /** + * A visualization can return custom dimensions for the reporting tool + */ + getReportingLayout?: (state: T) => { height: number; width: number }; } // Use same technique as TriggerContext From 779e553f811477a9454783ab14e3596bfa508431 Mon Sep 17 00:00:00 2001 From: Marco Liberati Date: Tue, 18 Apr 2023 11:31:37 +0200 Subject: [PATCH 012/144] [Lens] Improve Ignore global filters UI (#154441) ## Summary Fixes #154316 This PR revisits partially the Layer Settings UI in order to support the `Data` and `Appereance` split in the UI and enhance the `ignore global filters` UI to make it clearer for the user the state of this setting. Screenshot 2023-04-05 at 11 57 55 when the setting is disabled (to use global filters) then nothing is shown: Screenshot 2023-04-05 at 11 59 18 On Annotations layer that is the only available setting: Screenshot 2023-04-05 at 11 58 03 The new refactoring can now handle multiple settings for each panel section as shown in the Partition charts settings panel: Screenshot 2023-04-05 at 12 20 35 ### Checklist Delete any items that are not applicable to this PR. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### Risk Matrix Delete this section if it is not applicable to this PR. Before closing this PR, invite QA, stakeholders, and other developers to identify risks that should be tested prior to the change/feature release. When forming the risk matrix, consider some of the following examples and how they may potentially impact the change: | Risk | Probability | Severity | Mitigation/Notes | |---------------------------|-------------|----------|-------------------------| | Multiple Spaces—unexpected behavior in non-default Kibana Space. | Low | High | Integration tests will verify that all features are still supported in non-default Kibana Space and when user switches between spaces. | | Multiple nodes—Elasticsearch polling might have race conditions when multiple Kibana nodes are polling for the same tasks. | High | Low | Tasks are idempotent, so executing them multiple times will not result in logical error, but will degrade performance. To test for this case we add plenty of unit tests around this logic and document manual testing procedure. | | Code should gracefully handle cases when feature X or plugin Y are disabled. | Medium | High | Unit tests will verify that any feature flag or plugin combination still results in our service operational. | | [See more potential risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) | ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --------- Co-authored-by: Stratoula Kalafateli --- .../datasources/form_based/form_based.tsx | 6 +- .../datasources/form_based/layer_settings.tsx | 161 ++++++++---------- .../datasources/form_based/layerpanel.tsx | 25 ++- .../form_based}/sampling_icon.tsx | 0 .../editor_frame/config_panel/layer_panel.tsx | 62 ++++++- .../dataview_picker/dataview_picker.tsx | 103 +---------- .../dataview_picker/trigger.tsx | 101 +++++++++++ x-pack/plugins/lens/public/types.ts | 4 +- .../partition/layer_settings.test.tsx | 9 +- .../partition/layer_settings.tsx | 59 ++++--- .../partition/visualization.test.ts | 21 ++- .../partition/visualization.tsx | 2 +- .../visualizations/xy/annotations/actions.ts | 35 +--- .../visualizations/xy/layer_settings.tsx | 53 ++++++ .../visualizations/xy/visualization.test.ts | 98 ++++++----- .../visualizations/xy/visualization.tsx | 47 +++-- .../xy/xy_config_panel/layer_header.tsx | 31 +++- .../translations/translations/fr-FR.json | 4 - .../translations/translations/ja-JP.json | 4 - .../translations/translations/zh-CN.json | 4 - .../apps/lens/group1/layer_actions.ts | 14 +- 21 files changed, 488 insertions(+), 355 deletions(-) rename x-pack/plugins/lens/public/{shared_components/dataview_picker => datasources/form_based}/sampling_icon.tsx (100%) create mode 100644 x-pack/plugins/lens/public/shared_components/dataview_picker/trigger.tsx create mode 100644 x-pack/plugins/lens/public/visualizations/xy/layer_settings.tsx diff --git a/x-pack/plugins/lens/public/datasources/form_based/form_based.tsx b/x-pack/plugins/lens/public/datasources/form_based/form_based.tsx index 4152212e51fea..dbe6fcafd0ed0 100644 --- a/x-pack/plugins/lens/public/datasources/form_based/form_based.tsx +++ b/x-pack/plugins/lens/public/datasources/form_based/form_based.tsx @@ -37,7 +37,6 @@ import type { IndexPatternField, IndexPattern, IndexPatternRef, - DatasourceLayerSettingsProps, DataSourceInfo, UserMessage, FrameDatasourceAPI, @@ -429,10 +428,7 @@ export function getFormBasedDatasource({ toExpression: (state, layerId, indexPatterns, dateRange, searchSessionId) => toExpression(state, layerId, indexPatterns, uiSettings, dateRange, searchSessionId), - renderLayerSettings( - domElement: Element, - props: DatasourceLayerSettingsProps - ) { + renderLayerSettings(domElement, props) { render( diff --git a/x-pack/plugins/lens/public/datasources/form_based/layer_settings.tsx b/x-pack/plugins/lens/public/datasources/form_based/layer_settings.tsx index 38da5475e22e1..c79bc41dd7dd7 100644 --- a/x-pack/plugins/lens/public/datasources/form_based/layer_settings.tsx +++ b/x-pack/plugins/lens/public/datasources/form_based/layer_settings.tsx @@ -109,101 +109,86 @@ export function LayerSettingsPanel({ setState, layerId, }: DatasourceLayerSettingsProps) { - const { euiTheme } = useEuiTheme(); const isSamplingValueDisabled = !isSamplingValueEnabled(state.layers[layerId]); const currentValue = isSamplingValueDisabled ? samplingValues[samplingValues.length - 1] : state.layers[layerId].sampling; return ( -
- -

- {i18n.translate('xpack.lens.indexPattern.layerSettings.headingData', { - defaultMessage: 'Data', - })} -

-
- - -

- - - - ), - }} - /> -

- - } - label={ - <> - {i18n.translate('xpack.lens.indexPattern.randomSampling.label', { - defaultMessage: 'Sampling', - })}{' '} - + +

+ + + + ), + }} + /> +

+ + } + label={ + <> + {i18n.translate('xpack.lens.indexPattern.randomSampling.label', { + defaultMessage: 'Sampling', + })}{' '} + + - - - - } - > - { - setState({ - ...state, - layers: { - ...state.layers, - [layerId]: { - ...state.layers[layerId], - sampling: newSamplingValue, - }, + size="s" + /> +
+ + } + > + { + setState({ + ...state, + layers: { + ...state.layers, + [layerId]: { + ...state.layers[layerId], + sampling: newSamplingValue, }, - }); - }} - /> -
-
+ }, + }); + }} + /> + ); } diff --git a/x-pack/plugins/lens/public/datasources/form_based/layerpanel.tsx b/x-pack/plugins/lens/public/datasources/form_based/layerpanel.tsx index 1de4d0844245f..5832f8094a856 100644 --- a/x-pack/plugins/lens/public/datasources/form_based/layerpanel.tsx +++ b/x-pack/plugins/lens/public/datasources/form_based/layerpanel.tsx @@ -8,10 +8,12 @@ import React from 'react'; import { I18nProvider } from '@kbn/i18n-react'; import { i18n } from '@kbn/i18n'; +import { useEuiTheme } from '@elastic/eui'; import { DatasourceLayerPanelProps } from '../../types'; import { FormBasedPrivateState } from './types'; import { ChangeIndexPattern } from '../../shared_components/dataview_picker/dataview_picker'; import { getSamplingValue } from './utils'; +import { RandomSamplingIcon } from './sampling_icon'; export interface FormBasedLayerPanelProps extends DatasourceLayerPanelProps { state: FormBasedPrivateState; @@ -25,6 +27,7 @@ export function LayerPanel({ dataViews, }: FormBasedLayerPanelProps) { const layer = state.layers[layerId]; + const { euiTheme } = useEuiTheme(); const indexPattern = dataViews.indexPatterns[layer.indexPatternId]; const notFoundTitleLabel = i18n.translate('xpack.lens.layerPanel.missingDataView', { @@ -38,6 +41,26 @@ export function LayerPanel({ }; }); + const samplingValue = getSamplingValue(layer); + const extraIconLabelProps = + samplingValue !== 1 + ? { + icon: { + component: ( + + ), + value: `${samplingValue * 100}%`, + tooltipValue: i18n.translate('xpack.lens.indexPattern.randomSamplingInfo', { + defaultMessage: '{value}% sampling', + values: { + value: samplingValue * 100, + }, + }), + 'data-test-subj': 'lnsChangeIndexPatternSamplingInfo', + }, + } + : {}; + return ( + activeVisualization.hasLayerSettings?.({ + layerId, + state: visualizationState, + frame: props.framePublicAPI, + }) || { data: false, appearance: false }, + [activeVisualization, layerId, props.framePublicAPI, visualizationState] + ); + const compatibleActions = useMemo( () => [ @@ -341,11 +351,7 @@ export function LayerPanel( isOnlyLayer, isTextBasedLanguage, hasLayerSettings: Boolean( - (activeVisualization.hasLayerSettings?.({ - layerId, - state: visualizationState, - frame: props.framePublicAPI, - }) && + (Object.values(visualizationLayerSettings).some(Boolean) && activeVisualization.renderLayerSettings) || layerDatasource?.renderLayerSettings ), @@ -364,8 +370,8 @@ export function LayerPanel( layerIndex, onCloneLayer, onRemoveLayer, - props.framePublicAPI, updateVisualization, + visualizationLayerSettings, visualizationState, ] ); @@ -682,15 +688,56 @@ export function LayerPanel( >
+ {layerDatasource?.renderLayerSettings || visualizationLayerSettings.data ? ( + +

+ {i18n.translate('xpack.lens.editorFrame.layerSettings.headingData', { + defaultMessage: 'Data', + })} +

+
+ ) : null} {layerDatasource?.renderLayerSettings && ( <> - )} + {layerDatasource?.renderLayerSettings && visualizationLayerSettings.data ? ( + + ) : null} + {activeVisualization?.renderLayerSettings && visualizationLayerSettings.data ? ( + + ) : null} + {visualizationLayerSettings.appearance ? ( + +

+ {i18n.translate('xpack.lens.editorFrame.layerSettings.headingAppearance', { + defaultMessage: 'Appearance', + })} +

+
+ ) : null} {activeVisualization?.renderLayerSettings && ( )} diff --git a/x-pack/plugins/lens/public/shared_components/dataview_picker/dataview_picker.tsx b/x-pack/plugins/lens/public/shared_components/dataview_picker/dataview_picker.tsx index 6467cbcb58494..9d55284cc36c8 100644 --- a/x-pack/plugins/lens/public/shared_components/dataview_picker/dataview_picker.tsx +++ b/x-pack/plugins/lens/public/shared_components/dataview_picker/dataview_picker.tsx @@ -7,109 +7,10 @@ import { i18n } from '@kbn/i18n'; import React, { useState } from 'react'; -import { - EuiFlexGroup, - EuiFlexItem, - EuiPopover, - EuiPopoverTitle, - EuiSelectableProps, - EuiTextColor, - EuiToolTip, - useEuiTheme, -} from '@elastic/eui'; +import { EuiPopover, EuiPopoverTitle, EuiSelectableProps } from '@elastic/eui'; import { DataViewsList } from '@kbn/unified-search-plugin/public'; -import { css } from '@emotion/react'; import { type IndexPatternRef } from '../../types'; -import { type ToolbarButtonProps, ToolbarButton } from './toolbar_button'; -import { RandomSamplingIcon } from './sampling_icon'; - -export type ChangeIndexPatternTriggerProps = ToolbarButtonProps & { - label: string; - title?: string; - isDisabled?: boolean; - samplingValue?: number; -}; - -function TriggerButton({ - label, - title, - togglePopover, - isMissingCurrent, - samplingValue, - ...rest -}: ChangeIndexPatternTriggerProps & - ToolbarButtonProps & { - togglePopover: () => void; - isMissingCurrent?: boolean; - }) { - const { euiTheme } = useEuiTheme(); - // be careful to only add color with a value, otherwise it will fallbacks to "primary" - const colorProp = isMissingCurrent - ? { - color: 'danger' as const, - } - : {}; - const content = - samplingValue != null && samplingValue !== 1 ? ( - - - {label} - - - - - - - - - - {samplingValue * 100}% - - - - - - - ) : ( - label - ); - return ( - togglePopover()} - fullWidth - {...colorProp} - {...rest} - textProps={{ style: { width: '100%' } }} - > - {content} - - ); -} +import { type ChangeIndexPatternTriggerProps, TriggerButton } from './trigger'; export function ChangeIndexPattern({ indexPatternRefs, diff --git a/x-pack/plugins/lens/public/shared_components/dataview_picker/trigger.tsx b/x-pack/plugins/lens/public/shared_components/dataview_picker/trigger.tsx new file mode 100644 index 0000000000000..038b1d5aec960 --- /dev/null +++ b/x-pack/plugins/lens/public/shared_components/dataview_picker/trigger.tsx @@ -0,0 +1,101 @@ +/* + * 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 { useEuiTheme, EuiFlexGroup, EuiFlexItem, EuiToolTip, EuiTextColor } from '@elastic/eui'; +import { css } from '@emotion/react'; +import React from 'react'; +import { ToolbarButton, ToolbarButtonProps } from './toolbar_button'; + +interface TriggerLabelProps { + label: string; + icon?: { + component: React.ReactElement; + value?: string; + tooltipValue?: string; + 'data-test-subj': string; + }; +} + +export type ChangeIndexPatternTriggerProps = ToolbarButtonProps & + TriggerLabelProps & { + label: string; + title?: string; + isDisabled?: boolean; + }; + +function TriggerLabel({ label, icon }: TriggerLabelProps) { + const { euiTheme } = useEuiTheme(); + if (!icon) { + return <>{label}; + } + return ( + + + {label} + + + + + {icon.component} + {icon.value ? ( + + {icon.value} + + ) : null} + + + + + ); +} + +export function TriggerButton({ + label, + title, + togglePopover, + isMissingCurrent, + icon, + ...rest +}: ChangeIndexPatternTriggerProps & { + togglePopover: () => void; + isMissingCurrent?: boolean; +}) { + // be careful to only add color with a value, otherwise it will fallbacks to "primary" + const colorProp = isMissingCurrent + ? { + color: 'danger' as const, + } + : {}; + return ( + togglePopover()} + fullWidth + {...colorProp} + {...rest} + textProps={{ style: { width: '100%' } }} + > + + + ); +} diff --git a/x-pack/plugins/lens/public/types.ts b/x-pack/plugins/lens/public/types.ts index 786fc50450a94..faa3d8e14e5bd 100644 --- a/x-pack/plugins/lens/public/types.ts +++ b/x-pack/plugins/lens/public/types.ts @@ -1189,11 +1189,11 @@ export interface Visualization { /** * Allows the visualization to announce whether or not it has any settings to show */ - hasLayerSettings?: (props: VisualizationConfigProps) => boolean; + hasLayerSettings?: (props: VisualizationConfigProps) => Record<'data' | 'appearance', boolean>; renderLayerSettings?: ( domElement: Element, - props: VisualizationLayerSettingsProps + props: VisualizationLayerSettingsProps & { section: 'data' | 'appearance' } ) => ((cleanupElement: Element) => void) | void; /** diff --git a/x-pack/plugins/lens/public/visualizations/partition/layer_settings.test.tsx b/x-pack/plugins/lens/public/visualizations/partition/layer_settings.test.tsx index 9acedbc9b8dd2..2fed483cddfaf 100644 --- a/x-pack/plugins/lens/public/visualizations/partition/layer_settings.test.tsx +++ b/x-pack/plugins/lens/public/visualizations/partition/layer_settings.test.tsx @@ -25,12 +25,15 @@ describe('layer settings', () => { }); const layerId = 'layer-id'; - const props: VisualizationLayerSettingsProps = { + const props: VisualizationLayerSettingsProps & { + section: 'data' | 'appearance'; + } = { setState: jest.fn(), layerId, state: getState(false), frame: {} as FramePublicAPI, panelRef: {} as React.MutableRefObject, + section: 'data', }; it('toggles multiple metrics', () => { @@ -90,5 +93,9 @@ describe('layer settings', () => { ).isEmptyRender() ).toBeTruthy(); }); + + test('should not render anything for the appearance section', () => { + expect(shallow().isEmptyRender()); + }); }); }); diff --git a/x-pack/plugins/lens/public/visualizations/partition/layer_settings.tsx b/x-pack/plugins/lens/public/visualizations/partition/layer_settings.tsx index 39da4fbfe0595..6f13800a91a2c 100644 --- a/x-pack/plugins/lens/public/visualizations/partition/layer_settings.tsx +++ b/x-pack/plugins/lens/public/visualizations/partition/layer_settings.tsx @@ -12,7 +12,12 @@ import { PieChartTypes } from '../../../common/constants'; import { PieVisualizationState } from '../..'; import { VisualizationLayerSettingsProps } from '../../types'; -export function LayerSettings(props: VisualizationLayerSettingsProps) { +export function LayerSettings( + props: VisualizationLayerSettingsProps & { section: 'data' | 'appearance' } +) { + if (props.section === 'appearance') { + return null; + } if (props.state.shape === PieChartTypes.MOSAIC) { return null; } @@ -24,29 +29,33 @@ export function LayerSettings(props: VisualizationLayerSettingsProps - - { - props.setState({ - ...props.state, - layers: props.state.layers.map((layer) => - layer.layerId !== props.layerId - ? layer - : { - ...layer, - allowMultipleMetrics: !layer.allowMultipleMetrics, - } - ), - }); - }} - /> - - + + { + props.setState({ + ...props.state, + layers: props.state.layers.map((layer) => + layer.layerId !== props.layerId + ? layer + : { + ...layer, + allowMultipleMetrics: !layer.allowMultipleMetrics, + } + ), + }); + }} + /> + ); } diff --git a/x-pack/plugins/lens/public/visualizations/partition/visualization.test.ts b/x-pack/plugins/lens/public/visualizations/partition/visualization.test.ts index 02932a0aa5e1c..3a4b0545a42ea 100644 --- a/x-pack/plugins/lens/public/visualizations/partition/visualization.test.ts +++ b/x-pack/plugins/lens/public/visualizations/partition/visualization.test.ts @@ -617,10 +617,10 @@ describe('pie_visualization', () => { }); }); - it.each(Object.values(PieChartTypes).filter((type) => type !== 'mosaic'))( + it.each(Object.values(PieChartTypes).filter((type) => type !== PieChartTypes.MOSAIC))( '%s adds fake dimension', (type) => { - const state = { ...getExampleState(), type }; + const state = { ...getExampleState(), shape: type }; state.layers[0].metrics.push('1', '2'); state.layers[0].allowMultipleMetrics = true; expect( @@ -645,4 +645,21 @@ describe('pie_visualization', () => { } ); }); + + describe('layer settings', () => { + describe('hasLayerSettings', () => { + it('should have data settings for all partition chart types but mosaic', () => { + for (const type of Object.values(PieChartTypes)) { + const state = { ...getExampleState(), shape: type }; + expect( + pieVisualization.hasLayerSettings?.({ + state, + frame: mockFrame(), + layerId: state.layers[0].layerId, + }) + ).toEqual({ data: type !== PieChartTypes.MOSAIC, appearance: false }); + } + }); + }); + }); }); diff --git a/x-pack/plugins/lens/public/visualizations/partition/visualization.tsx b/x-pack/plugins/lens/public/visualizations/partition/visualization.tsx index 8340b5a5e254b..da52c6efc105b 100644 --- a/x-pack/plugins/lens/public/visualizations/partition/visualization.tsx +++ b/x-pack/plugins/lens/public/visualizations/partition/visualization.tsx @@ -504,7 +504,7 @@ export const getPieVisualization = ({ }, hasLayerSettings(props) { - return props.state.shape !== 'mosaic'; + return { data: props.state.shape !== PieChartTypes.MOSAIC, appearance: false }; }, renderLayerSettings(domElement, props) { diff --git a/x-pack/plugins/lens/public/visualizations/xy/annotations/actions.ts b/x-pack/plugins/lens/public/visualizations/xy/annotations/actions.ts index 68938fbee5211..cb3afbcb14c91 100644 --- a/x-pack/plugins/lens/public/visualizations/xy/annotations/actions.ts +++ b/x-pack/plugins/lens/public/visualizations/xy/annotations/actions.ts @@ -5,13 +5,10 @@ * 2.0. */ -import { i18n } from '@kbn/i18n'; import type { LayerActionFromVisualization } from '../../../types'; import type { XYState, XYAnnotationLayerConfig } from '../types'; -export const IGNORE_GLOBAL_FILTERS_ACTION_ID = 'ignoreGlobalFilters'; -export const KEEP_GLOBAL_FILTERS_ACTION_ID = 'keepGlobalFilters'; - +// Leaving the stub for annotation groups export const createAnnotationActions = ({ state, layer, @@ -21,33 +18,5 @@ export const createAnnotationActions = ({ layer: XYAnnotationLayerConfig; layerIndex: number; }): LayerActionFromVisualization[] => { - const label = !layer.ignoreGlobalFilters - ? i18n.translate('xpack.lens.xyChart.annotations.ignoreGlobalFiltersLabel', { - defaultMessage: 'Ignore global filters', - }) - : i18n.translate('xpack.lens.xyChart.annotations.keepGlobalFiltersLabel', { - defaultMessage: 'Keep global filters', - }); - return [ - { - id: !layer.ignoreGlobalFilters - ? IGNORE_GLOBAL_FILTERS_ACTION_ID - : KEEP_GLOBAL_FILTERS_ACTION_ID, - displayName: label, - description: !layer.ignoreGlobalFilters - ? i18n.translate('xpack.lens.xyChart.annotations.ignoreGlobalFiltersDescription', { - defaultMessage: - 'All the dimensions configured in this layer ignore filters defined at kibana level.', - }) - : i18n.translate('xpack.lens.xyChart.annotations.keepGlobalFiltersDescription', { - defaultMessage: - 'All the dimensions configured in this layer respect filters defined at kibana level.', - }), - icon: !layer.ignoreGlobalFilters ? 'filterIgnore' : 'filter', - isCompatible: true, - 'data-test-subj': !layer.ignoreGlobalFilters - ? 'lnsXY_annotationLayer_ignoreFilters' - : 'lnsXY_annotationLayer_keepFilters', - }, - ]; + return []; }; diff --git a/x-pack/plugins/lens/public/visualizations/xy/layer_settings.tsx b/x-pack/plugins/lens/public/visualizations/xy/layer_settings.tsx new file mode 100644 index 0000000000000..55091aa0d1d40 --- /dev/null +++ b/x-pack/plugins/lens/public/visualizations/xy/layer_settings.tsx @@ -0,0 +1,53 @@ +/* + * 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 { EuiFormRow, EuiSwitch } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; +import React from 'react'; +import type { VisualizationLayerSettingsProps } from '../../types'; +import type { XYState } from './types'; +import { isAnnotationsLayer } from './visualization_helpers'; + +export function LayerSettings({ + state, + setState, + section, + layerId, +}: VisualizationLayerSettingsProps & { section: 'data' | 'appearance' }) { + if (section === 'appearance') { + return null; + } + const layer = state.layers.find((l) => l.layerId === layerId); + if (!layer || !isAnnotationsLayer(layer)) { + return null; + } + return ( + + { + const layerIndex = state.layers.findIndex((l) => l === layer); + const newLayer = { ...layer, ignoreGlobalFilters: !layer.ignoreGlobalFilters }; + const newLayers = [...state.layers]; + newLayers[layerIndex] = newLayer; + setState({ ...state, layers: newLayers }); + }} + compressed + /> + + ); +} diff --git a/x-pack/plugins/lens/public/visualizations/xy/visualization.test.ts b/x-pack/plugins/lens/public/visualizations/xy/visualization.test.ts index 159014b043aec..9b82ab8c0d90e 100644 --- a/x-pack/plugins/lens/public/visualizations/xy/visualization.test.ts +++ b/x-pack/plugins/lens/public/visualizations/xy/visualization.test.ts @@ -37,7 +37,6 @@ import { DataViewsState } from '../../state_management'; import { createMockedIndexPattern } from '../../datasources/form_based/mocks'; import { createMockDataViewsState } from '../../data_views_service/mocks'; import { unifiedSearchPluginMock } from '@kbn/unified-search-plugin/public/mocks'; -import { KEEP_GLOBAL_FILTERS_ACTION_ID } from './annotations/actions'; import { layerTypes, Visualization } from '../..'; const DATE_HISTORGRAM_COLUMN_ID = 'date_histogram_column'; @@ -3022,7 +3021,7 @@ describe('xy_visualization', () => { ); }); - it('should return one action for an annotation layer', () => { + it('should return no action for an annotation layer', () => { const baseState = exampleState(); expect( xyVisualization.getSupportedActionsForLayer?.('annotation', { @@ -3038,53 +3037,64 @@ describe('xy_visualization', () => { }, ], }) - ).toEqual([ - expect.objectContaining({ - displayName: 'Keep global filters', - description: - 'All the dimensions configured in this layer respect filters defined at kibana level.', - icon: 'filter', - isCompatible: true, - 'data-test-subj': 'lnsXY_annotationLayer_keepFilters', - }), - ]); + ).toHaveLength(0); }); + }); - it('should handle an annotation action', () => { - const baseState = exampleState(); - const state = { - ...baseState, - layers: [ - ...baseState.layers, - { - layerId: 'annotation', - layerType: layerTypes.ANNOTATIONS, - annotations: [exampleAnnotation2], - ignoreGlobalFilters: true, - indexPatternId: 'myIndexPattern', - }, - ], - }; + describe('layer settings', () => { + describe('hasLayerSettings', () => { + it('should expose no settings for a data or reference lines layer', () => { + const baseState = exampleState(); + expect( + xyVisualization.hasLayerSettings?.({ + state: baseState, + frame: createMockFramePublicAPI(), + layerId: 'first', + }) + ).toEqual({ data: false, appearance: false }); - const newState = xyVisualization.onLayerAction!( - 'annotation', - KEEP_GLOBAL_FILTERS_ACTION_ID, - state - ); + expect( + xyVisualization.hasLayerSettings?.({ + state: { + ...baseState, + layers: [ + ...baseState.layers, + { + layerId: 'referenceLine', + layerType: layerTypes.REFERENCELINE, + accessors: [], + yConfig: [{ axisMode: 'left', forAccessor: 'a' }], + }, + ], + }, + frame: createMockFramePublicAPI(), + layerId: 'referenceLine', + }) + ).toEqual({ data: false, appearance: false }); + }); - expect(newState).toEqual( - expect.objectContaining({ - layers: expect.arrayContaining([ - { - layerId: 'annotation', - layerType: layerTypes.ANNOTATIONS, - annotations: [exampleAnnotation2], - ignoreGlobalFilters: false, - indexPatternId: 'myIndexPattern', + it('should expose data settings for an annotation layer', () => { + const baseState = exampleState(); + expect( + xyVisualization.hasLayerSettings?.({ + state: { + ...baseState, + layers: [ + ...baseState.layers, + { + layerId: 'annotation', + layerType: layerTypes.ANNOTATIONS, + annotations: [exampleAnnotation2], + ignoreGlobalFilters: true, + indexPatternId: 'myIndexPattern', + }, + ], }, - ]), - }) - ); + frame: createMockFramePublicAPI(), + layerId: 'annotation', + }) + ).toEqual({ data: true, appearance: false }); + }); }); }); }); diff --git a/x-pack/plugins/lens/public/visualizations/xy/visualization.tsx b/x-pack/plugins/lens/public/visualizations/xy/visualization.tsx index 274b82e5a1cf4..2f5df56c7b42d 100644 --- a/x-pack/plugins/lens/public/visualizations/xy/visualization.tsx +++ b/x-pack/plugins/lens/public/visualizations/xy/visualization.tsx @@ -49,7 +49,6 @@ import { type XYDataLayerConfig, type SeriesType, type PersistedState, - type XYAnnotationLayerConfig, visualizationTypes, } from './types'; import { @@ -103,12 +102,8 @@ import { AnnotationsPanel } from './xy_config_panel/annotations_config_panel'; import { DimensionTrigger } from '../../shared_components/dimension_trigger'; import { defaultAnnotationLabel } from './annotations/helpers'; import { onDropForVisualization } from '../../editor_frame_service/editor_frame/config_panel/buttons/drop_targets_utils'; -import { - createAnnotationActions, - IGNORE_GLOBAL_FILTERS_ACTION_ID, - KEEP_GLOBAL_FILTERS_ACTION_ID, -} from './annotations/actions'; import { IgnoredGlobalFiltersEntries } from './info_badges'; +import { LayerSettings } from './layer_settings'; const XY_ID = 'lnsXY'; export const getXyVisualization = ({ @@ -263,31 +258,27 @@ export const getXyVisualization = ({ ]; }, - getSupportedActionsForLayer(layerId, state) { - const layerIndex = state.layers.findIndex((l) => l.layerId === layerId); - const layer = state.layers[layerIndex]; - const actions = []; - if (isAnnotationsLayer(layer)) { - actions.push(...createAnnotationActions({ state, layerIndex, layer })); - } - return actions; + getSupportedActionsForLayer() { + return []; }, - onLayerAction(layerId, actionId, state) { - if ([IGNORE_GLOBAL_FILTERS_ACTION_ID, KEEP_GLOBAL_FILTERS_ACTION_ID].includes(actionId)) { - return { - ...state, - layers: state.layers.map((layer) => - layer.layerId === layerId - ? { - ...layer, - ignoreGlobalFilters: !(layer as XYAnnotationLayerConfig).ignoreGlobalFilters, - } - : layer - ), - }; - } + hasLayerSettings({ state, layerId: currentLayerId }) { + const layer = state.layers?.find(({ layerId }) => layerId === currentLayerId); + return { data: Boolean(layer && isAnnotationsLayer(layer)), appearance: false }; + }, + + renderLayerSettings(domElement, props) { + render( + + + + + , + domElement + ); + }, + onLayerAction(layerId, actionId, state) { return state; }, diff --git a/x-pack/plugins/lens/public/visualizations/xy/xy_config_panel/layer_header.tsx b/x-pack/plugins/lens/public/visualizations/xy/xy_config_panel/layer_header.tsx index 819dfe13c2ba2..1983094f483b9 100644 --- a/x-pack/plugins/lens/public/visualizations/xy/xy_config_panel/layer_header.tsx +++ b/x-pack/plugins/lens/public/visualizations/xy/xy_config_panel/layer_header.tsx @@ -7,9 +7,17 @@ import React, { useState } from 'react'; import { i18n } from '@kbn/i18n'; -import { EuiIcon, EuiPopover, EuiSelectable, EuiText, EuiPopoverTitle } from '@elastic/eui'; +import { + EuiIcon, + EuiPopover, + EuiSelectable, + EuiText, + EuiPopoverTitle, + useEuiTheme, +} from '@elastic/eui'; import { ToolbarButton } from '@kbn/kibana-react-plugin/public'; import { IconChartBarReferenceLine, IconChartBarAnnotations } from '@kbn/chart-icons'; +import { css } from '@emotion/react'; import type { VisualizationLayerHeaderContentProps, VisualizationLayerWidgetProps, @@ -71,6 +79,7 @@ function AnnotationLayerHeaderContent({ layerId, onChangeIndexPattern, }: VisualizationLayerHeaderContentProps) { + const { euiTheme } = useEuiTheme(); const notFoundTitleLabel = i18n.translate('xpack.lens.layerPanel.missingDataView', { defaultMessage: 'Data view not found', }); @@ -78,6 +87,25 @@ function AnnotationLayerHeaderContent({ const layer = state.layers[layerIndex] as XYAnnotationLayerConfig; const currentIndexPattern = frame.dataViews.indexPatterns[layer.indexPatternId]; + const extraIconLabelProps = !layer.ignoreGlobalFilters + ? {} + : { + icon: { + component: ( + + ), + tooltipValue: i18n.translate('xpack.lens.layerPanel.ignoreGlobalFilters', { + defaultMessage: 'Ignore global filters', + }), + 'data-test-subj': 'lnsChangeIndexPatternIgnoringFilters', + }, + }; return ( { + it('should add an annotation layer and settings shoud be available with ignore filters', async () => { // configure a date histogram await PageObjects.lens.configureDimension({ dimension: 'lnsXY_xDimensionPanel > lns-empty-dimension', @@ -65,10 +65,16 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { }); // add annotation layer await PageObjects.lens.createLayer('annotations'); + + expect(await testSubjects.exists('lnsChangeIndexPatternIgnoringFilters')).to.be(true); + await PageObjects.lens.openLayerContextMenu(1); - await testSubjects.existOrFail('lnsXY_annotationLayer_keepFilters'); - // layer settings not available - await testSubjects.missingOrFail('lnsLayerSettings'); + await testSubjects.click('lnsLayerSettings'); + // annotations settings have only ignore filters + await testSubjects.click('lnsXY-layerSettings-ignoreGlobalFilters'); + // now close the panel and check the dataView picker has no icon + await testSubjects.click('lns-indexPattern-dimensionContainerBack'); + expect(await testSubjects.exists('lnsChangeIndexPatternIgnoringFilters')).to.be(false); }); it('should add a new visualization layer and disable the sampling if max operation is chosen', async () => { From e472ed5fbac5c13e669274365daac39ce20e627a Mon Sep 17 00:00:00 2001 From: Marco Antonio Ghiani Date: Tue, 18 Apr 2023 12:03:24 +0200 Subject: [PATCH 013/144] [Logs UI]: Fix log error on fetching previous entries (#154459) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 📓 Summary Closes #151700 As shown in the video on [this comment](https://github.com/elastic/kibana/issues/151700#issuecomment-1497246729), the issue was reproduced when jumping to the lowest possible edge of the available logs in the lateral timeline. In case there are no existing logs before the selected time cursor, the `topCursor` value required for the previous logs call is set to `null` and the error was triggered. I believe in this case the conditional to trigger the error should not only rely on the missing `topCursor` variable existence, but we should also check whether previous logs exist with the `hasMoreBefore` state value. These are the conditionals in order of execution: - Top cursor missing but has more previous entries ➡️ trigger the Error - No more previous entries and the request is not forced ➡️ Short circuit data fetching - Top cursor exists => Trigger the request for previous entries. These changes also spotted an existing bug where the `hasMoreBefore` was never set to the API response value, but was always `true`, preventing also showing the "Expand time range" call to action on the scenario described above. ## 🧪 Testing - Navigate to Logs stream - Jump to a point in time that has no logs previously ingested - Verify the error is not logged when scrolling and that the "extend range" button is shown https://user-images.githubusercontent.com/34506779/230292210-c2690c37-efa1-4b05-a237-f14eb78d26eb.mov --------- Co-authored-by: Marco Antonio Ghiani Co-authored-by: Carlos Crespo --- .../containers/logs/log_stream/index.ts | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/x-pack/plugins/infra/public/containers/logs/log_stream/index.ts b/x-pack/plugins/infra/public/containers/logs/log_stream/index.ts index e1b425b112f8c..1e63c4f5204c7 100644 --- a/x-pack/plugins/infra/public/containers/logs/log_stream/index.ts +++ b/x-pack/plugins/infra/public/containers/logs/log_stream/index.ts @@ -109,7 +109,7 @@ export function useLogStream({ ...(resetOnSuccess ? INITIAL_STATE : prevState), entries: combined.entries, hasMoreAfter: combined.hasMoreAfter ?? prevState.hasMoreAfter, - hasMoreBefore: combined.hasMoreAfter ?? prevState.hasMoreAfter, + hasMoreBefore: combined.hasMoreBefore ?? prevState.hasMoreBefore, bottomCursor: combined.bottomCursor, topCursor: combined.topCursor, lastLoadedTime: new Date(), @@ -151,9 +151,9 @@ export function useLogStream({ const fetchPreviousEntries = useCallback( (params) => { - if (state.topCursor === null) { + if (state.topCursor === null && state.hasMoreBefore) { throw new Error( - 'useLogStream: Cannot fetch previous entries. No cursor is set.\nEnsure you have called `fetchEntries` at least once.' + 'useLogStream: Cannot fetch previous entries.\nIt seems there are more entries available, but no cursor is set.\nEnsure you have called `fetchEntries` at least once.' ); } @@ -161,10 +161,12 @@ export function useLogStream({ return; } - fetchLogEntriesBefore(state.topCursor, { - size: LOG_ENTRIES_CHUNK_SIZE, - extendTo: params?.extendTo, - }); + if (state.topCursor !== null) { + fetchLogEntriesBefore(state.topCursor, { + size: LOG_ENTRIES_CHUNK_SIZE, + extendTo: params?.extendTo, + }); + } }, [fetchLogEntriesBefore, state.topCursor, state.hasMoreBefore] ); @@ -198,7 +200,7 @@ export function useLogStream({ const fetchNextEntries = useCallback( (params) => { - if (state.bottomCursor === null) { + if (state.bottomCursor === null && state.hasMoreAfter) { throw new Error( 'useLogStream: Cannot fetch next entries. No cursor is set.\nEnsure you have called `fetchEntries` at least once.' ); @@ -208,10 +210,12 @@ export function useLogStream({ return; } - fetchLogEntriesAfter(state.bottomCursor, { - size: LOG_ENTRIES_CHUNK_SIZE, - extendTo: params?.extendTo, - }); + if (state.bottomCursor !== null) { + fetchLogEntriesAfter(state.bottomCursor, { + size: LOG_ENTRIES_CHUNK_SIZE, + extendTo: params?.extendTo, + }); + } }, [fetchLogEntriesAfter, state.bottomCursor, state.hasMoreAfter] ); From 8f4fc45a18b8b35b6eefac8ff3b54d2318b00b12 Mon Sep 17 00:00:00 2001 From: Shahzad Date: Tue, 18 Apr 2023 12:13:26 +0200 Subject: [PATCH 014/144] [Exp View] Fix e2e test (#155123) --- .../e2e/journeys/step_duration.journey.ts | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/x-pack/plugins/exploratory_view/e2e/journeys/step_duration.journey.ts b/x-pack/plugins/exploratory_view/e2e/journeys/step_duration.journey.ts index 706de17fcc661..a109740d74496 100644 --- a/x-pack/plugins/exploratory_view/e2e/journeys/step_duration.journey.ts +++ b/x-pack/plugins/exploratory_view/e2e/journeys/step_duration.journey.ts @@ -5,23 +5,16 @@ * 2.0. */ -import { journey, step, before, after } from '@elastic/synthetics'; +import { journey, step } from '@elastic/synthetics'; import moment from 'moment'; import { recordVideo } from '../record_video'; import { createExploratoryViewUrl } from '../../public/components/shared/exploratory_view/configurations/exploratory_view_url'; -import { loginToKibana, TIMEOUT_60_SEC, waitForLoadingToFinish } from '../utils'; +import { byTestId, loginToKibana, TIMEOUT_60_SEC, waitForLoadingToFinish } from '../utils'; -journey('Exploratory view', async ({ page, params }) => { +journey('Step Duration series', async ({ page, params }) => { recordVideo(page); - before(async () => { - await waitForLoadingToFinish({ page }); - }); - - after(async () => { - // eslint-disable-next-line no-console - console.log(await page.video()?.path()); - }); + page.setDefaultTimeout(TIMEOUT_60_SEC.timeout); const expUrl = createExploratoryViewUrl({ reportType: 'kpi-over-time', @@ -54,16 +47,16 @@ journey('Exploratory view', async ({ page, params }) => { }); }); - step('Open exploratory view with monitor duration', async () => { + step('build series with monitor duration', async () => { await page.waitForNavigation(TIMEOUT_60_SEC); await waitForLoadingToFinish({ page }); - await page.click('text=browser', TIMEOUT_60_SEC); + await page.click('text=browser'); await page.click('text=http'); await page.click('[aria-label="Remove report metric"]'); await page.click('button:has-text("Select report metric")'); await page.click('button:has-text("Step duration")'); - await page.click('text=Select an option: Monitor type, is selectedMonitor type >> button'); + await page.click(byTestId('seriesBreakdown')); await page.click('button[role="option"]:has-text("Step name")'); await page.click('.euiComboBox__inputWrap'); await page.click( @@ -71,7 +64,9 @@ journey('Exploratory view', async ({ page, params }) => { ); await page.click('button[role="option"]:has-text("test-monitor - inline")'); await page.click('button:has-text("Apply changes")'); + }); + step('Verify that changes are applied', async () => { await waitForLoadingToFinish({ page }); await page.click('[aria-label="series color: #54b399"]'); From 0ce4f2de8ac8585055a713f5d39e6f5b727ec9cf Mon Sep 17 00:00:00 2001 From: Marco Liberati Date: Tue, 18 Apr 2023 12:44:51 +0200 Subject: [PATCH 015/144] [Lens] Reenable reporting functional tests (#155118) ## Summary Fixes #155047, #154958, #154957, #154956, #154955, #154954 Flaky runner with 50 runs: https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/2146 ### Checklist Delete any items that are not applicable to this PR. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### Risk Matrix Delete this section if it is not applicable to this PR. Before closing this PR, invite QA, stakeholders, and other developers to identify risks that should be tested prior to the change/feature release. When forming the risk matrix, consider some of the following examples and how they may potentially impact the change: | Risk | Probability | Severity | Mitigation/Notes | |---------------------------|-------------|----------|-------------------------| | Multiple Spaces—unexpected behavior in non-default Kibana Space. | Low | High | Integration tests will verify that all features are still supported in non-default Kibana Space and when user switches between spaces. | | Multiple nodes—Elasticsearch polling might have race conditions when multiple Kibana nodes are polling for the same tasks. | High | Low | Tasks are idempotent, so executing them multiple times will not result in logical error, but will degrade performance. To test for this case we add plenty of unit tests around this logic and document manual testing procedure. | | Code should gracefully handle cases when feature X or plugin Y are disabled. | Medium | High | Unit tests will verify that any feature flag or plugin combination still results in our service operational. | | [See more potential risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) | ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../functional/apps/lens/group3/lens_reporting.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/x-pack/test/functional/apps/lens/group3/lens_reporting.ts b/x-pack/test/functional/apps/lens/group3/lens_reporting.ts index bd7a27a411e7c..dc241c7f3ac49 100644 --- a/x-pack/test/functional/apps/lens/group3/lens_reporting.ts +++ b/x-pack/test/functional/apps/lens/group3/lens_reporting.ts @@ -24,8 +24,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const security = getService('security'); const browser = getService('browser'); - // Failing: See https://github.com/elastic/kibana/issues/154958 - describe.skip('lens reporting', () => { + describe('lens reporting', () => { before(async () => { await kibanaServer.importExport.load( 'x-pack/test/functional/fixtures/kbn_archiver/lens/reporting' @@ -60,6 +59,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.reporting.clickGenerateReportButton(); const url = await PageObjects.reporting.getReportURL(60000); expect(url).to.be.ok(); + if (await testSubjects.exists('toastCloseButton')) { + await testSubjects.click('toastCloseButton'); + } }); for (const type of ['PNG', 'PDF'] as const) { @@ -101,6 +103,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { await PageObjects.reporting.clickGenerateReportButton(); const url = await PageObjects.reporting.getReportURL(60000); expect(url).to.be.ok(); + if (await testSubjects.exists('toastCloseButton')) { + await testSubjects.click('toastCloseButton'); + } }); it(`should show a warning message for curl reporting of unsaved visualizations`, async () => { @@ -126,6 +131,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { it(`should produce a valid URL for reporting`, async () => { await PageObjects.reporting.clickGenerateReportButton(); await PageObjects.reporting.getReportURL(60000); + if (await testSubjects.exists('toastCloseButton')) { + await testSubjects.click('toastCloseButton'); + } // navigate to the reporting page await PageObjects.common.navigateToUrl('management', '/insightsAndAlerting'); await testSubjects.click('reporting'); From 7de4733f7255c976bf6503669e31e939cb9f485f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Fern=C3=A1ndez=20Haro?= Date: Tue, 18 Apr 2023 13:06:05 +0200 Subject: [PATCH 016/144] [FullStory] Update snippet (#153570) Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- NOTICE.txt | 5 +++-- packages/analytics/shippers/fullstory/src/load_snippet.ts | 2 +- .../cloud_full_story/server/assets/fullstory_library.js | 7 ++++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/NOTICE.txt b/NOTICE.txt index cd0ba2a9c1bd9..45af6e5231783 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -257,8 +257,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- -This code is part of the Services provided by FullStory, Inc. For license information, please refer to https://www.fullstory.com/legal/terms-and-conditions/. -Portions of this code are licensed separately and can be found in https://edge.fullstory.com/s/fs.js.LICENSE.txt +This code is part of the Services provided by FullStory, Inc. For license information, please refer to https://www.fullstory.com/legal/terms-and-conditions/ +Portions of this code are licensed under the following license: + For license information please see fs.js.LICENSE.txt --- This product bundles bootstrap@3.3.6 which is available under a diff --git a/packages/analytics/shippers/fullstory/src/load_snippet.ts b/packages/analytics/shippers/fullstory/src/load_snippet.ts index 2c37eee6608e9..1cbcc96e201ef 100644 --- a/packages/analytics/shippers/fullstory/src/load_snippet.ts +++ b/packages/analytics/shippers/fullstory/src/load_snippet.ts @@ -36,7 +36,7 @@ export interface FullStorySnippetConfig { } export function loadSnippet({ - scriptUrl = 'edge.fullstory.com/s/fs.js', + scriptUrl = 'https://edge.fullstory.com/s/fs.js', fullStoryOrgId, host = 'fullstory.com', namespace = 'FS', diff --git a/x-pack/plugins/cloud_integrations/cloud_full_story/server/assets/fullstory_library.js b/x-pack/plugins/cloud_integrations/cloud_full_story/server/assets/fullstory_library.js index dcc579b5e57b9..bfe2af8d44668 100644 --- a/x-pack/plugins/cloud_integrations/cloud_full_story/server/assets/fullstory_library.js +++ b/x-pack/plugins/cloud_integrations/cloud_full_story/server/assets/fullstory_library.js @@ -1,8 +1,9 @@ /* @notice - * This code is part of the Services provided by FullStory, Inc. For license information, please refer to https://www.fullstory.com/legal/terms-and-conditions/. - * Portions of this code are licensed separately and can be found in https://edge.fullstory.com/s/fs.js.LICENSE.txt + * This code is part of the Services provided by FullStory, Inc. For license information, please refer to https://www.fullstory.com/legal/terms-and-conditions/ + * Portions of this code are licensed under the following license: + * For license information please see fs.js.LICENSE.txt */ /* eslint-disable prettier/prettier,no-var,eqeqeq,new-cap,no-nested-ternary,no-use-before-define,no-sequences,block-scoped-var,one-var, dot-notation,no-script-url,no-restricted-globals,no-unused-vars,guard-for-in,no-proto,camelcase,no-empty,no-redeclare,no-caller, strict,no-extend-native,no-undef,no-loop-func */ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/s",n(n.s=4)}([function(e,t,n){"use strict";var r=this&&this.__assign||function(){return(r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0},t.assertExhaustive=function(e,t){throw void 0===t&&(t="Reached unexpected case in exhaustive switch"),new Error(t)},t.pick=function(e){for(var t=[],n=1;na&&(i=a);var u=n.split(/[#,]/);if(u.length<3&&(u=n.split("`")).length<3)return null;var c=u[0],h=u[1],d=u[2],l=u[3],p="";void 0!==l&&(p=decodeURIComponent(l),(f.indexOf(p)>=0||v.indexOf(p)>=0)&&(o("Ignoring invalid app key \""+p+"\" from cookie."),p=""));var m=d.split(":");return{expirationAbsTimeSeconds:i,host:c,orgId:h,userId:m[0],sessionId:m[1]||"",appKeyHash:p}}function y(e){for(var t={},n=e.cookie.split(";"),r=0;r=0&&(t=t.slice(0,n)),t}(e))?e:0==e.indexOf("www.")?"app."+e.slice(4):"app."+e:e}function H(e){return e?e+"/s/fs.js":void 0}!function(e){e.MUT_INSERT=2,e.MUT_REMOVE=3,e.MUT_ATTR=4,e.MUT_TEXT=6,e.MOUSEMOVE=8,e.MOUSEMOVE_CURVE=9,e.SCROLL_LAYOUT=10,e.SCROLL_LAYOUT_CURVE=11,e.MOUSEDOWN=12,e.MOUSEUP=13,e.KEYDOWN=14,e.KEYUP=15,e.CLICK=16,e.FOCUS=17,e.VALUECHANGE=18,e.RESIZE_LAYOUT=19,e.DOMLOADED=20,e.LOAD=21,e.PLACEHOLDER_SIZE=22,e.UNLOAD=23,e.BLUR=24,e.SET_FRAME_BASE=25,e.TOUCHSTART=32,e.TOUCHEND=33,e.TOUCHCANCEL=34,e.TOUCHMOVE=35,e.TOUCHMOVE_CURVE=36,e.NAVIGATE=37,e.PLAY=38,e.PAUSE=39,e.RESIZE_VISUAL=40,e.RESIZE_VISUAL_CURVE=41,e.RESIZE_DOCUMENT=42,e.LOG=48,e.ERROR=49,e.DBL_CLICK=50,e.FORM_SUBMIT=51,e.WINDOW_FOCUS=52,e.WINDOW_BLUR=53,e.HEARTBEAT=54,e.WATCHED_ELEM=56,e.PERF_ENTRY=57,e.REC_FEAT_SUPPORTED=58,e.SELECT=59,e.CSSRULE_INSERT=60,e.CSSRULE_DELETE=61,e.FAIL_THROTTLED=62,e.AJAX_REQUEST=63,e.SCROLL_VISUAL_OFFSET=64,e.SCROLL_VISUAL_OFFSET_CURVE=65,e.MEDIA_QUERY_CHANGE=66,e.RESOURCE_TIMING_BUFFER_FULL=67,e.MUT_SHADOW=68,e.DISABLE_STYLESHEET=69,e.FULLSCREEN=70,e.FULLSCREEN_ERROR=71,e.ADOPTED_STYLESHEETS=72,e.CUSTOM_ELEMENT_DEFINED=73,e.MODAL_OPEN=74,e.MODAL_CLOSE=75,e.SLOW_INTERACTION=76,e.LONG_FRAME=77,e.TIMING=78,e.STORAGE_WRITE_FAILURE=79,e.KEEP_ELEMENT=2e3,e.KEEP_URL=2001,e.KEEP_BOUNCE=2002,e.SYS_SETVAR=8193,e.SYS_RESOURCEHASH=8195,e.SYS_SETCONSENT=8196,e.SYS_CUSTOM=8197,e.SYS_REPORTCONSENT=8198}(R||(R={})),function(e){e.Unknown=0,e.Serialization=1}(A||(A={})),function(e){e.Unknown=0,e.DomSnapshot=1,e.NodeEncoding=2,e.LzEncoding=3}(x||(x={})),function(e){e.Internal=0,e.Public=1}(O||(O={}));var j,K,V,z,Y,G,Q,X,J,$,Z,ee,te,ne=["print","alert","confirm"];function re(e){switch(e){case R.MOUSEDOWN:case R.MOUSEMOVE:case R.MOUSEMOVE_CURVE:case R.MOUSEUP:case R.KEYDOWN:case R.KEYUP:case R.TOUCHSTART:case R.TOUCHEND:case R.TOUCHMOVE:case R.TOUCHMOVE_CURVE:case R.TOUCHCANCEL:case R.CLICK:case R.SCROLL_LAYOUT:case R.SCROLL_LAYOUT_CURVE:case R.SCROLL_VISUAL_OFFSET:case R.SCROLL_VISUAL_OFFSET_CURVE:case R.NAVIGATE:return!0;}return!1}!function(e){e.GrantConsent=!0,e.RevokeConsent=!1}(j||(j={})),function(e){e.Page=0,e.Document=1}(K||(K={})),function(e){e.Unknown=0,e.Api=1,e.FsShutdownFrame=2,e.Hibernation=3,e.Reidentify=4,e.SettingsBlocked=5,e.Size=6,e.Unload=7}(V||(V={})),function(e){e.Timing=0,e.Navigation=1,e.Resource=2,e.Paint=3,e.Mark=4,e.Measure=5,e.Memory=6}(z||(z={})),function(e){e.Performance=0,e.PerformanceEntries=1,e.PerformanceMemory=2,e.Console=3,e.Ajax=4,e.PerformanceObserver=5,e.AjaxFetch=6}(Y||(Y={})),function(e){e.Node=1,e.Sheet=2}(G||(G={})),function(e){e.StyleSheetHooks=0,e.SetPropertyHooks=1}(Q||(Q={})),function(e){e.User="user",e.Account="acct",e.Event="evt"}(X||(X={})),function(e){e.Elide=0,e.Record=1,e.Whitelist=2}(J||(J={})),function(e){e.ReasonNoSuchOrg=1,e.ReasonOrgDisabled=2,e.ReasonOrgOverQuota=3,e.ReasonBlockedDomain=4,e.ReasonBlockedIp=5,e.ReasonBlockedUserAgent=6,e.ReasonBlockedGeo=7,e.ReasonBlockedTrafficRamping=8,e.ReasonInvalidURL=9,e.ReasonUserOptOut=10,e.ReasonInvalidRecScript=11,e.ReasonDeletingUser=12,e.ReasonNativeHookFailure=13}($||($={})),function(e){e.Unset=0,e.Exclude=1,e.Mask=2,e.Unmask=3,e.Watch=4,e.Keep=5}(Z||(Z={})),function(e){e.Unset=0,e.Click=1}(ee||(ee={})),function(e){e.MaxLogsPerPage=1024,e.MutationProcessingInterval=250,e.CurveSamplingInterval=142,e.DefaultBundleUploadInterval=5e3,e.HeartbeatInitial=4e3,e.HeartbeatMax=256200,e.PageInactivityTimeout=18e5,e.BackoffMax=3e5,e.ScrollSampleInterval=e.MutationProcessingInterval/5,e.InactivityThreshold=4e3,e.MaxPayloadLength=16384}(te||(te={}));function ie(e,t){return function(){try{return e.apply(this,arguments)}catch(e){try{t&&t(e)}catch(e){}}}}var oe=function(){},se=navigator.userAgent,ae=se.indexOf("MSIE ")>-1||se.indexOf("Trident/")>-1,ue=(ae&&se.indexOf("Trident/5"),ae&&se.indexOf("Trident/6"),ae&&se.indexOf("rv:11")>-1),ce=se.indexOf("Edge/")>-1;se.indexOf("CriOS");var he=/^((?!chrome|android).)*safari/i.test(window.navigator.userAgent);function de(){var e=window.navigator.userAgent.match(/Version\/(\d+)/);return e?parseInt(e[1]):-1}function le(e){if(!he)return!1;var t=de();return t>=0&&t===e}function pe(e){if(!he)return!1;var t=de();return t>=0&&tt)return!1;return n==t}function pt(e,t){var n=0;for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&++n>t)return!0;return!1}Ze="function"==typeof s.objectKeys?function(e){return s.objectKeys(e)}:function(e){var t=[];for(var n in e)s.objectHasOwnProp(e,n)&&t.push(n);return t},st=(ot=function(e){return e.matches||e.msMatchesSelector||e.webkitMatchesSelector})(window.Element.prototype),!(at=window.document?window.document.documentElement:void 0)||st&&at instanceof window.Element||(st=ot(at)),it=($e=[st,function(e,t){return st.call(e,t)}])[0],rt=$e[1];var ft;ut=ae?function(e){var t=e.nextSibling;return t&&e.parentNode&&t===e.parentNode.firstChild?null:t}:function(e){return e.nextSibling};var vt;ft=ae?function(e,t){if(e){var n=e.parentNode?e.parentNode.firstChild:null;do{t(e),e=e.nextSibling}while(e&&e!=n)}}:function(e,t){for(;e;e=e.nextSibling)t(e)};vt=ae?function(e){var t=e.previousSibling;return t&&e.parentNode&&t===e.parentNode.lastChild?null:t}:function(e){return e.previousSibling};function _t(e,t){if(!e)return oe;var n=function(e){try{var t=window;return t.Zone&&t.Zone.root&&"function"==typeof t.Zone.root.wrap?t.Zone.root.wrap(e):e}catch(t){return e}}(e);return t&&(n=n.bind(t)),ie(n,function(e){o("Unexpected error: "+e)})}function gt(e){var t,n=Array.prototype.toJSON,r=String.prototype.toJSON;n&&(Array.prototype.toJSON=void 0),r&&(String.prototype.toJSON=void 0);try{t=s.jsonStringify(e)}catch(e){t=mt(e)}finally{n&&(Array.prototype.toJSON=n),r&&(String.prototype.toJSON=r)}return t}function mt(e){var t="Internal error: unable to determine what JSON error was";try{t=(t=""+e).replace(/[^a-zA-Z0-9\.\:\!\, ]/g,"_")}catch(e){}return"\""+t+"\""}function yt(e){var t=e.doctype;if(!t)return"";var n=""}function wt(e){return s.jsonParse(e)}function bt(e){var t=0,n=0;return null==e.screen?[t,n]:(t=parseInt(String(e.screen.width)),n=parseInt(String(e.screen.height)),[t=isNaN(t)?0:t,n=isNaN(n)?0:n])}var St=function(){function e(e,t){this.target=e,this.propertyName=t,this._before=oe,this._afterSync=oe,this._afterAsync=oe,this.on=!1}return e.prototype.before=function(e){return this._before=_t(e),this},e.prototype.afterSync=function(e){return this._afterSync=_t(e),this},e.prototype.afterAsync=function(e){return this._afterAsync=_t(function(t){s.setWindowTimeout(window,ie(function(){e(t)}),0)}),this},e.prototype.disable=function(){if(this.on=!1,this.shim){var e=this.shim,t=e.override,n=e["native"];this.target[this.propertyName]===t&&(this.target[this.propertyName]=n,this.shim=void 0)}},e.prototype.enable=function(){if(this.on=!0,this.shim)return!0;this.shim=this.makeShim();try{this.target[this.propertyName]=this.shim.override}catch(e){return!1}return!0},e.prototype.makeShim=function(){var e=this,t=this.target[this.propertyName];return{"native":t,override:function(){var n={that:this,args:arguments,result:null};e.on&&e._before(n);var r=t.apply(this,arguments);return e.on&&(n.result=r,e._afterSync(n),e._afterAsync(n)),r}}},e}(),Et={};function Tt(e,t){if(!e||"function"!=typeof e[t])return null;var n;Et[t]=Et[t]||[];for(var r=0;r\n";var n=[];try{for(var r=arguments.callee.caller.caller;r&&n.lengthn)return!1;var r=new Error("Assertion failed: "+t);return Mt.sendToBugsnag(r,"error"),e}function Pt(e,t,n,r){void 0!==n&&("function"==typeof e.addEventListener?e.addEventListener(t,n,r):"function"==typeof e.addListener?e.addListener(n):o("Target of "+t+" doesn't seem to support listeners"))}function qt(e,t,n,r){void 0!==n&&("function"==typeof e.removeEventListener?e.removeEventListener(t,n,r):"function"==typeof e.removeListener?e.removeListener(n):o("Target of "+t+" doesn't seem to support listeners"))}var Ut=function(){function e(){var e=this;this._listeners=[],this._children=[],this._yesCapture=!0,this._noCapture=!1;try{var t=Object.defineProperty({},"passive",{get:function(){e._yesCapture={capture:!0,passive:!0},e._noCapture={capture:!1,passive:!0}}});window.addEventListener("test",oe,t)}catch(e){}}return e.prototype.add=function(e,t,n,r,i){return void 0===i&&(i=!1),this.addCustom(e,t,n,r,i)},e.prototype.addCustom=function(e,t,n,r,i){void 0===i&&(i=!1);var o={target:e,type:t,fn:Mt.wrap(function(e){(i||!1!==e.isTrusted||"message"==t||e._fs_trust_event)&&r(e)}),options:n?this._yesCapture:this._noCapture,index:this._listeners.length};return this._listeners.push(o),Pt(e,t,o.fn,o.options),o},e.prototype.remove=function(e){e.target&&(qt(e.target,e.type,e.fn,e.options),e.target=null,e.fn=void 0)},e.prototype.clear=function(){for(var e=0;e0&&t.height>0)return this.width=t.width,void(this.height=t.height);r=this.computeLayoutViewportSizeFromMediaQueries(e),this.width=r[0],this.height=r[1]}}return e.prototype.computeLayoutViewportSizeFromMediaQueries=function(e){var t=this.findMediaValue(e,"width",this.clientWidth,this.clientWidth+128);void 0===t&&(t=this.tryToGet(e,"innerWidth")),void 0===t&&(t=this.clientWidth);var n=this.findMediaValue(e,"height",this.clientHeight,this.clientHeight+128);return void 0===n&&(n=this.tryToGet(e,"innerHeight")),void 0===n&&(n=this.clientHeight),[t,n]},e.prototype.findMediaValue=function(e,t,n,r){if(s.matchMedia){var i=s.matchMedia(e,"(min-"+t+": "+n+"px)");if(null!=i){if(i.matches&&s.matchMedia(e,"(max-"+t+": "+n+"px)").matches)return n;for(;n<=r;){var o=s.mathFloor((n+r)/2);if(s.matchMedia(e,"(min-"+t+": "+o+"px)").matches){if(s.matchMedia(e,"(max-"+t+": "+o+"px)").matches)return o;n=o+1}else r=o-1}}}},e.prototype.tryToGet=function(e,t){try{return e[t]}catch(e){return}},e}();function Yt(e,t){return new zt(e,t)}var Gt=function(e,t){this.offsetLeft=0,this.offsetTop=0,this.pageLeft=0,this.pageTop=0,this.width=0,this.height=0,this.scale=0;var n=e.document;if(n.body){var r="BackCompat"==n.compatMode;"pageXOffset"in e?(this.pageLeft=e.pageXOffset,this.pageTop=e.pageYOffset):n.scrollingElement?(this.pageLeft=n.scrollingElement.scrollLeft,this.pageTop=n.scrollingElement.scrollTop):r?(this.pageLeft=n.body.scrollLeft,this.pageTop=n.body.scrollTop):n.documentElement&&(n.documentElement.scrollLeft>0||n.documentElement.scrollTop>0)?(this.pageLeft=n.documentElement.scrollLeft,this.pageTop=n.documentElement.scrollTop):(this.pageLeft=n.body.scrollLeft||0,this.pageTop=n.body.scrollTop||0),this.offsetLeft=this.pageLeft-t.pageLeft,this.offsetTop=this.pageTop-t.pageTop;try{var i=e.innerWidth,o=e.innerHeight}catch(e){return}if(0!=i&&0!=o){this.scale=t.width/i,this.scale<1&&(this.scale=1);var s=t.width-t.clientWidth,a=t.height-t.clientHeight;this.width=i-s/this.scale,this.height=o-a/this.scale}}};var Qt,Xt=(Qt=function(e,t){return(Qt=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)},function(e,t){function n(){this.constructor=e}Qt(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),Jt=function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function s(e){try{u(r.next(e))}catch(e){o(e)}}function a(e){try{u(r["throw"](e))}catch(e){o(e)}}function u(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(s,a)}u((r=r.apply(e,t||[])).next())})},$t=function(e,t){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:a(0),"throw":a(1),"return":a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(o){return function(a){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(i=2&o[0]?r["return"]:o[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return s.label++,{value:o[1],done:!1};case 5:s.label++,r=o[1],o=[0];continue;case 7:o=s.ops.pop(),s.trys.pop();continue;default:if(!(i=(i=s.trys).length>0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]this._due)return et.resolve().then(this._wrappedTick)["catch"](function(){})},e.registry={},e.nextId=0,e.checkedAlready=!1,e.lastCheck=0,e}(),en=function(e){function t(t){var n=e.call(this)||this;return n._interval=t,n._handle=-1,n}return Xt(t,e),t.prototype.start=function(e){var t=this;-1==this._handle&&(this.setTick(function(){e(),t.register(t._interval)}),this._handle=s.setWindowInterval(window,this._wrappedTick,this._interval),this.register(this._interval))},t.prototype.cancel=function(){-1!=this._handle&&(s.clearWindowInterval(window,this._handle),this._handle=-1,this.setTick(function(){}))},t}(Zt),tn=function(e){function t(t,n,r){void 0===n&&(n=0);for(var i=[],o=3;ot&&(this._skew=e-t,this._reportTimeSkew("timekeeper set with future ts"))},e.prototype._reportTimeSkew=function(e){this._reported++<=2&&Mt.sendToBugsnag(e,"error",{skew:this._skew,startTime:this._startTime,wallTime:this.wallTime()})},e}();function on(e){var t=e;return t.tagName?"object"==typeof t.tagName?"form":t.tagName.toLowerCase():null}var sn,an,un=n(3),cn=n(0),hn=Object.defineProperty,dn=p()%1e9,ln=window.WeakMap||((sn=function(){this.name="__st"+(1e9*s.mathRandom()>>>0)+dn++ +"__"}).prototype={set:function(e,t){var n=e[this.name];n&&n[0]===e?n[1]=t:hn(e,this.name,{value:[e,t],writable:!0})},get:function(e){var t;return(t=e[this.name])&&t[0]===e?t[1]:void 0}},sn),pn=1,fn=4,vn=function(){for(var e=0,t=0,n=arguments.length;t0&&o(n[u],this._rules[u]),r[u].length>0&&o(r[u],this._consentRules[u])}},e.prototype._fallback=function(e){for(var t=0,n=e;t0&&t.length<1e4;){var n=t.pop();delete Tn[n.id],n.node._fs==n.id&&(n.node._fs=0),n.id=0,n.next&&t.push(n.next),n.child&&t.push(n.child)}Ft(t.length<1e4,"clearIds is fast")}var qn,Un=function(){function e(e,t){this._onchange=e,this._checkElem=t,this._fallback=!1,this._elems={},this.values={},this.radios={},qn=this}return e.prototype.hookEvents=function(){(function(){var e=Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,"value");if(!e||!e.set)return!1;Nn||(kt(HTMLInputElement,"value",jn),kt(HTMLInputElement,"checked",jn),kt(HTMLSelectElement,"value",jn),kt(HTMLTextAreaElement,"value",jn),kt(HTMLSelectElement,"selectedIndex",jn),kt(HTMLOptionElement,"selected",jn),Nn=!0);return!0})()||(this._fallback=!0)},e.prototype.addInput=function(e){var t=Mn(e);if(this._elems[t]=e,Vn(e)){var n=Hn(e);e.checked&&(this.radios[n]=t)}else this.values[t]=Kn(e);(function(e){switch(e.type){case"checkbox":case"radio":return e.checked!=e.hasAttribute("checked");default:return(e.value||"")!=function(e){if("select"!=on(e))return e.getAttribute("value")||"";var t=e,n=t.querySelector("option[selected]")||t.querySelector("option");if(!n)return"";return n.value||""}(e);}})(e)&&this._onchange(e)},e.prototype.diffValue=function(e,t){var n=Mn(e);if(Vn(e)){var r=Hn(e);return this.radios[r]==n!=("true"==t)}return this.values[n]!=t},e.prototype.onChange=function(e,t){void 0===t&&(t=Kn(e));var n=Mn(e);if((e=this._elems[n])&&this.diffValue(e,t))if(this._onchange(e),Vn(e)){var r=Hn(e);"false"==t&&this.radios[r]==n?delete this.radios[r]:this.radios[r]=n}else this.values[n]=t},e.prototype.tick=function(){for(var e in this._elems){var t=this._elems[e];if(this._checkElem(t)){if(this._fallback){var n=Kn(t);if(t&&this.diffValue(t,n))if(this._onchange(t),Vn(t)){var r=Hn(t);this.radios[r]=+e}else this.values[e]=n}}else delete this._elems[e],delete this.values[e],Vn(t)&&delete this.radios[Hn(t)]}},e.prototype.shutdown=function(){qn=null},e.prototype._usingFallback=function(){return this._fallback},e.prototype._trackingElem=function(e){return!!this._elems[e]},e}(),Nn=!1;var Wn,Dn={};function Bn(){try{if(qn)for(var e in Dn){var t=Dn[e],n=t[0],r=t[1];qn.onChange(n,r)}}finally{Wn=null,Dn={}}}function Hn(e){if(!e)return"";for(var t=e;t&&"form"!=on(t);)t=t.parentElement;return(t&&"form"==on(t)?Mn(t):0)+":"+e.name}function jn(e,t){var n=function e(t,n){if(void 0===n&&(n=2),n<=0)return t;var r=on(t);return"option"!=r&&"optgroup"!=r||!t.parentElement?t:e(t.parentElement,n-1)}(e),r=Mn(n);r&&qn&&qn.diffValue(n,""+t)&&(Dn[r]=[n,""+t],Wn||(Wn=new tn(Bn)).start())}function Kn(e){switch(e.type){case"checkbox":case"radio":return""+e.checked;default:var t=e.value;return t||(t=""),""+t;}}function Vn(e){return e&&"radio"==e.type}var zn={};var Yn="__default";function Gn(e){void 0===e&&(e=Yn);var t=zn[e];return t||(t=function(){var e=document.implementation.createHTMLDocument("");return e.head||e.documentElement.appendChild(e.createElement("head")),e.body||e.documentElement.appendChild(e.createElement("body")),e}(),e!==Yn&&(t.open(),t.write(e),t.close()),zn[e]=t),t}var Qn=new(function(){function e(){var e=Gn(),t=e.getElementById("urlresolver-base");t||((t=e.createElement("base")).id="urlresolver-base",e.head.appendChild(t));var n=e.getElementById("urlresolver-parser");n||((n=e.createElement("a")).id="urlresolver-parser",e.head.appendChild(n)),this.base=t,this.parser=n}return e.prototype.parseUrl=function(e,t){if("undefined"!=typeof URL)try{e||(e=document.baseURI);var n=e?new URL(t,e):new URL(t);if(n.href)return n}catch(e){}return this.parseUrlUsingBaseAndAnchor(e,t)},e.prototype.parseUrlUsingBaseAndAnchor=function(e,t){this.base.setAttribute("href",e),this.parser.setAttribute("href",t);var n=document.createElement("a");return n.href=this.parser.href,n},e.prototype.resolveUrl=function(e,t){return this.parseUrl(e,t).href},e.prototype.resolveToDocument=function(e,t){var n=Jn(e);return null==n?t:this.resolveUrl(n,t)},e}());function Xn(e,t){return Qn.parseUrl(e,t)}function Jn(e){var t=e.document,n=e.location.href;if("string"==typeof t.baseURI)n=t.baseURI;else{var r=t.getElementsByTagName("base")[0];r&&r.href&&(n=r.href)}return"about:blank"==n&&e.parent!=e?Jn(e.parent):n}var $n=new RegExp("[^\\s]"),Zn=new RegExp("[\\s]*$");String.prototype;function er(e){var t=$n.exec(e);if(!t)return e;for(var n=t.index,r=(t=Zn.exec(e))?e.length-t.index:0,i="\uFFFF",o=e.slice(n,e.length-r).split(/\r\n?|\n/g),s=0;sir?(Mt.sendToBugsnag("Ignoring huge text node","warning",{length:r}),""):e.parentNode&&"style"==on(e.parentNode)?n:t.mask?er(n):n}function sr(e){return tr[e]||e.toLowerCase()}function ar(e,t,n,r){var i,o=on(t);if(null===o)return null;var s=function(e){var t,r,s;i=null!==(r=null===(t=nr[e][o])||void 0===t?void 0:t[n])&&void 0!==r?r:null===(s=nr[e]["*"])||void 0===s?void 0:s[n]};if(s("Any"),void 0===i){var a=xn(t);if(!a)return null;a.watchKind==an.Exclude?s("Exclude"):a.mask&&s("Mask")}if(void 0===i)return r;switch(i){case"erase":return null;case"scrubUrl":return ur(r,e,{source:"dom",type:o});case"maskText":return er(r);default:return Object(cn.assertExhaustive)(i);}}function ur(e,t,n){switch(n.source){case"dom":switch(r=n.type){case"frame":case"iframe":return hr(e,t);default:return cr(e,t);}case"event":switch(r=n.type){case R.AJAX_REQUEST:case R.NAVIGATE:return cr(e,t);case R.SET_FRAME_BASE:return hr(e,t);default:return Object(cn.assertExhaustive)(r);}case"log":return hr(e,t);case"page":var r;switch(r=n.type){case"base":return hr(e,t);case"referrer":case"url":return cr(e,t);default:return Object(cn.assertExhaustive)(r);}case"perfEntry":switch(n.type){case"frame":case"iframe":case"navigation":case"other":return hr(e,t);default:return cr(e,t);}default:return Object(cn.assertExhaustive)(n);}}function cr(e,t){return lr(e,t,function(e){if(!(e in pr)){var t=["password","token","^jwt$"];switch("4K3FQ"!==e&&"NQ829"!==e&&"KCF98"!==e&&t.push("^code$"),e){case"2FVM4":t.push("^e$","^eref$","^fn$");break;case"35500":t.push("share_token","password-reset-key");break;case"1HWDJ":t.push("email_id","invite","join");break;case"J82WF":t=[".*"];break;case"8MM83":t=["^creditCard"];break;case"PAN8Z":t.push("code","hash","ol","aeh");break;case"BKP05":t.push("api_key","session_id","encryption_key");break;case"QKM7G":t.push("postcode","encryptedQuoteId","registrationId","productNumber","customerName","agentId","qqQuoteId");break;case"FP60X":t.push("phrase");break;case"GDWG7":t=["^(?!productType|utmSource).*$"];break;case"RV68C":t.push("drivingLicense");break;case"S3VEC":t.push("data");break;case"Q8RZE":t.push("myLowesCardNumber");}pr[e]=new RegExp(t.join("|"),"i")}return pr[e]}(t))}function hr(e,t){return lr(e,t,fr)}function dr(e,t,n,r){var i=new RegExp("(\\/"+t+"\\/).*$","i");n==r&&e.pathname.indexOf(t)>=0&&(e.pathname=e.pathname.replace(i,"$1"+rr))}function lr(e,t,n){var r=Xn("",e);return r.hash&&r.hash.indexOf("access_token")>=0&&(r.hash="#"+rr),dr(r,"visitor",t,"QS8RG"),dr(r,"account",t,"QS8RG"),dr(r,"parentAccount",t,"QS8RG"),dr(r,"reset_password",t,"AGQFM"),dr(r,"reset-password",t,"95NJ7"),dr(r,"dl",t,"RV68C"),dr(r,"retailer",t,"FP60X"),dr(r,"ocadotech",t,"FP60X"),dr(r,"serviceAccounts",t,"FP60X"),dr(r,"signup",t,"7R98D"),r.search&&r.search.length>0&&(r.search=function(e,t){return e.split("?").map(function(e){return function(e,t){return e.replace("?","").split("&").map(function(e){return e.split("=")}).map(function(e){var n=e[0],r=e[1],i=e.slice(2);return t.test(n)&&void 0!==r?[n,rr].concat(i):[n,r].concat(i)}).map(function(e){var t=e[0],n=e[1],r=e.slice(2);return void 0===n?t:[t,n].concat(r).join("=")}).join("&")}(e,t)}).join("?")}(r.search,n)),r.href.substring(0,2048)}var pr={};var fr=new RegExp(".*","i");var vr=/([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)/gi,_r=/(?:(http)|(ftp)|(file))[s]?:\/\/(?:[a-zA-Z]|[0-9]|[$-_@.&+#]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+/gi;function gr(e){return"function"==typeof(t=e.constructor)&&Function.prototype.toString.call(t).indexOf("[native code]")>-1;var t}var mr=function(){function e(e,t,n){this._watcher=e,this._resizer=t,this._orgId=n,Tn={},kn=1}return e.prototype.tokenizeNode=function(e,t,n,r,i,o,s){var a=this,u=xn(t),c=xn(n),h=[];return function(e){var t=kn;try{return e(),!0}catch(e){return kn=t,!1}}(function(){a.tokeNode(e,u,c,r,h,i,o,s)})||(h=[]),h},e.prototype.tokeNode=function(e,t,n,r,i,o,s,a){for(var u=[{parentMirror:t,nextMirror:n,node:r}],c=function(){var t=u.pop();if(!t)return"continue";if("string"==typeof t)return i.push(t),"continue";var n=t.parentMirror,r=t.nextMirror,c=t.node,d=h._encodeTagAndAttributes(e,n,r,c,i,o,s);if(null==d||d.watchKind===an.Exclude)return"continue";var l=c.nodeType===pn?c.shadowRoot:null;return(l||c.firstChild)&&a(d)?(u.push("]"),function(e,t){if(!e)return;var n=[];ft(e,function(e){return n.push(e)});for(;n.length>0;){var r=n.pop();r&&t(r)}}(c.firstChild,function(e){u.push({parentMirror:d,nextMirror:null,node:e})}),l&&u.push({parentMirror:d,nextMirror:null,node:l}),void u.push("[")):"continue"},h=this;u.length;)c()},e.prototype._encodeTagAndAttributes=function(e,t,n,r,i,o,s){if("script"==on(r)||8==r.nodeType)return null;var a,u,c,h,d=function(e){return e.constructor===window.ShadowRoot}(r),l=function(e){var t={id:kn++,node:e};return Tn[t.id]=t,e._fs=t.id,t}(r);if((d||(null==t?void 0:t.isInShadowDOM))&&(l.isInShadowDOM=!0),t&&(d?t.shadow=l:(a=t,u=l,c=n,h=this._resizer,Fn(u,h),u.parent=a,u.next=c,c&&(u.prev=c.prev,c.prev=u),null==u.next?(u.prev=a.lastChild,a.lastChild=u):u.next.prev=u,null==u.prev?a.child=u:u.prev.next=u)),10==r.nodeType){var p=r;return i.push("1?s.push([o.idx,a]):s.push(o.idx):s.push(i)}for(n=1;n1e3)return null;if(!n||n.nodeType!=pn)return null;var r=n;if(getComputedStyle(r).display.indexOf("inline")<0)return r;n=n.parentNode}},t}(Er),kr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return br(t,e),t.prototype.observe=function(e){var t=this;if(e&&e.nodeType==pn){var n=e;this.growWatchedIndex(xn(e)),this._ctx.measurer.requestMeasureTask(function(){t.addEntry(n)})}},t.prototype.unobserveSubtree=function(e){var t=xn(e);t&&this.clearWatchedIndex(t)},t.prototype.nodeChanged=function(e){var t=this,n=this.relatedWatched(e);this._ctx.measurer.requestMeasureTask(function(){for(var e=0,r=n;e0){var r=zr(t[n-1],e);if(r)return void(t[n-1]=r)}else!function(e){qr.push(e),Pr||(Pr=!0,Mr(Ur))}(this.observer);t[n]=e},addListeners:function(){this.addListeners_(this.target)},addListeners_:function(e){var t=this.options;t.attributes&&e.addEventListener("DOMAttrModified",this.handleEventBound,!0),t.characterData&&e.addEventListener("DOMCharacterDataModified",this.handleEventBound,!0),t.childList&&e.addEventListener("DOMNodeInserted",this.handleEventBound,!0),(t.childList||t.subtree)&&e.addEventListener("DOMNodeRemoved",this.handleEventBound,!0)},removeListeners:function(){this.removeListeners_(this.target)},removeListeners_:function(e){var t=this.options;t.attributes&&e.removeEventListener("DOMAttrModified",this.handleEventBound,!0),t.characterData&&e.removeEventListener("DOMCharacterDataModified",this.handleEventBound,!0),t.childList&&e.removeEventListener("DOMNodeInserted",this.handleEventBound,!0),(t.childList||t.subtree)&&e.removeEventListener("DOMNodeRemoved",this.handleEventBound,!0)},addTransientObserver:function(e){if(e!==this.target){this.addListeners_(e),this.transientObservedNodes.push(e);var t=Or.get(e);t||Or.set(e,t=[]),t.push(this)}},removeTransientObservers:function(){var e=this.transientObservedNodes;this.transientObservedNodes=[],e.forEach(function(e){this.removeListeners_(e);for(var t=Or.get(e),n=0;n0||this._toRefresh.length>0){var n={},r={};for(var i in this.processRecords(e,t,r,n),r){var o=i.split("\t");t.push({Kind:R.MUT_ATTR,When:e,Args:[parseInt(o[0]),o[1],r[i]]})}for(var i in n)t.push({Kind:R.MUT_TEXT,When:e,Args:[parseInt(i),n[i]]})}var s=this._newShadowContainers;this._newShadowContainers=[];for(var a=0;a0)for(var d=0;d0){s[h]=c.target;var p=Jr(c.target);p&&(s[p.id]=p.node)}break;case"characterData":Cn(c.target)||c.oldValue!=c.target.textContent&&(r[h]=or(c.target));break;case"attributes":var f=An(w=c.target);if(_n(this._watcher.isWatched(w))>_n(f)){a(w);break}var v=Xr(c.attributeNamespace)+(c.attributeName||""),_=sr(v);if(w.hasAttribute(v)){var g=c.target.getAttribute(v);c.oldValue!=g&&(g=ar(this._ctx.options.orgId,c.target,_,g||""),this._attrVisitor(c.target,_,g||""),null!==g&&(n[h+"\t"+_]=g))}else n[h+"\t"+_]=null;}}catch(e){}for(var m=0,y=this._toRefresh;m0&&n.push({When:t,Kind:R.MUT_SHADOW,Args:[o,this._compress?this._lz.encode(s):s]})},e.prototype.genInsert=function(e,t,n,r,i,o){var s=Mn(r)||-1,a=Mn(o)||-1,u=-1===s&&-1===a,c=p(),h=this.genDocStream(e,r,i,o),d=p()-c;if(h.length>0){var l=p(),f=this._compress?this._lz.encode(h):h,v=p()-l;n.push({When:t,Kind:R.MUT_INSERT,Args:[s,a,f]},{When:t,Kind:R.TIMING,Args:[[O.Internal,A.Serialization,u?x.DomSnapshot:x.NodeEncoding,t,d,[x.LzEncoding,v]]]})}},e.prototype.genDocStream=function(e,t,n,r){var i=this;if(t&&Cn(t))return[];for(var o=[],s=this._encoder.tokenizeNode(e,t,r,n,function(e){if(e.nodeType==pn){var t=e;t.shadowRoot&&i.observe(t.shadowRoot)}i._nodeVisitor(e,o)},this._attrVisitor,this._visitChildren),a=0,u=o;a0){var i=t[t.length-1];if(i.Kind==R.MUT_REMOVE)return void i.Args.push(r)}t.push({When:e,Kind:R.MUT_REMOVE,Args:[r]})},e.prototype.setUpIEWorkarounds=function(){var t=this;if(ue){var n=Object.getOwnPropertyDescriptor(Node.prototype,"textContent"),r=n&&n.set;if(!n||!r)throw new Error("Missing textContent setter -- not safe to record mutations.");Object.defineProperty(Element.prototype,"textContent",Gr(Gr({},n),{set:function(e){try{for(var t=void 0;t=this.firstChild;)this.removeChild(t);if(null===e||""==e)return;var n=(this.ownerDocument||document).createTextNode(e);this.appendChild(n)}catch(t){r&&r.call(this,e)}}}))}this._setPropertyThrottle=new nn(e.ThrottleMax,e.ThrottleInterval,function(){return new tn(function(){t._setPropertyWasThrottled=!0,t.tearDownIEWorkarounds()}).start()});var i=this._setPropertyThrottle.guard(function(e){e.cssText=e.cssText});this._setPropertyThrottle.open(),this._setPropertyHook=Tt(CSSStyleDeclaration.prototype,"setProperty"),this._setPropertyHook&&this._setPropertyHook.afterSync(function(e){i(e.that)}),this._removePropertyHook=Tt(CSSStyleDeclaration.prototype,"removeProperty"),this._removePropertyHook&&this._removePropertyHook.afterSync(function(e){i(e.that)})},e.prototype.tearDownIEWorkarounds=function(){this._setPropertyThrottle&&this._setPropertyThrottle.close(),this._setPropertyHook&&this._setPropertyHook.disable(),this._removePropertyHook&&this._removePropertyHook.disable()},e.prototype.updateConsent=function(){var e=this,t=xn(this._root);t&&function(e,t){for(var n=[e];n.length;){var r=n.pop();if(r){t(r);for(var i=r.child,o=r.shadow;i;)n.push(i),i=i.next;o&&n.push(o)}}}(t,function(t){var n=t.node;t.matchesAnyConsentRule&&e.refreshElement(n)})},e.prototype.refreshElement=function(e){Mn(e)&&this._toRefresh.push(e)},e.ThrottleMax=1024,e.ThrottleInterval=1e4,e}();function Xr(e){return void 0===e&&(e=""),null===e?"":{"http://www.w3.org/1999/xlink":"xlink:","http://www.w3.org/XML/1998/namespace":"xml:","http://www.w3.org/2000/xmlns/":"xmlns:"}[e]||""}function Jr(e){return!(null==e?void 0:e.shadowRoot)||gr(e.shadowRoot)?null:xn(e.shadowRoot)}var $r=["navigationStart","unloadEventStart","unloadEventEnd","redirectStart","redirectEnd","fetchStart","domainLookupStart","domainLookupEnd","connectStart","connectEnd","secureConnectionStart","requestStart","responseStart","responseEnd","domLoading","domInteractive","domContentLoadedEventStart","domContentLoadedEventEnd","domComplete","loadEventStart","loadEventEnd"],Zr=["name","startTime","duration","initiatorType","redirectStart","redirectEnd","fetchStart","domainLookupStart","domainLookupEnd","connectStart","connectEnd","secureConnectionStart","requestStart","responseStart","responseEnd","unloadEventStart","unloadEventEnd","domInteractive","domContentLoadedEventStart","domContentLoadedEventEnd","domComplete","loadEventStart","loadEventEnd","type","redirectCount","decodedBodySize","encodedBodySize","transferSize"],ei=["name","startTime","duration","initiatorType","redirectStart","redirectEnd","fetchStart","domainLookupStart","domainLookupEnd","connectStart","connectEnd","secureConnectionStart","requestStart","responseStart","responseEnd","decodedBodySize","encodedBodySize","transferSize"],ti=["name","startTime","duration"],ni=["jsHeapSizeLimit","totalJSHeapSize","usedJSHeapSize"],ri=function(){function e(e,t,n){this._ctx=e,this._queue=t,this._perfSupported=!1,this._timingSupported=!1,this._getEntriesSupported=!1,this._memorySupported=!1,this._lastUsedJSHeapSize=0,this._gotLoad=!1,this._observer=null,this._observedBatches=[];var r=window.performance;r&&(this._perfSupported=!0,r.timing&&(this._timingSupported=!0),r.memory&&(this._memorySupported=!0),"function"==typeof r.getEntries&&(this._getEntriesSupported=!0),this._listeners=n.createChild())}return e.prototype.start=function(e){var t=this;this._resourceUploader=e;var n=window.performance;n&&(this._ctx.recording.inFrame||this._queue.enqueue({Kind:R.REC_FEAT_SUPPORTED,Args:[Y.Performance,this._timingSupported,Y.PerformanceEntries,this._getEntriesSupported,Y.PerformanceMemory,this._memorySupported,Y.PerformanceObserver,!!window.PerformanceObserver]}),this.observe(),!this._observer&&n.addEventListener&&n.removeEventListener&&this._listeners.add(n,"resourcetimingbufferfull",!0,function(){t._queue.enqueue({Kind:R.RESOURCE_TIMING_BUFFER_FULL,Args:[]})}),this.checkMemory())},e.prototype.onLoad=function(){this._gotLoad||(this._gotLoad=!0,this._timingSupported&&(this.recordTiming(performance.timing),this.checkForNewEntries()))},e.prototype.tick=function(e){this.checkMemory(),e&&this.checkForNewEntries()},e.prototype.shutdown=function(){this._listeners&&this._listeners.clear(),this._resourceUploader=void 0;var e=[];this._observer?(this._observer.takeRecords&&(e=this._observer.takeRecords()),this._observer.disconnect()):window.performance&&window.performance.getEntries&&(e=window.performance.getEntries()),e.length>300&&(e=e.slice(0,300),this._queue.enqueue({Kind:R.RESOURCE_TIMING_BUFFER_FULL,Args:[]})),this._observedBatches.push(e),this.tick(!0)},e.prototype.observe=function(){var e=this;if(!this._observer&&this._getEntriesSupported&&window.PerformanceObserver){this._observedBatches.push(performance.getEntries()),this._observer=new window.PerformanceObserver(function(t){var n=t.getEntries();e._observedBatches.push(n)});var t=["navigation","resource","measure","mark"];window.PerformancePaintTiming&&t.push("paint"),this._observer.observe({entryTypes:t})}},e.prototype.checkMemory=function(){if(this._memorySupported&&!this._ctx.recording.inFrame){var e=performance.memory;if(e){var t=e.usedJSHeapSize-this._lastUsedJSHeapSize;(0==this._lastUsedJSHeapSize||s.mathAbs(t/this._lastUsedJSHeapSize)>.2)&&(this.addPerfEvent(z.Memory,e,ni),this._lastUsedJSHeapSize=e.usedJSHeapSize)}}},e.prototype.recordEntry=function(e){switch(e.entryType){case"navigation":this.recordNavigation(e);break;case"resource":this.recordResource(e);break;case"paint":this.recordPaint(e);break;case"measure":this.recordMeasure(e);break;case"mark":this.recordMark(e);}},e.prototype.checkForNewEntries=function(){if(this._perfSupported&&this._getEntriesSupported){var e=this._observedBatches;this._observedBatches=[];for(var t=0,n=e;t=t&&(n=void 0),o[o.length-1]--,n&&n!==si&&r&&(o.push(s.objectKeys(n).length),a.push(u));o[o.length-1]<=0;)o.pop(),a.pop();return n})}catch(e){}return"[error serializing "+e.constructor.name+"]"}}var ui=function(){function e(e){this._requestTracker=e}return e.prototype.disable=function(){this._hook&&(this._hook.disable(),this._hook=null)},e.prototype.enable=function(e){var t,n=this,r=I(e),i=null===(t=null==r?void 0:r._w)||void 0===t?void 0:t.fetch;(i||e.fetch)&&(this._hook=Tt(i?r._w:e,"fetch"),this._hook&&this._hook.afterSync(function(e){return n.recordFetch(e.that,e.result,e.args[0],e.args[1])}))},e.prototype.recordFetch=function(e,t,n,r){var i,o="GET",s="",a={};if("string"==typeof n?s=n:"url"in n?(s=n.url,o=n.method,i=n.body,n.headers&&n.headers.forEach(function(e,t){a[e]=t})):s=""+n,r){o=r.method||o;var u=r.headers;if(u)if(nt(u))for(var c=0,h=u;c-1;n&&o?t.clone().text().then(Mt.wrap(function(i){var o=mi(i,n),s=o[0],a=o[1];r.onComplete(e,t,s,a)}))["catch"](Mt.wrap(function(n){r.onComplete(e,t,-1,void 0)})):r.onComplete(e,t,-1,void 0)}))["catch"](Mt.wrap(function(t){r.onComplete(e,t,-1,void 0)}))},e.prototype.onComplete=function(e,t,n,r){var i=this,o=-1,s="";if("headers"in t){o=t.status;s=this.serializeFetchHeaders(t.headers,function(e){return i._requestTracker.isHeaderInResponseHeaderWhitelist(e[0])})}return this._requestTracker.onComplete(e,s,o,n,r)},e.prototype.serializeFetchHeaders=function(e,t){var n="";return e.forEach(function(e,r){r=r.toLowerCase();var i=t([r,e]);n+=r+(i?": "+e:"")+di}),n},e}(),ci=function(){function e(e){this._requestTracker=e}return e.prototype.disable=function(){this._xhrOpenHook&&(this._xhrOpenHook.disable(),this._xhrOpenHook=null),this._xhrSetHeaderHook&&(this._xhrSetHeaderHook.disable(),this._xhrSetHeaderHook=null)},e.prototype.enable=function(e){var t,n=this,r=I(e),i=(null===(t=null==r?void 0:r._w)||void 0===t?void 0:t.XMLHttpRequest)||e.XMLHttpRequest;if(i){var o=i.prototype;this._xhrOpenHook=Tt(o,"open"),this._xhrOpenHook&&this._xhrOpenHook.before(function(e){var t=e.args[0],r=e.args[1];n._requestTracker.addPendingReq(e.that,t,r),e.that.addEventListener("load",Mt.wrap(function(t){n.onComplete(e.that)})),e.that.addEventListener("error",Mt.wrap(function(t){n.onComplete(e.that)}))}),this._xhrSendHook=Tt(o,"send"),this._xhrSendHook&&this._xhrSendHook.before(function(e){var t=e.args[0];n._requestTracker.addRequestBody(e.that,t)}),this._xhrSetHeaderHook=Tt(o,"setRequestHeader"),this._xhrSetHeaderHook&&this._xhrSetHeaderHook.before(function(e){var t=e.args[0],r=e.args[1];n._requestTracker.addHeader(e.that,t,r)})}},e.prototype.onComplete=function(e){var t=this,n=this.responseBody(e),r=n[0],i=n[1],o=Ei(function(e){var t=[];return e.split(di).forEach(function(e){var n=e.indexOf(":");-1!=n?t.push([e.slice(0,n).trim(),e.slice(n+1,e.length).trim()]):t.push([e.trim(),null])}),t}(e.getAllResponseHeaders()),function(e){return t._requestTracker.isHeaderInResponseHeaderWhitelist(e[0])});return this._requestTracker.onComplete(e,o,e.status,r,i)},e.prototype.responseBody=function(e){var t=this._requestTracker.pendingReq(e);if(!t)return[-1,void 0];var n=this._requestTracker.getRspWhitelist(t.url);if(e.responseType){var r=e.response;switch(r||o("Maybe response type was different that expected."),e.responseType){case"text":return mi(e.responseText,n);case"json":return function(e,t){if(!e)return[-1,void 0];return[yi(e),ai(e,te.MaxPayloadLength,t)]}(r,n);case"arraybuffer":return function(e,t){return[e?e.byteLength:-1,t?"[ArrayBuffer]":void 0]}(r,n);case"blob":return function(e,t){return[e?e.size:-1,t?"[Blob]":void 0]}(r,n);case"document":return function(e,t){return[-1,t?"[Document]":void 0]}(0,n);}}return mi(e.responseText,n)},e}();var hi,di="\r\n",li=["a-im","accept","accept-charset","accept-encoding","accept-language","accept-datetime","access-control-request-method,","access-control-request-headers","cache-control","connection","content-length","content-md5","content-type","date","expect","forwarded","from","host","if-match","if-modified-since","if-none-match","if-range","if-unmodified-since","max-forwards","origin","pragma","range","referer","te","user-agent","upgrade","via","warning"],pi=["access-control-allow-origin","access-control-allow-credentials","access-control-expose-headers","access-control-max-age","access-control-allow-methods","access-control-allow-headers","accept-patch","accept-ranges","age","allow","alt-svc","cache-control","connection","content-disposition","content-encoding","content-language","content-length","content-location","content-md5","content-range","content-type","date","delta-base","etag","expires","im","last-modified","link","location","permanent","p3p","pragma","proxy-authenticate","public-key-pins","retry-after","permanent","server","status","strict-transport-security","trailer","transfer-encoding","tk","upgrade","vary","via","warning","www-authenticate","x-frame-options"],fi={BM7A6:["x-b3-traceid"],KD87S:["transactionid"],NHYJM:["x-att-conversationid"],GBNRN:["x-trace-id"],R16RC:["x-request-id"],DE9CX:["x-client","x-client-id","ot-baggage-original-client","x-req-id","x-datadog-trace-id","x-datadog-parent-id","x-datadog-sampling-priority"]},vi={"thefullstory.com":["x-cloud-trace-context"],TN1:["x-cloud-trace-context"],KD87S:["transactionid"],PPE96:["x-b3-traceid"],HWT6H:["x-b3-traceid"],PPEY7:["x-b3-traceid"],PPK3W:["x-b3-traceid"],NHYJM:["x-att-conversationid"],GBNRN:["x-trace-id"],NK5T9:["traceid","requestid"]},_i=function(){function e(e,t){this._ctx=e,this._queue=t,this._enabled=!1,this._tracker=new gi(e,t),this._xhr=new ci(this._tracker),this._fetch=new ui(this._tracker)}return e.prototype.isEnabled=function(){return this._enabled},e.prototype.enable=function(e){this._enabled||(this._enabled=!0,this._queue.enqueue({Kind:R.REC_FEAT_SUPPORTED,Args:[Y.Ajax,!0,Y.AjaxFetch,!!e]}),this._xhr.enable(this._ctx.window),e&&this._fetch.enable(this._ctx.window))},e.prototype.disable=function(){this._enabled&&(this._enabled=!1,this._xhr.disable(),this._fetch.disable())},e.prototype.tick=function(e){this._tracker.tick(e)},e.prototype.setWatches=function(e){this._tracker.setWatches(e)},e}(),gi=function(){function e(e,t){this._ctx=e,this._queue=t,this._reqHeaderWhitelist={},this._rspHeaderWhitelist={},this._pendingReqs={},this._events=[],this._curId=1,this.addHeaderWhitelist(li,pi),this.addHeaderWhitelist(fi[e.options.orgId],vi[e.options.orgId])}return e.prototype.getReqWhitelist=function(e){var t=this.findWhitelistIndexFor(e);return t>=0&&this._reqWhitelist[t]},e.prototype.getRspWhitelist=function(e){var t=this.findWhitelistIndexFor(e);return t>=0&&this._rspWhitelist[t]},e.prototype.isHeaderInRequestHeaderWhitelist=function(e){return e in this._reqHeaderWhitelist},e.prototype.isHeaderInResponseHeaderWhitelist=function(e){return e in this._rspHeaderWhitelist},e.prototype.pushEvent=function(e){this._events.push(e)},e.prototype.setWatches=function(e){var t=this,n=[];this._reqWhitelist=[],this._rspWhitelist=[],e.forEach(function(e){n.push(e.URLRegex),t._reqWhitelist.push(Si(e.RecordReq,e.ReqWhitelist)),t._rspWhitelist.push(Si(e.RecordRsp,e.RspWhitelist))}),this._reqBodyRegex=new RegExp("("+n.join(")|(")+")")},e.prototype.addHeaderWhitelist=function(e,t){var n=this;e&&e.forEach(function(e){return n._reqHeaderWhitelist[e]=!0}),t&&t.forEach(function(e){return n._rspHeaderWhitelist[e]=!0})},e.prototype.tick=function(e){if(e){for(var t=0;te.MaxRuleBytes&&(o("CSSRule too large, inserting dummy instead: "+n.length),n="dummy {}"),this.withEventQueueForSheet(t,function(e){return e.enqueue({Kind:R.CSSRULE_INSERT,Args:"number"==typeof r?[i,[n],r]:[i,[n]]})}))},e.prototype.addDelete=function(e,t){var n=Fi(e,G.Node);n&&this.withEventQueueForSheet(e,function(e){return e.enqueue({Kind:R.CSSRULE_DELETE,Args:[n,t]})})},e.prototype.onDisableSheet=function(e,t){var n=Fi(e,G.Node);n&&this.withEventQueueForSheet(e,function(e){return e.enqueue({Kind:R.DISABLE_STYLESHEET,Args:[n,!!t]})})},e.prototype.withEventQueueForSheet=function(e,t){if(e.ownerNode)return n=this.ctx,r=e.ownerNode,i=t,void((o=I(Ai(r)||n.window))&&"function"==typeof o._withEventQueue&&o._withEventQueue(n.recording.pageSignature(),function(e){i({enqueue:function(t){Ft(null!=e,Ri)&&e.enqueue(t)},enqueueFirst:function(t){Ft(null!=e,Ri)&&e.enqueueFirst(t)}}),e=null}));var n,r,i,o;t(this.queue)},e.prototype.stop=function(){this.throttle.close();for(var e=0,t=this.hooks;e0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]-1)return[n];if("srcset"==t&&("img"==i||"source"==i)){return null!=n.match(/^\s*$/)?[]:n.split(",").map(function(e){return e.trim().split(/\s+/)[0]})}var o=e;if("style"==t&&o.style){var s=o.style.backgroundImage;if(!s)return[];if(s.length>300)return[];var a=[],u=void 0;for(jt.lastIndex=0;u=jt.exec(s);){var c=u[1];c&&a.push(c.trim())}return a}return[]}(e,t,n);r5e5)){var n=ki(Ti(e));if(n){if(n.length>0&&Li.test(t))return 0;var r,i=Gn();ae?(r=i.createElement("style")).textContent=e.textContent:r=i.importNode(e,!0),i.head.appendChild(r);var o=ki(Ti(r));if(i.head.removeChild(r),o)return n.length>o.length?o.length:void 0}}}(o);void 0!==s&&t.push(function(){n._styleSheetWatcher.snapshotEl(o,s)});break;default:"#"!==e.nodeName[0]&&e.nodeName.indexOf("-")>-1&&this._customElementWatcher.onCustomNodeVisited(e);}if("scrollLeft"in e&&"scrollTop"in e){var a=e;this._ctx.measurer.requestMeasureTask(function(){0==a.scrollLeft&&0==a.scrollTop||n.addScroll(a)})}},e.prototype.isSafePointerEvent=function(e){var t=Ki(e);return!!Mn(t)&&!Cn(t)},e.prototype.addMouseMove=function(e){var t=Mn(Ki(e));this._queue.enqueue({Kind:R.MOUSEMOVE,Args:t?[e.clientX,e.clientY,t]:[e.clientX,e.clientY]})},e.prototype.addMouseDown=function(e){this._queue.enqueue({Kind:R.MOUSEDOWN,Args:[e.clientX,e.clientY]})},e.prototype.addMouseUp=function(e){this._queue.enqueue({Kind:R.MOUSEUP,Args:[e.clientX,e.clientY]})},e.prototype.addTouchEvent=function(e,t){if(void 0!==e.changedTouches)for(var n=0;n0)return n[0]}}return e.target}var Vi=/^\s*at .*(\S+\:\d+|native|())/m,zi=/^(eval@)?(\[native code\])?$/;function Yi(e){if(!e||"string"!=typeof e.stack)return[];var t=e;return t.stack.match(Vi)?t.stack.split("\n").filter(function(e){return!!e.match(Vi)}).map(function(e){e.indexOf("(eval ")>-1&&(e=e.replace(/eval code/g,"eval").replace(/(\(eval at [^\()]*)|(\)\,.*$)/g,""));var t=e.replace(/^\s+/,"").replace(/\(eval code/g,"(").replace(/\(native code\)/,"").split(/\s+/).slice(1),n=Qi(t.pop());return Gi(t.join(" "),["eval",""].indexOf(n[0])>-1?"":n[0],n[1],n[2])}):function(e){return e.split("\n").filter(function(e){return!e.match(zi)}).map(function(e){if(e.indexOf(" > eval")>-1&&(e=e.replace(/ line (\d+)(?: > eval line \d+)* > eval\:\d+\:\d+/g,":$1")),-1===e.indexOf("@")&&-1===e.indexOf(":"))return[e,"",-1,-1];var t=e.split("@"),n=Qi(t.pop());return Gi(t.join("@"),n[0],n[1],n[2])})}(t.stack)}function Gi(e,t,n,r){return[e||"",t||"",parseInt(n||"-1"),parseInt(r||"-1")]}function Qi(e){if(!e||-1===e.indexOf(":"))return["","",""];var t=/(.+?)(?:\:(\d+))?(?:\:(\d+))?$/.exec(e.replace(/[\(\)]/g,""));return t?[t[1]||"",t[2]||"",t[3]||""]:["","",""]}var Xi=function(){for(var e=0,t=0,n=arguments.length;t0&&"string"==typeof e.nodeName}(t)?function(e){return e.toString()}(t):void 0===t?"undefined":"object"!=typeof t||null==t?t:t instanceof Error?t.stack||t.name+": "+t.message:void 0;if(void 0!==o)return void 0===(o=s.jsonStringify(o))?0:("\""==o[0]&&(o=to(o,n,"...\"")),o.length<=n?(i.tokens.push(o),o.length):0);if(i.cyclic){i.opath.splice(r);var a=i.opath.lastIndexOf(t);if(a>-1){var u="";return u="\""+to(u,n-2)+"\"",i.tokens.push(u),u.length}i.opath.push(t)}var c=n,h=function(e){return c>=e.length&&(c-=e.length,i.tokens.push(e),!0)},d=function(e){","==i.tokens[i.tokens.length-1]?i.tokens[i.tokens.length-1]=e:h(e)};if(c<2)return 0;if(nt(t)){h("[");for(var l=0;l0;l++){var p=e(t[l],c-1,r+1,i);if(c-=p,0==p&&!h("null"))break;h(",")}d("]")}else{h("{");var f=Ze(t);for(l=0;l0;l++){var v=f[l],_=t[v];if(!h("\""+v+"\":"))break;if(0==(p=e(_,c-1,r+1,i))){i.tokens.pop();break}c-=p,h(",")}d("}")}return n==1/0?1:n-c}(e,t,0,i);var o=i.tokens.join("");return r?function(e,t){var n=t.replace(vr,"");return n=n.replace(_r,function(t){return ur(t,e,{source:"log",type:"debug"})})}(n,o):o}catch(e){return mt(e)}}function Zi(e,t){var n=0;try{s.jsonStringify(e,function(e,r){if(n++>t)throw"break";if("object"==typeof r)return r})}catch(e){return"break"!=e}return!1}var eo=function(e){return isNaN(e)?"Invalid Date":e.toUTCString()},to=function(e,t,n){return void 0===n&&(n="..."),e.length<=t?e:e.length<=n.length||t<=n.length?e.substring(0,t):e.substring(0,t-n.length)+n};var no=function(){for(var e=0,t=0,n=arguments.length;tthis._curveEndMs&&(this._curveEndMs=e.When),this._evts.push(e)},e.prototype.finish=function(e,t){void 0===t&&(t=[]);var n=this._evts.length;if(n<=1)return!1;for(var r=no([this._curveEndMs],t),i=this._evts[0].When,o=this._evts[n-1].When,s=0;s0?this._lastWhen:this._ctx.time.now();this.enqueueAt(t,e),Zt.checkForBrokenSchedulers()},e.prototype.enqueueAt=function(e,t){if(!this._recordingDisabled){e0){var t=e;t.When=this._eventQueue[0].When,this._eventQueue.unshift(t)}else this.enqueue(e)},e.prototype.addUnload=function(e){this._gotUnload||(this._gotUnload=!0,this.enqueue({Kind:R.UNLOAD,Args:[e]}),this.singSwanSong())},e.prototype.shutdown=function(e){this._flush(),this.addUnload(e),this._flush(),this._recordingDisabled=!0,this.stopPipeline()},e.prototype._flush=function(){this.processEvents(),this._transport.flush()},e.prototype.singSwanSong=function(){this._recordingDisabled||(this.processEvents(),this._transport.singSwanSong())},e.prototype.rebaseIframe=function(e){for(var t=0,n=this._eventQueue.length;t0){var d=h[h.length-1].Args[2];if(d)h[0].Args[9]=d}}for(var l in o){o[p=parseInt(l)].finish(R.SCROLL_LAYOUT_CURVE,[p])}for(var l in s){s[p=parseInt(l)].finish(R.SCROLL_VISUAL_OFFSET_CURVE,[p])}for(var l in i){var p;i[p=parseInt(l)].finish(R.TOUCHMOVE_CURVE,[p])}return t&&t.finish(R.RESIZE_VISUAL_CURVE),n}(t);e||(n=n.concat(this._gatherExternalEvents(0!=n.length))),this.ensureFrameIds(n),0!=n.length&&this._transport.enqueueEvents(this._ctx.recording.pageSignature(),n)}},e.prototype.ensureFrameIds=function(e){if(this._frameId)for(var t=this._parentIds,n=t&&t.length>0,r=0;r>>0).toString(16)).slice(-8);return e},e}();function uo(e){var t=new ao(1);return t.writeAscii(e),t.sumAsHex()}function co(e){var t=new Uint8Array(e);return lo(String.fromCharCode.apply(null,t))}var ho="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";function lo(e){var t;return(null!==(t=window.btoa)&&void 0!==t?t:po)(e).replace(/\+/g,"-").replace(/\//g,"_")}function po(e){for(var t=String(e),n=[],r=0,i=0,o=0,s=ho;t.charAt(0|o)||(s="=",o%1);n.push(s.charAt(63&r>>8-o%1*8))){if((i=t.charCodeAt(o+=.75))>255)throw new Error("'btoa' failed: The string to be encoded contains characters outside of the Latin1 range.");r=r<<8|i}return n.join("")}var fo=function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function s(e){try{u(r.next(e))}catch(e){o(e)}}function a(e){try{u(r["throw"](e))}catch(e){o(e)}}function u(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(s,a)}u((r=r.apply(e,t||[])).next())})},vo=function(e,t){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:a(0),"throw":a(1),"return":a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(o){return function(a){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(i=2&o[0]?r["return"]:o[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return s.label++,{value:o[1],done:!1};case 5:s.label++,r=o[1],o=[0];continue;case 7:o=s.ops.pop(),s.trys.pop();continue;default:if(!(i=(i=s.trys).length>0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]go?[4,t(mo)]:[3,3]:[3,5];case 2:u.sent(),i=e.now(),u.label=3;case 3:a=new Uint8Array(n,s,Math.min(o-s,_o)),r.write(a),u.label=4;case 4:return s+=_o,[3,1];case 5:return[2,{hash:r.sum(),hasher:r}];}})})}var wo=function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function s(e){try{u(r.next(e))}catch(e){o(e)}}function a(e){try{u(r["throw"](e))}catch(e){o(e)}}function u(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(s,a)}u((r=r.apply(e,t||[])).next())})},bo=function(e,t){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:a(0),"throw":a(1),"return":a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(o){return function(a){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(i=2&o[0]?r["return"]:o[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return s.label++,{value:o[1],done:!1};case 5:s.label++,r=o[1],o=[0];continue;case 7:o=s.ops.pop(),s.trys.pop();continue;default:if(!(i=(i=s.trys).length>0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]So){var i=ur(e,t,{source:"log",type:"bugsnag"});return Mt.sendToBugsnag("Size of blob resource exceeds limit","warning",{url:i,MaxResourceSizeBytes:So}),void r(null)}(function(e){var t=oo(),n=t.resolve,r=t.promise,i=new FileReader;return i.readAsArrayBuffer(e),i.onload=function(){n(i.result)},i.onerror=function(e){Mt.sendToBugsnag(e,"error"),n(null)},r})(n).then(function(e){r(e?{buffer:e,blob:n,contentType:n.type}:null)})},s.send(),i)}function ko(e,t){var n,r;return wo(this,void 0,et,function(){var i;return bo(this,function(o){switch(o.label){case 0:return i=e.window,(null===(r=null===(n=i.crypto)||void 0===n?void 0:n.subtle)||void 0===r?void 0:r.digest)?[4,i.crypto.subtle.digest({name:"sha-1"},t)]:[3,2];case 1:return[2,{hash:co(o.sent()),algorithm:"sha1"}];case 2:return[4,yo(e.time,so,t)];case 3:return[2,{hash:o.sent().hash,algorithm:"fsnv"}];}})})}var Io=function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function s(e){try{u(r.next(e))}catch(e){o(e)}}function a(e){try{u(r["throw"](e))}catch(e){o(e)}}function u(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(s,a)}u((r=r.apply(e,t||[])).next())})},Co=function(e,t){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:a(0),"throw":a(1),"return":a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(o){return function(a){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(i=2&o[0]?r["return"]:o[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return s.label++,{value:o[1],done:!1};case 5:s.label++,r=o[1],o=[0];continue;case 7:o=s.ops.pop(),s.trys.pop();continue;default:if(!(i=(i=s.trys).length>0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]0&&(this._regexes=this._joinRegexes(t))},e.prototype.matches=function(e){return!!this._regexes&&this._regexes.test(e)},e.prototype._isValidRegex=function(e){try{return new RegExp(e),!0}catch(t){return Mt.sendToBugsnag("Browser rejected UrlKeep.Regex","error",{expr:e,error:t.toString()}),!1}},e.prototype._joinRegexes=function(e){try{return new RegExp("("+e.join(")|(")+")","i")}catch(t){return Mt.sendToBugsnag("Browser rejected joining UrlKeep.Regexs","error",{exprs:e,error:t.toString()}),null}},e}();function Po(e,t){var n=Mn(e)+" ";return e.id&&(n+="#"+e.id),n+="[src="+ur(e.src,t,{source:"log",type:"debug"})+"]"}var qo,Uo=function(e){var t=e.transport,n=e.frame,r=e.orgId,s=e.scheme,a=e.script,u=e.recHost,c=e.appHost,h=Po(n,r);o("Injecting into Frame "+h);try{if(function(e){return e.id==e.name&&No.test(e.id)}(n))return void o("Blacklisted iframe: "+h);if(function(e){if(!e.contentDocument||!e.contentWindow||!e.contentWindow.location)return!0;return function(e){return!!e.src&&"about:blank"!=e.src&&e.src.indexOf("javascript:")<0}(e)&&e.src!=e.contentWindow.location.href&&"loading"==e.contentDocument.readyState}(n))return void o("Frame not yet loaded: "+h);var d=n.contentWindow,l=n.contentDocument;if(!d||!l)return void o("Missing contentWindow or contentDocument: "+h);if(!l.head)return void o("Missing contentDocument.head: "+h);if(I(d))return void o("FS already defined in Frame contentWindow: "+h+". Ignoring.");d._fs_org=r,d._fs_script=a,d._fs_rec_host=u,d._fs_app_host=c,d._fs_debug=i(),d._fs_run_in_iframe=!0,t&&(d._fs_transport=t);var p=l.createElement("script");p.async=!0,p.crossOrigin="anonymous",p.src=s+"//"+a,"testdrive"==r&&(p.src+="?allowMoo=true"),l.head.appendChild(p)}catch(e){o("iFrame no injecty. Probably not same origin.")}},No=/^fb\d{18}$/;!function(e){e[e.NoInfoYet=1]="NoInfoYet",e[e.Enabled=2]="Enabled",e[e.Disabled=3]="Disabled"}(qo||(qo={}));var Wo=function(){function e(e,t,n,r){var i=this;this._ctx=e,this._transport=n,this._injector=r,this._bundleUploadInterval=te.DefaultBundleUploadInterval,this._iFrames=[],this._pendingChildFrameIdInits=[],this._listeners=new Ut,this._getCurrentSessionEnabled=qo.NoInfoYet,this._resourceUploadingEnabled=!1,this._tickerTasks=[],this._pendingIframes={},this._watcher=new yn,this._queue=new io(e,this._transport,function(e){for(var t=i._eventWatcher.bundleEvents(e),n=void 0;n=i._tickerTasks.pop();)n();return t},t),this._keep=new Lo(e,this._queue),this._eventWatcher=new Di(e,this._queue,this._keep,this._watcher,this._listeners,function(e){i.onFrameCreated(e)},function(e){i.beforeFrameRemoved(e)},new Eo(e,this._queue,new Ao(e))),this._consoleWatcher=new Ji(e,this._queue,this._listeners),this._scheme=e.options.scheme,this._script=e.options.script,this._recHost=e.options.recHost,this._appHost=e.options.appHost,this._orgId=e.options.orgId,this._wnd=e.window}return e.prototype.bundleUploadInterval=function(){return this._bundleUploadInterval},e.prototype.start=function(e,t){var n=this;this._onFullyStarted=t,"onpagehide"in this._wnd?this._listeners.add(this._wnd,"pagehide",!1,function(e){n.onUnload()}):this._listeners.add(this._wnd,"unload",!1,function(e){n.onUnload()}),this._listeners.add(this._wnd,"message",!1,function(e){if("string"==typeof e.data){var t=e.source;n.postMessageReceived(t,Bo(e.data))}});var r=this._wnd.Document?this._wnd.Document.prototype:this._wnd.document;this._docCloseHook=Tt(r,"close"),this._docCloseHook&&this._docCloseHook.afterAsync(function(){n._listeners.refresh()})},e.prototype.queue=function(){return this._queue},e.prototype.eventWatcher=function(){return this._eventWatcher},e.prototype.console=function(){return this._consoleWatcher},e.prototype.onDomLoad=function(){this._eventWatcher.onDomLoad()},e.prototype.onLoad=function(){this._eventWatcher.onLoad()},e.prototype.shutdown=function(e){this._eventWatcher.shutdown(e),this._consoleWatcher.disable(),this._listeners&&this._listeners.clear(),this._docCloseHook&&this._docCloseHook.disable(),this.tellAllFramesTo(["ShutdownFrame"])},e.prototype.tellAllFramesTo=function(e){for(var t=0;t0){for(var e=0;e0&&this._transport.enqueueEvents(r,n);break;case"RequestFrameId":if(!e)return void o("No MessageEvent.source, iframe may have unloaded.");var s=this.iFrameWndToFsId(e);s?(o("Responding to FID request for frame "+s),this._pendingIframes[s]=!1,this.sendFrameIdToInnerFrame(e,s)):o("No FrameId found. Hoping to send one later.");}},e.prototype.sendFrameIdToInnerFrame=function(e,t){var n=this,r=function(){var r=[];0!=n._frameId&&(r=n._parentIds?n._parentIds.concat(n._frameId):[n._frameId]);var i=n._ctx.time.startTime();Do(e,["SetFrameId",t,r,i,n._scheme,n._script,n._appHost,n._orgId,n._pageRsp])};null==this._frameId?this._pendingChildFrameIdInits.push(r):r()},e.prototype.iFrameWndToFsId=function(e){for(var t=0;t=400&&502!==e||202==e||206==e}var jo=function(){return(jo=Object.assign||function(e){for(var t,n=1,r=arguments.length;n2e6))try{localStorage._fs_swan_song=t}catch(e){}},e.prototype._recover=function(){try{if("_fs_swan_song"in localStorage){var e=localStorage._fs_swan_song||localStorage.singSwanSong;delete localStorage._fs_swan_song,delete localStorage.singSwanSong;var t=wt(e);if(!(t.Bundles&&t.UserId&&t.SessionId&&t.PageId))return void o("Malformed swan song found. Ignoring it.");t.OrgId||(t.OrgId=this._identity.orgId()),t.Bundles.length>0&&(o("Sending "+t.Bundles.length+" bundles as prior page swan song"),this.sendSwanSongBundles(t))}}catch(e){o("Error recovering swan-song: "+e)}},e.prototype.sendSwanSongBundles=function(e,t){var n=this;void 0===t&&(t=0);var r=null;if(nt(e.Bundles)&&0!==e.Bundles.length&&void 0!==e.Bundles[0]){1==e.Bundles.length&&(r=this._ctx.time.wallTime()-(e.LastBundleTime||0));this._protocol.bundle({bundle:e.Bundles[0],deltaT:r,orgId:e.OrgId,pageId:e.PageId,serverBundleTime:e.ServerBundleTime,serverPageStart:e.ServerPageStart,sessionId:e.SessionId,userId:e.UserId,isNewSession:e.IsNewSession,win:function(t){o("Sent "+e.Bundles[0].Evts.length+" trailing events from last session as Seq "+e.Bundles[0].Seq),e.Bundles.shift(),e.Bundles.length>0?n.sendSwanSongBundles(jo(jo({},e),{ServerBundleTime:t.BundleTime})):o("Done with prior page swan song")},lose:function(r){Ho(r)?o("Fatal error while sending events, giving up"):(o("Failed to send events from last session, will retry while on this page"),n._lastSwanSongRetryTimeout=new n._timeoutFactory(n.sendSwanSongBundles,n._protocol.exponentialBackoffMs(t,!0),n,e,t+1).start())}})}},e}(),Vo=function(){function e(e,t,n,r){var i=this;void 0===t&&(t=new Ro(e)),void 0===n&&(n=en),void 0===r&&(r=tn),this._ctx=e,this._protocol=t,this._tickerFactory=n,this._backoffRetries=0,this._backoffTime=0,this._bundleSeq=1,this._lastPostTime=0,this._serverBundleTime=0,this._isNewSession=!1,this._largePageSize=16e6,this._outgoingEventQueue=[],this._bundleQueue=[],this._hibernating=!1,this._heartbeatInterval=0,this._lastUserActivity=this._ctx.time.wallTime(),this._finished=!1,this._scheme=e.options.scheme,this._identity=e.recording.identity,this._lastBundleTime=e.time.wallTime(),this._swanSong=new Ko(e,this._protocol,this._identity,r),this._heartbeatTimeout=new r(function(){i.onHeartbeat()}),this._hibernationTimeout=new r(function(){i.onHibernate()},te.PageInactivityTimeout)}return e.prototype.onShutdown=function(e){this._onShutdown=e},e.prototype.scheme=function(){return this._scheme},e.prototype.enqueueEvents=function(e,t){if(this.maybeHibernate(),this._hibernating){if(this._finished)return;for(var n=0,r=t;n0&&this.enqueueNextBundle(!0),this._bundleQueue.length>0||this._pendingBundle)){var e=this._bundleQueue.concat();this._pendingBundle&&e.unshift(this._pendingBundle),this._swanSong.sing({pageId:this._pageId,bundles:e,lastBundleTime:this._lastBundleTime,serverPageStart:this._serverPageStart,serverBundleTime:this._serverBundleTime,isNewSession:this._isNewSession})}},e.prototype.maybeHibernate=function(){this._hibernating||this.calcLastUserActivityDuration()>=te.PageInactivityTimeout+5e3&&this.onHibernate()},e.prototype.calcLastUserActivityDuration=function(){return s.mathFloor(this._ctx.time.wallTime()-this._lastUserActivity)},e.prototype.onHeartbeat=function(){var e=this.calcLastUserActivityDuration();this._outgoingEventQueue.push({When:this._ctx.time.now(),Kind:R.HEARTBEAT,Args:[e]}),this._heartbeatInterval*=2,this._heartbeatInterval>te.HeartbeatMax&&(this._heartbeatInterval=te.HeartbeatMax),this._heartbeatTimeout.start(this._heartbeatInterval)},e.prototype.onHibernate=function(){this._hibernating||(this.calcLastUserActivityDuration()<=2*te.PageInactivityTimeout&&(this._outgoingEventQueue.push({When:this._ctx.time.now(),Kind:R.UNLOAD,Args:[V.Hibernation]}),this.singSwanSong()),this.stopPipeline(),this._hibernating=!0)},e.prototype.enqueueAndSendBundle=function(){this._pendingBundle?this._pendingBundleFailed&&this._sendPendingBundle():0!=this._outgoingEventQueue.length?this.enqueueNextBundle():this.maybeSendNextBundle()},e.prototype.enqueueNextBundle=function(e){void 0===e&&(e=!1);var t={When:this._outgoingEventQueue[0].When,Seq:this._bundleSeq++,Evts:this._outgoingEventQueue};this._outgoingEventQueue=[],this._bundleQueue.push(t),e?this._protocol.bundleBeacon({bundle:t,deltaT:null,orgId:this._identity.orgId(),pageId:this._pageId,serverBundleTime:this._serverBundleTime,serverPageStart:this._serverPageStart,isNewSession:this._isNewSession,sessionId:this._identity.sessionId(),userId:this._identity.userId(),win:function(){},lose:function(){}}):this.maybeSendNextBundle()},e.prototype.maybeSendNextBundle=function(){this._pageId&&this._serverPageStart&&!this._pendingBundle&&0!=this._bundleQueue.length&&(this._pendingBundle=this._bundleQueue.shift(),this._sendPendingBundle())},e.prototype._sendPendingBundle=function(){var e=this,t=this._ctx.time.wallTime();if(!(te._ctx.recording.bundleUploadInterval()&&e.maybeSendNextBundle()},function(t){if(o("Failed to send events."),Ho(t))return 206==t?Mt.sendToBugsnag("Failed to send bundle, probably because of its large size","error"):t>=500&&Mt.sendToBugsnag("Failed to send bundle, recording outage likely","error"),void(e._onShutdown&&e._onShutdown());e._pendingBundleFailed=!0,e._backoffTime=e._lastPostTime+e._protocol.exponentialBackoffMs(e._backoffRetries++,!1)}))}},e.prototype.sendBundle=function(e,t,n){var r=s.mathFloor(this._ctx.time.wallTime()-this._lastUserActivity),i=this._protocol.bundle({bundle:e,deltaT:null,lastUserActivity:r,orgId:this._identity.orgId(),pageId:this._pageId,serverBundleTime:this._serverBundleTime,serverPageStart:this._serverPageStart,isNewSession:this._isNewSession,sessionId:this._identity.sessionId(),userId:this._identity.userId(),win:t,lose:n});i>this._largePageSize&&this._bundleSeq>16&&(o("splitting large page: "+i),this._ctx.recording.splitPage(V.Size))},e}(),zo=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Yo=function(e){function t(t,n,r,i,o){void 0===r&&(r=new Vo(t,n)),void 0===i&&(i=en),void 0===o&&(o=Uo);var s,a,u=e.call(this,t,i,r,o)||this;return u._protocol=n,u._domLoaded=!1,u._recordingDisabled=!1,u._integrationScriptFetched=!1,r.onShutdown(function(){return u.shutdown(V.SettingsBlocked)}),u._doc=u._wnd.document,u._frameId=0,u._identity=t.recording.identity,u._getCurrentSessionEnabled=qo.NoInfoYet,s=u._wnd,a=function(e){if(u._eventWatcher.shutdown(V.Api),e){var t=u._doc.getElementById(e);t&&t.setAttribute("_fs_embed_token",u._embedToken)}},s._fs_shutdown=a,u}return zo(t,e),t.prototype.onDomLoad=function(){var t=this;e.prototype.onDomLoad.call(this),this._domLoaded=!0,this.injectIntegrationScript(function(){t.fireFsReady(t._recordingDisabled)})},t.prototype.getReplayFlags=function(){var e=U(this._wnd);if(/[?&]_fs_force_session=true(&|#|$)/.test(location.search)&&(e+=",forceSession",this._wnd.history)){var t=location.search.replace(/(^\?|&)_fs_force_session=true(&|$)/,function(e,t,n){return n?t:""});this._wnd.history.replaceState({},"",this._wnd.location.href.replace(location.search,t))}return e},t.prototype.start=function(t,n){var r,i,o,s=this;e.prototype.start.call(this,t,n);var a=this.getReplayFlags(),u=Vt(this._doc),c=u[0],h=u[1],d=bt(this._wnd),l=d[0],p=d[1],f="";t||(f=this._identity.userId());var v=null!==(o=null===(i=null===(r=this._ctx)||void 0===r?void 0:r.recording)||void 0===i?void 0:i.preroll)&&void 0!==o?o:-1,_=ur(Jn(this._wnd),this._orgId,{source:"page",type:"base"}),g=ur(this._doc.referrer,this._orgId,{source:"page",type:"referrer"}),m=ur(this._wnd.location.href,this._orgId,{source:"page",type:"url"}),y={OrgId:this._orgId,UserId:f,Url:m,Base:_,Width:c,Height:h,ScreenWidth:l,ScreenHeight:p,Referrer:g,Preroll:v,Doctype:yt(this._doc),CompiledTimestamp:1591209308,AppId:this._identity.appId()};a&&(y.ReplayFlags=a),this._protocol.page(y,function(e){s.handleResponse(e),s.handleIdentity(e.CookieDomain,e.UserIntId,e.SessionIntId,e.PageIntId,e.EmbedToken),s.handleIntegrationScript(e.IntegrationScript),e.PreviewMode&&s.maybeInjectPreviewScript();var t=s._wnd._fs_pagestart;t&&t();var n=!!e.Consented;s._queue.enqueueFirst({Kind:R.SYS_REPORTCONSENT,Args:[n,K.Document]}),s._queue.enqueueFirst({Kind:R.SET_FRAME_BASE,Args:[ur(Jn(s._wnd),s._orgId,{source:"event",type:R.SET_FRAME_BASE}),yt(s._doc)]}),s._queue.startPipeline({pageId:e.PageIntId,serverPageStart:e.PageStart,isNewSession:!!e.IsNewSession}),s.fullyStarted()},function(e,t){t&&t.user_id&&t.cookie_domain&&t.reason_code==$.ReasonBlockedTrafficRamping&&f!=t.user_id&&s.handleIdentity(t.cookie_domain,t.user_id,"","",""),s.disableBecauseRecPageSaidSo()})},t.prototype.handleIntegrationScript=function(e){var t=this;this._integrationScriptFetched=!0,this._integrationScript=e,this.injectIntegrationScript(function(){t.fireFsReady(t._recordingDisabled)})},t.prototype.handleIdentity=function(e,t,n,r,i){var s=this._identity;s.setIds(this._wnd,e,t,n),this._embedToken=i,o("/User,"+s.userId()+"/Session,"+s.sessionId()+"/Page,"+r)},t.prototype.injectIntegrationScript=function(e){if(this._domLoaded&&this._integrationScriptFetched)if(this._integrationScript){var t=this._doc.createElement("script");this._wnd._fs_csp?(t.addEventListener("load",e),t.addEventListener("error",e),t.async=!0,t.src=this._scheme+"//"+this._recHost+"/rec/integrations?OrgId="+this._orgId,this._doc.head.appendChild(t)):(t.text=this._integrationScript,this._doc.head.appendChild(t),e())}else e()},t.prototype.maybeInjectPreviewScript=function(){if(!this._doc.getElementById("FullStory-preview-script")){var e=this._doc.createElement("script");e.id="FullStory-preview-script",e.async=!0,e.src=this._scheme+"//"+this._appHost+"/s/fspreview.js",this._doc.head.appendChild(e)}},t.prototype.disableBecauseRecPageSaidSo=function(){this.shutdown(V.SettingsBlocked),o("Disabling FS."),this._recordingDisabled=!0,this.fireFsReady(this._recordingDisabled)},t}(Wo),Go=function(){function e(e,t){void 0===t&&(t=new Qo(e)),this._wnd=e,this._messagePoster=t}return e.prototype.enqueueEvents=function(e,t){this._messagePoster.postMessage(this._wnd.parent,"EvtBundle",t,e)},e.prototype.startPipeline=function(){},e.prototype.stopPipeline=function(){},e.prototype.flush=function(){},e.prototype.singSwanSong=function(){},e.prototype.onShutdown=function(e){},e}(),Qo=function(){function e(e){this.wnd=e}return e.prototype.postMessage=function(e,t,n,r){var i=N(this.wnd);if(i)try{i.send(t,gt(n),r)}catch(e){i.send(t,gt(n))}else e.postMessage(function(e,t,n){var r=[e,t];n&&r.push(n);return gt({__fs:r})}(t,n,r),"*")},e}();var Xo,Jo=function(){var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(t,n)};return function(t,n){function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),$o=function(e){function t(t,n,r,i,o){void 0===n&&(n=new Qo(t.window)),void 0===r&&(r=new Go(t.window)),void 0===i&&(i=en),void 0===o&&(o=Uo);var s=e.call(this,t,i,r,o)||this;return s._messagePoster=n,s}return Jo(t,e),t.prototype.start=function(t,n){var r=this;e.prototype.start.call(this,t,n),this.sendRequestForFrameId(),this._listeners.add(this._wnd,"load",!1,function(){r._eventWatcher.recordingIsDetached()&&(o("Recording wrong document. Restarting recording in iframe."),r._ctx.recording.splitPage(V.FsShutdownFrame))})},t.prototype.postMessageReceived=function(t,n){if(e.prototype.postMessageReceived.call(this,t,n),t==this._wnd.parent||t==this._wnd)switch(n[0]){case"GreetFrame":this.sendRequestForFrameId();break;case"SetFrameId":try{var r=n[1],i=n[2],s=n[3],a=n[4],u=n[5],c=n[6],h=n[7],d=n[8];if(!r)return void o("Outer page gave us a bogus frame Id! Iframe: "+ur(location.href,h,{source:"log",type:"debug"}));this.setFrameIdFromOutside(r,i,s,a,u,c,h,d)}catch(e){o("Failed to parse frameId from message: "+gt(n))}break;case"SetConsent":var l=n[1];this.setConsent(l);break;case"InitFrameMobile":try{var p=JSON.parse(n[1]),f=p.StartTime;if(n.length>2){var v=n[2];if(v.hasOwnProperty("ProtocolVersion"))v.ProtocolVersion>=20180723&&v.hasOwnProperty("OuterStartTime")&&(f=v.OuterStartTime)}var _=p.Host;this.setFrameIdFromOutside(0,[],f,"https:",H(_),B(_),p.OrgId,p.PageResponse)}catch(e){o("Failed to initialize mobile web recording from message: "+gt(n))}}},t.prototype.sendRequestForFrameId=function(){this._frameId||(0!=this._frameId?this._wnd.parent?(o("Asking for a frame ID."),this._messagePoster.postMessage(this._wnd.parent,"RequestFrameId",[])):o("Orphaned window."):o("For some reason the outer window attempted to request a frameId"))},t.prototype.setFrameIdFromOutside=function(e,t,n,r,i,s,a,u){if(this._frameId)this._frameId!=e?(o("Updating frame id from "+this._frameId+" to "+e),this._ctx.recording.splitPage(V.FsShutdownFrame)):o("frame Id is already set to "+this._frameId);else{o("FrameId received within frame "+ur(location.href,a,{source:"log",type:"debug"})+": "+e),this._scheme=r,this._script=i,this._appHost=s,this._orgId=a,this._frameId=e,this._parentIds=t,this.handleResponse(u),this.fireFsReady();var c=!!u.Consented;this._queue.enqueueFirst({Kind:R.SYS_REPORTCONSENT,Args:[c,K.Document]}),this._queue.enqueueFirst({Kind:R.SET_FRAME_BASE,Args:[ur(Jn(this._wnd),a,{source:"event",type:R.SET_FRAME_BASE}),yt(this._wnd.document)]}),this._queue.rebaseIframe(n),this._ctx.time.setStartTime(n),this._queue.startPipeline({pageId:this._pageId,serverPageStart:u.PageStart,isNewSession:!!u.IsNewSession,frameId:e,parentIds:t}),this.flushPendingChildFrameInits(),this.fullyStarted()}},t}(Wo),Zo="fsidentity",es="newuid",ts=function(){function e(e,t){void 0===e&&(e=document),void 0===t&&(t=function(){}),this._doc=e,this._onWriteFailure=t,this._cookies={},this._appId=void 0}return e.prototype.initFromCookies=function(e,t){this._cookies=y(this._doc);var n=this._cookies.fs_uid;if(!n)try{n=localStorage._fs_uid}catch(e){}var r=m(n);r&&r.host.replace(/^www\./,"")==e.replace(/^www\./,"")&&r.orgId==t?this._cookie=r:this._cookie={expirationAbsTimeSeconds:g(),host:e,orgId:t,userId:"",sessionId:"",appKeyHash:""}},e.prototype.initFromParsedCookie=function(e){this._cookie=e},e.prototype.clear=function(){this._cookie.userId=this._cookie.sessionId=this._cookie.appKeyHash=this._appId="",this._cookie.expirationAbsTimeSeconds=g(),this._write()},e.prototype.host=function(){return this._cookie.host},e.prototype.orgId=function(){return this._cookie.orgId},e.prototype.userId=function(){return this._cookie.userId},e.prototype.sessionId=function(){return this._cookie.sessionId},e.prototype.appKeyHash=function(){return this._cookie.appKeyHash},e.prototype.cookieData=function(){return this._cookie},e.prototype.cookies=function(){return this._cookies},e.prototype.setCookie=function(e,t,n){void 0===n&&(n=new Date(p()+6048e5).toUTCString());var r=e+"="+t;this._domain?r+="; domain=."+encodeURIComponent(this._domain):r+="; domain=",r+="; Expires="+n+"; path=/; SameSite=Strict","https:"===location.protocol&&(r+="; Secure"),this._doc.cookie=r},e.prototype.setIds=function(e,t,n,r){(C(t)||t.match(/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/g))&&(t="");var i=function(e){return e._fs_cookie_domain}(e);"string"==typeof i&&(t=i),this._domain=t,this._cookie.userId=n,this._cookie.sessionId=r,this._write()},e.prototype.clearAppId=function(){return!!this._cookie.appKeyHash&&(this._appId="",this._cookie.appKeyHash="",this._write(),!0)},e.prototype.setAppId=function(e){this._appId=e,this._cookie.appKeyHash=uo(e),this._write()},e.prototype.appId=function(){return this._appId},e.prototype.encode=function(){var e=this._cookie.host+"#"+this._cookie.orgId+"#"+this._cookie.userId+":"+this._cookie.sessionId;return this._cookie.appKeyHash&&(e+="#"+encodeURIComponent(this._cookie.appKeyHash)+"#"),e+="/"+this._cookie.expirationAbsTimeSeconds},e.prototype._write=function(){if(null!=this._domain){var e=this.encode(),t=new Date(1e3*this._cookie.expirationAbsTimeSeconds).toUTCString();this.setCookie("fs_uid",e,t);var n=[];-1===this._doc.cookie.indexOf(e)&&n.push(["fs_uid","cookie"]);try{localStorage._fs_uid=e,localStorage._fs_uid!==e&&n.push(["fs_uid","localStorage"])}catch(e){n.push(["fs_uid","localStorage",String(e)])}n.length>0&&this._onWriteFailure(n)}},e}();!function(e){e.rec="rec",e.user="user",e.account="account",e.consent="consent",e.customEvent="event",e.log="log"}(Xo||(Xo={}));var ns={acctId:"str",displayName:"str",website:"str"},rs={uid:"str",displayName:"str",email:"str"},is={str:os,bool:ss,real:as,"int":us,date:cs,strs:hs(os),bools:hs(ss),reals:hs(as),ints:hs(us),dates:hs(cs),objs:hs(ds),obj:ds};function os(e){return"string"==typeof e}function ss(e){return"boolean"==typeof e}function as(e){return"number"==typeof e}function us(e){return"number"==typeof e&&e-s.mathFloor(e)==0}function cs(e){return!!e&&(e.constructor===Date?!isNaN(e):("number"==typeof e||"string"==typeof e)&&!isNaN(new Date(e)))}function hs(e){return function(t){if(!(t instanceof Array))return!1;for(var n=0;n=0)return o("blocking FS.identify API call; uid value ("+n+") is illegal"),[void 0,Zo];var r=uo(n),i=void 0;t&&t._cookie.appKeyHash&&t._cookie.appKeyHash!==r&&t._cookie.appKeyHash!==n&&(o("user re-identified; existing uid hash ("+t._cookie.appKeyHash+") does not match provided uid ("+n+")"),i=es);return[n,i]}(a,this._identity),c=u[0],h=u[1];if(!c){switch(h){case Zo:case void 0:break;default:o("unexpected failReason returned from setAppId: "+h);}return{events:i}}t.uid=c,this._identity.setAppId(t.uid),h==es&&(r=!0)}}i.push.apply(i,this.rawEventsFromApi(X.User,rs,t,n));break;case Xo.customEvent:var d=t.n,l=t.p;i.push.apply(i,this.rawEventsFromApi(X.Event,{},l,n,d));break;default:o("invalid operation \""+e+"\"; only \"rec\", \"account\", and \"user\" are supported at present");}}catch(t){o("unexpected exception handling "+e+" API call: "+t.message)}return{events:i,reidentify:r}},e.prototype.rawEventsFromApi=function(e,t,n,r,i){var a=function e(t,n,r){var i={PayloadToSend:{},ValidationErrors:[]},a=function(r){var o=e(t,n,r);return i.ValidationErrors=i.ValidationErrors.concat(o.ValidationErrors),o.PayloadToSend};return ht(r,function(e,r){var u=function(e,t,n,r){var i=t,a=typeof n;if("undefined"===a)return o("Cannot infer type of "+a+" "+n),r.push({Type:"vartype",FieldName:t,ValueType:a+" (unsupported)"}),null;if(s.objectHasOwnProp(e,t))return{name:t,type:e[t]};var u=t.lastIndexOf("_");if(-1==u||!vs(t.substring(u+1))){var c=function(e){for(var t in is)if(is[t](e))return t;return null}(n);if(null==c)return o("Cannot infer type of "+a+" "+n),n?r.push({Type:"vartype",FieldName:t}):r.push({Type:"vartype",FieldName:t,ValueType:"null (unsupported)"}),null;u=t.length,o("Warning: Inferring user variable \""+t+"\" to be of type \""+c+"\""),t=t+"_"+c}var h=[t.substring(0,u),t.substring(u+1)],d=h[0],l=h[1];if("object"===a&&!n)return o("null is not a valid object type"),r.push({Type:"vartype",FieldName:i,ValueType:"null (unsupported)"}),null;if(!ls.test(d)){d=d.replace(/[^a-zA-Z0-9_]/g,"").replace(/^[0-9]+/,""),/[0-9]/.test(d[0])&&(d=d.substring(1)),r.push({Type:"varname",FieldName:i});var p=d+"_"+l;if(o("Warning: variable \""+i+"\" has invalid characters. It should match /"+ls.source+"/. Converted name to \""+p+"\"."),""==d)return null;t=p}if(!vs(l))return o("Variable \""+i+"\" has invalid type \""+l+"\""),r.push({Type:"varname",FieldName:i}),null;if(!function(e,t){return is[e](t)}(l,n))return o("illegal value "+gt(n)+" for type "+l),"number"===a?a=n%1==0?"integer":"real":"object"==a&&null!=n&&n.constructor==Date&&(a=isNaN(n)?"invalid date":"date"),r.push({Type:"vartype",FieldName:i,ValueType:a}),null;return{name:t,type:l}}(n,r,e,i.ValidationErrors);if(u){var c=u.name,h=u.type;if("obj"!=h){if("objs"!=h){var d,l;i.PayloadToSend[c]=fs(h,e)}else{t!=X.Event&&i.ValidationErrors.push({Type:"vartype",FieldName:c,ValueType:"Array (unsupported)"});for(var p=e,f=[],v=0;v0&&(i.PayloadToSend[c]=f)}}else{var _=a(e),g=(l="_obj").length>(d=r).length||d.substring(d.length-l.length)!=l?c.substring(0,c.length-"_obj".length):c;i.PayloadToSend[g]=_}}else i.PayloadToSend[r]=fs("",e)}),i}(e,t,n),u=[],c=e==X.Event,h=gt(a.PayloadToSend),d=!!r&&"fs"!==r;return c?u.push({When:0,Kind:R.SYS_CUSTOM,Args:d?[i,h,r]:[i,h]}):u.push({When:0,Kind:R.SYS_SETVAR,Args:d?[e,h,r]:[e,h]}),u},e}();function fs(e,t){return"str"==e&&null!=t&&(t=t.trim()),null==t||"date"!=e&&t.constructor!=Date||(t=function(e){var t,n=e.constructor===Date?e:new Date(e);try{t=n.toISOString()}catch(e){t=null}return t}(t)),t}function vs(e){return!!is[e]}var _s=function(){return(_s=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]u.length?u.length:a.length,d=1,l=d;l=0}var Es=["__zone_symbol__OriginalDelegate","nr@original"];function Ts(e,t){if(t){for(var n=0,r=Es;n16)Mt.sendToBugsnag("Too much synchronous recursion in requestMeasureTask","error");else{var n=this.performingMeasurements?this.recursionDepth:0,r=Mt.wrap(function(){var r=t.recursionDepth;t.recursionDepth=n+1;try{e()}finally{t.recursionDepth=r}});this.measurementTasks?this.measurementTasks.push(r):(this.measurementTasks=[r],this.schedule())}},e.prototype.performMeasurementsNow=function(){this.performMeasurements()},e}(),As=function(e){function t(t,n){var r=e.call(this)||this;return r.wnd=t,r.ResizeObserver=n,r}return Cs(t,e),t.prototype.schedule=function(){var e=this,t=this.ResizeObserver,n=this.wnd.document,r=n.body||n.documentElement||n.head,i=new t(function(){i.unobserve(r),e.performMeasurements()});i.observe(r)},t}(Rs),xs=function(e){function t(t,n,r){var i=e.call(this)||this;return i.wnd=t,i.requestWindowAnimationFrame=n,i.onRAF=Mt.wrap(function(){i.ch.port2.postMessage(void 0)}),i.ch=new r,i}return Cs(t,e),t.prototype.schedule=function(){this.ch.port1.onmessage=this.performMeasurements,this.requestWindowAnimationFrame(this.wnd,this.onRAF)},t}(Rs),Os=function(e){function t(t){var n=e.call(this)||this;return n.wnd=t,n}return Cs(t,e),t.prototype.schedule=function(){s.setWindowTimeout(this.wnd,this.performMeasurements,0)},t}(Rs),Ms=function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function s(e){try{u(r.next(e))}catch(e){o(e)}}function a(e){try{u(r["throw"](e))}catch(e){o(e)}}function u(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(s,a)}u((r=r.apply(e,t||[])).next())})},Ls=function(e,t){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:a(0),"throw":a(1),"return":a(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function a(o){return function(a){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(i=2&o[0]?r["return"]:o[0]?r["throw"]||((i=r["return"])&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return s.label++,{value:o[1],done:!1};case 5:s.label++,r=o[1],o=[0];continue;case 7:o=s.ops.pop(),s.trys.pop();continue;default:if(!(i=(i=s.trys).length>0&&i[i.length-1])&&(6===o[0]||2===o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]=8)return void o("reidentified too many times; giving up");this.reidentifyCount++,W(this.wnd,[e,t]),this.splitPage(V.Reidentify,!0)}else u();void 0!==a&&(a?this.restart():this.shutdown(V.Api))}else W(this.wnd,[e,t])},e.prototype._cookies=function(){return this.identity?this.identity.cookies():(o("Error in FS integration: Can't get cookies from inside an iframe"),null)},e.prototype._setCookie=function(e,t){this.identity?this.identity.setCookie(e,t):o("Error in FS integration: Can't set cookies from inside an iframe")},e.prototype._withEventQueue=function(e,t){if(this.recorder){var n=this.recorder.queue(),r=this.recorder.pageSignature();null!=n&&null!=r?e===r?t(n):Mt.sendToBugsnag("Error in _withEventQueue: Page Signature mismatch","error",{pageSignature:r,callerSignature:e}):o("Error getting event queue or page signature: Recorder not initialized")}else o("Error in FS integration: Recorder not initialized")},e.prototype.initApi=function(){var e=I(this.wnd);e?(e.getCurrentSessionURL=_t(this.getCurrentSessionURL,this),e.getCurrentSession=_t(this.getCurrentSession,this),e.enableConsole=_t(this.enableConsole,this),e.disableConsole=_t(this.disableConsole,this),e.log=_t(this.log,this),e.shutdown=_t(this.shutdownApi,this),e.restart=_t(this.restart,this),e._api=_t(this._api,this),e._cookies=_t(this._cookies,this),e._setCookie=_t(this._setCookie,this),e._withEventQueue=_t(this._withEventQueue,this)):o("Missing browser API namespace; couldn't initialize API.")},e.prototype.start=function(){var e,t=this;e=L(this.wnd),r=e,o("script version UNSET (compiled at 1591209308)");var n=P(this.wnd);if(n){this.orgId=n;var i,s=(i=this.wnd)._fs_script||H(D(i));if(s){this.script=s;var a=F(this.wnd);if(a){this.recHost=a;var u=function(e){return e._fs_app_host||B(D(e))}(this.wnd);u?(this.appHost=u,o("script: "+this.script),o("recording host: "+this.recHost),o("orgid: "+this.orgId),"localhost:8080"==this.recHost&&(this.scheme="http:"),this.inFrame()||(this.identity=new ts(this.wnd.document,function(e){for(var n,r=0,i=e;r=0){var s=e.split("/"),o=s[0],u=s[1];i[r]=o,n=u;break}}var a=function(t){var n=parseInt(null!=t?t:"",10),i=E(),r=S();return isNaN(n)?r:n<=i?void 0:n>r?r:n}(n);if(!a)return null;i[0];var c=i[1],h=i[2],f=i[3],v="";f&&(v=decodeURIComponent(f),(y.indexOf(v)>=0||b.indexOf(v)>=0)&&(v=""));var l=(null!=h?h:"").split(":"),d=l[0],p=l[1],w=l[2];return l[3],{appKeyHash:v,expirationAbsTimeSeconds:a,userId:d,orgId:c,pageCount:_(l[4]),sessionId:null!=p?p:"",sessionStartTime:_(w)}}function k(t){var n={};try{for(var i=t.cookie.split(";"),r=0;r1))return s}}(t);if(!i||!K(n))return n;var r="";return 0===n.indexOf("www.")&&(n=n.slice(4),r="www."),0===n.indexOf(i+".")&&(n=n.slice((i+".").length)),""+r+i+"."+n}}function $(t){return t?C(function(t){var n=t,i=n.indexOf(":");return i>=0&&(n=n.slice(0,i)),n}(t))?t:0==t.indexOf("www.")?"app."+t.slice(4):"app."+t:t}function G(t){var n=j(t);if(n)return n+"/s/fs.js"}function X(t,n){return function(){for(var i=[],r=0;rn)return!1;return i==n}function ot(t,n){var i=0;for(var r in t)if(Object.prototype.hasOwnProperty.call(t,r)&&++i>n)return!0;return!1}function ut(t){var n=t.nextSibling;return n&&t.parentNode&&n===t.parentNode.firstChild?null:n}function at(t){var n=t.previousSibling;return n&&t.parentNode&&n===t.parentNode.lastChild?null:n}function ct(t){return function(){for(var n=this,i=[],r=0;r"}function pt(t){return o.jsonParse(t)}var wt=function(){function t(t,n,i){void 0===i&&(i=!1),this.i=t,this.u=n,this.l=i,this.g=J,this.m=J,this.S=J,this.k=!1}return t.prototype.before=function(t){return this.g=ft(t),this},t.prototype.afterSync=function(t){return this.m=ft(t),this},t.prototype.afterAsync=function(t){return this.S=ft(function(n){o.setWindowTimeout(window,X(function(){t(n)}),0)}),this},t.prototype.disable=function(){if(this.k=!1,this._){var t=this._,n=t.override,i=t["native"];this.i[this.u]===n&&(this.i[this.u]=i,this._=void 0)}},t.prototype.enable=function(){if(this.k=!0,this._)return!0;this._=this.A();try{this.i[this.u]=this._.override}catch(t){return!1}return!0},t.prototype.getTarget=function(){return this.i},t.prototype.A=function(){var t=this,n=this,i=this.i[this.u],r=function(){for(var t=[],r=0;r\n";var i=[];try{for(var r=arguments.callee.caller.caller;r&&i.length<10;){var e=kt.test(r.toString())&&RegExp.$1||xt;i.push(e),r=r.caller}}catch(t){t.toString()}n=i.join("\n")}return t+n}function It(){try{return window.self!==window.top}catch(t){return!0}}var Tt=function(){function t(){}return t.wrap=function(n,i){return void 0===i&&(i="error"),X(n,function(n){return t.sendToBugsnag(n,i)})},t.I=15,t.sendToBugsnag=function(n,i,r){if(!(t.I<=0)){t.I--;var e=n;"string"==typeof e&&(e=new Error(e));var s=k(document).fs_uid,o=s?x(s):void 0;o&&o.orgId!=F(window)&&(o=void 0);var u=new Date(1678707725e3).toISOString(),a={projectRoot:window.location.origin,deviceTime:p(),inIframe:It(),CompiledVersion:"11aa377d19",CompiledTimestamp:1678707725,CompiledTime:u,orgId:F(window),"userId:sessionId":o?o.userId+":"+o.sessionId:"NA",context:document.location&&document.location.pathname,message:e.message,name:"Recording Error",releaseStage:"production "+u,severity:i,language:Et(window),stacktrace:_t(e)||At()},c=function(t,n,i){var r=encodeURIComponent(n)+"="+encodeURIComponent(i);t.push(r)},h=[];for(var f in a)c(h,f,a[f]||"");if(r)for(var f in r)c(h,"aux_"+f,Ct(r[f]));new Image().src="https://"+L(window)+"/rec/except?"+h.join("&")}},t}();function Ct(t){try{var n=typeof t+": "+vt(t);return"function"==typeof t.toString&&(n+=" (toString: "+t.toString()+")"),n}catch(t){return"failed to serialize \""+(null==t?void 0:t.message)+"\""}}var Pt={};function jt(t,n,i){if(void 0===i&&(i=1),t)return!0;if(Pt[n]=Pt[n]||0,Pt[n]++,Pt[n]>i)return!1;var r=new Error("Assertion failed: "+n);return Tt.sendToBugsnag(r,"error"),t}var Ot,Mt,Kt,Rt,Ht,Nt,Lt={};function Ut(t,n,i){var r;Lt[t]=null!==(r=Lt[t])&&void 0!==r?r:0,Lt[t]++,Lt[t]>1||Tt.sendToBugsnag(n,"error",i)}!function(t){t.MUT_INSERT=2,t.MUT_REMOVE=3,t.MUT_ATTR=4,t.MUT_TEXT=6,t.MOUSEMOVE=8,t.MOUSEMOVE_CURVE=9,t.SCROLL_LAYOUT=10,t.SCROLL_LAYOUT_CURVE=11,t.MOUSEDOWN=12,t.MOUSEUP=13,t.CLICK=16,t.FOCUS=17,t.VALUECHANGE=18,t.RESIZE_LAYOUT=19,t.DOMLOADED=20,t.LOAD=21,t.PLACEHOLDER_SIZE=22,t.UNLOAD=23,t.BLUR=24,t.SET_FRAME_BASE=25,t.TOUCHSTART=32,t.TOUCHEND=33,t.TOUCHCANCEL=34,t.TOUCHMOVE=35,t.TOUCHMOVE_CURVE=36,t.NAVIGATE=37,t.PLAY=38,t.PAUSE=39,t.RESIZE_VISUAL=40,t.RESIZE_VISUAL_CURVE=41,t.RESIZE_DOCUMENT_CONTENT=42,t.RESIZE_SCROLLABLE_ELEMENT_CONTENT=43,t.LOG=48,t.ERROR=49,t.DBL_CLICK=50,t.FORM_SUBMIT=51,t.WINDOW_FOCUS=52,t.WINDOW_BLUR=53,t.HEARTBEAT=54,t.WATCHED_ELEM=56,t.PERF_ENTRY=57,t.REC_FEAT_SUPPORTED=58,t.SELECT=59,t.CSSRULE_INSERT=60,t.CSSRULE_DELETE=61,t.FAIL_THROTTLED=62,t.AJAX_REQUEST=63,t.SCROLL_VISUAL_OFFSET=64,t.SCROLL_VISUAL_OFFSET_CURVE=65,t.MEDIA_QUERY_CHANGE=66,t.RESOURCE_TIMING_BUFFER_FULL=67,t.MUT_SHADOW=68,t.DISABLE_STYLESHEET=69,t.FULLSCREEN=70,t.FULLSCREEN_ERROR=71,t.ADOPTED_STYLESHEETS=72,t.CUSTOM_ELEMENT_DEFINED=73,t.MODAL_OPEN=74,t.MODAL_CLOSE=75,t.SLOW_INTERACTION=76,t.LONG_FRAME=77,t.TIMING=78,t.STORAGE_WRITE_FAILURE=79,t.DOCUMENT_PROPERTIES=80,t.ENTRY_NAVIGATE=81,t.STATS=82,t.VIEWPORT_INTERSECTION=83,t.COPY=84,t.PASTE=85,t.URL_SALT=86,t.URL_ID=87,t.FRAME_STATUS=88,t.SCRIPT_COMPILED_VERSION=89,t.RESET_CSS_SHEET=90,t.ANIMATION_CREATED=91,t.ANIMATION_METHOD_CALLED=92,t.ANIMATION_PROPERTY_SET=93,t.DOCUMENT_TIMELINE_CREATED=94,t.KEYFRAME_EFFECT_CREATED=95,t.KEYFRAME_EFFECT_METHOD_CALLED=96,t.KEYFRAME_EFFECT_PROPERTY_SET=97,t.CAPTURE_SOURCE=98,t.PAGE_DATA=99,t.VISIBILITY_STATE=100,t.DIALOG=101,t.CSSRULE_UPDATE=102,t.CANVAS=103,t.CANVAS_DETACHED_DIMENSION=104,t.INIT_API=105,t.DEFERRED_RESOLVED=106,t.KEEP_ELEMENT=2e3,t.KEEP_URL=2001,t.KEEP_BOUNCE=2002,t.SYS_SETVAR=8193,t.SYS_RESOURCEHASH=8195,t.SYS_SETCONSENT=8196,t.SYS_CUSTOM=8197,t.SYS_REPORTCONSENT=8198,t.SYS_LETHE_MOBILE_BUNDLE_SEQ=8199}(Ot||(Ot={})),function(t){t.Animation=0,t.CSSAnimation=1,t.CSSTransition=2}(Mt||(Mt={})),function(t){t.Unknown=0,t.Serialization=1}(Kt||(Kt={})),function(t){t.Unknown=0,t.Successful=1,t.BlocklistedFrame=2,t.PartiallyLoaded=3,t.MissingWindowOrDocument=4,t.MissingDocumentHead=5,t.MissingBodyOrChildren=6,t.AlreadyDefined=7,t.NoNonScriptElement=8,t.Exception=9}(Rt||(Rt={})),function(t){t.Unknown=0,t.DomSnapshot=1,t.NodeEncoding=2,t.LzEncoding=3}(Ht||(Ht={})),function(t){t.Internal=0,t.Public=1}(Nt||(Nt={}));var Ft,Dt,Bt,Wt,qt,Qt,Vt,zt,$t,Gt,Xt,Jt,Zt,Yt,tn,nn,rn,en,sn,on,un,an,cn,hn=["print","alert","confirm"];function fn(t){switch(t){case Ot.MOUSEDOWN:case Ot.MOUSEMOVE:case Ot.MOUSEMOVE_CURVE:case Ot.MOUSEUP:case Ot.TOUCHSTART:case Ot.TOUCHEND:case Ot.TOUCHMOVE:case Ot.TOUCHMOVE_CURVE:case Ot.TOUCHCANCEL:case Ot.CLICK:case Ot.SCROLL_LAYOUT:case Ot.SCROLL_LAYOUT_CURVE:case Ot.SCROLL_VISUAL_OFFSET:case Ot.SCROLL_VISUAL_OFFSET_CURVE:case Ot.NAVIGATE:return!0;}return!1}!function(t){t[t.Index=1]="Index",t[t.Cached=2]="Cached"}(Ft||(Ft={})),function(t){t.GrantConsent=!0,t.RevokeConsent=!1}(Dt||(Dt={})),function(t){t.Page=0,t.Document=1}(Bt||(Bt={})),function(t){t.Unknown=0,t.Api=1,t.FsShutdownFrame=2,t.Hibernation=3,t.Reidentify=4,t.SettingsBlocked=5,t.Size=6,t.Unload=7,t.Hidden=8}(Wt||(Wt={})),function(t){t.Unknown=0,t.NotEmpty=1,t.EmptyBody=2}(qt||(qt={})),function(t){t.Timing=0,t.Navigation=1,t.Resource=2,t.Paint=3,t.Mark=4,t.Measure=5,t.Memory=6,t.TimeOrigin=7,t.LayoutShift=8,t.FirstInput=9,t.LargestContentfulPaint=10,t.LongTask=11}(Qt||(Qt={})),function(t){t.Timing=["navigationStart","unloadEventStart","unloadEventEnd","redirectStart","redirectEnd","fetchStart","domainLookupStart","domainLookupEnd","connectStart","connectEnd","secureConnectionStart","requestStart","responseStart","responseEnd","domLoading","domInteractive","domContentLoadedEventStart","domContentLoadedEventEnd","domComplete","loadEventStart","loadEventEnd"],t.Navigation=["name","startTime","duration","initiatorType","redirectStart","redirectEnd","fetchStart","domainLookupStart","domainLookupEnd","connectStart","connectEnd","secureConnectionStart","requestStart","responseStart","responseEnd","unloadEventStart","unloadEventEnd","domInteractive","domContentLoadedEventStart","domContentLoadedEventEnd","domComplete","loadEventStart","loadEventEnd","type","redirectCount","decodedBodySize","encodedBodySize","transferSize"],t.Resource=["name","startTime","duration","initiatorType","redirectStart","redirectEnd","fetchStart","domainLookupStart","domainLookupEnd","connectStart","connectEnd","secureConnectionStart","requestStart","responseStart","responseEnd","decodedBodySize","encodedBodySize","transferSize"],t.Measure=["name","startTime","duration"],t.Memory=["jsHeapSizeLimit","totalJSHeapSize","usedJSHeapSize"],t.TimeOrigin=["timeOrigin"],t.LayoutShift=["startTime","value","hadRecentInput"],t.FirstInput=["name","startTime","duration","processingStart"],t.LargestContentfulPaint=["name","startTime","duration","renderTime","loadTime","size"]}(Vt||(Vt={})),function(t){t.Performance=0,t.PerformanceEntries=1,t.PerformanceMemory=2,t.Console=3,t.Ajax=4,t.PerformanceObserver=5,t.PerformanceTimeOrigin=7,t.WebAnimation=8,t.LayoutShift=9,t.FirstInput=10,t.LargestContentfulPaint=11,t.LongTask=12,t.HTMLDialogElement=13,t.CaptureOnStartEnabled=14,t.CanvasWatcherEnabled=15}(zt||(zt={})),function(t){t.Node=1,t.Sheet=2}($t||($t={})),function(t){t.StyleSheetHooks=0,t.SetPropertyHooks=1}(Gt||(Gt={})),function(t){t.Document="document",t.Event="evt",t.Page="page",t.User="user"}(Xt||(Xt={})),function(t){t.FsId="fsidentity",t.NewUid="newuid"}(Jt||(Jt={})),function(t){t.Elide=0,t.Record=1,t.Allowlist=2}(Zt||(Zt={})),function(t){t.Any=0,t.Exclude=1,t.Mask=2}(Yt||(Yt={})),function(t){t.Erase=0,t.MaskText=1,t.ScrubUrl=2,t.ScrubCss=3}(tn||(tn={})),function(t){t.Static=0,t.Prefix=1}(nn||(nn={})),function(t){t.SignalInvalid=0,t.SignalDeadClick=1,t.SignalRageClick=2}(rn||(rn={})),function(t){t.ReasonNoSuchOrg=1,t.ReasonOrgDisabled=2,t.ReasonOrgOverQuota=3,t.ReasonBlockedDomain=4,t.ReasonBlockedIp=5,t.ReasonBlockedUserAgent=6,t.ReasonBlockedGeo=7,t.ReasonBlockedTrafficRamping=8,t.ReasonInvalidURL=9,t.ReasonUserOptOut=10,t.ReasonInvalidRecScript=11,t.ReasonDeletingUser=12,t.ReasonNativeHookFailure=13}(en||(en={})),function(t){t.Unset=0,t.Exclude=1,t.Mask=2,t.Unmask=3,t.Watch=4,t.Keep=5,t.Defer=6}(sn||(sn={})),function(t){t.Unset=0,t.Click=1}(on||(on={})),function(t){t[t.Page=1]="Page",t[t.Bundle=2]="Bundle"}(un||(un={})),function(t){t[t.Error=3]="Error",t[t.Page=4]="Page",t[t.Bundle=5]="Bundle",t[t.Settings=6]="Settings"}(an||(an={})),function(t){t.MaxPerfMarksPerPage=16384,t.MaxLogsPerPage=1024,t.MaxUrlLength=2048,t.MutationProcessingInterval=250,t.CurveSamplingInterval=142,t.DefaultBundleUploadInterval=5e3,t.HeartbeatInitial=4e3,t.HeartbeatMax=256200,t.PageInactivityTimeout=18e5,t.BackoffMax=3e5,t.ScrollSampleInterval=t.MutationProcessingInterval/5,t.InactivityThreshold=4e3,t.MaxAjaxPayloadLength=16384,t.DefaultOrgSettings={MaxPerfMarksPerPage:t.MaxPerfMarksPerPage,MaxConsoleLogPerPage:t.MaxLogsPerPage,MaxAjaxPayloadLength:t.MaxAjaxPayloadLength,MaxUrlLength:t.MaxUrlLength,RecordPerformanceResourceImg:!0,RecordPerformanceResourceTiming:!0,HttpRequestHeadersAllowlist:[],HttpResponseHeadersAllowlist:[],UrlPrivacyConfig:[{Exclude:{Hash:[{Expression:"#.*"}],QueryParam:[{Expression:"(=)(.*)"}]}}],AttributeBlocklist:[{Target:Yt.Any,Tag:"*",Name:"",Type:nn.Prefix,Action:tn.Erase}]},t.DefaultStatsSettings={MaxPayloadLength:8192,MaxEventTypeLength:1024},t.BlockedFieldValue="__fs__redacted"}(cn||(cn={}));var vn,ln,dn,pn="_fs_uid",wn="_fs_cid",gn="_fs_lua";function mn(t,n,i,r){void 0!==i&&("function"==typeof t.addEventListener?t.addEventListener(n,i,r):"function"==typeof t.addListener&&t.addListener(i))}function yn(t,n,i,r){void 0!==i&&("function"==typeof t.removeEventListener?t.removeEventListener(n,i,r):"function"==typeof t.removeListener&&t.removeListener(i))}!function(t){t[t.Shutdown=1]="Shutdown",t[t.Starting=2]="Starting",t[t.Started=3]="Started"}(vn||(vn={})),function(t){t.Set=0,t.Function=1}(ln||(ln={})),function(t){t[t.Disabled=0]="Disabled",t[t.CaptureCanvasOps=1]="CaptureCanvasOps",t[t.ScreenshotCanvas=2]="ScreenshotCanvas"}(dn||(dn={}));var bn=function(){function t(){var t=this;this.T=[],this.C=[],this.P=!0,this.j=!1;try{var n=Object.defineProperty({},"passive",{get:function(){t.P={capture:!0,passive:!0},t.j={capture:!1,passive:!0}}});window.addEventListener("test",J,n)}catch(t){}}return t.prototype.add=function(t,n,i,r,e){return void 0===e&&(e=!1),this.addCustom(t,n,i,r,e)},t.prototype.addCustom=function(t,n,i,r,e){void 0===e&&(e=!1);var s={target:t,type:n,fn:Tt.wrap(function(t){(e||!1!==t.isTrusted||"message"==n||t._fs_trust_event)&&r(t)}),options:i?this.P:this.j,index:this.T.length};return this.T.push(s),mn(t,n,s.fn,s.options),s},t.prototype.remove=function(t){t.target&&(yn(t.target,t.type,t.fn,t.options),t.target=null,t.fn=void 0)},t.prototype.clear=function(){for(var t=0;ti){n.Z||(n.Z=!0,Tt.sendToBugsnag("Out of time for remaining measurement tasks.","warning",{totalRunningTimeMs:a-t}));break t}}n.G=null}finally{n.X=!1,n.wnd}}}),this.wnd=t}return t.create=function(t){return t.ResizeObserver?new ai(t,t.ResizeObserver):new ci(t)},t.prototype.requestMeasureTask=function(t,n){var i,r=this;if(this.J>16)Tt.sendToBugsnag("Too much synchronous recursion in requestMeasureTask","error");else{var e=this.X?this.J:0,s=Tt.wrap(function(){var t=r.J;r.J=e+1;try{n()}finally{r.J=t}});this.G?this.G[t].push(s):(this.G=((i={})[ii.Essential]=[],i[ii.High]=[],i[ii.Medium]=[],i[ii.Low]=[],i[t]=[s],i),this.schedule())}},t.prototype.performMeasurementsNow=function(){this.performMeasurements()},t}(),ai=function(t){function n(n,i){var r=t.call(this,n)||this;return r.Y=i,r}return(0,e.__extends)(n,t),n.prototype.schedule=function(){var t=this,n=this.Y,i=this.wnd.document,r=i.documentElement||i.body||i.head,e=new n(function(){e.unobserve(r),t.performMeasurements()});e.observe(r)},n}(ui),ci=function(t){function n(n){return t.call(this,n)||this}return(0,e.__extends)(n,t),n.prototype.schedule=function(){(0,e.__awaiter)(void 0,void 0,Yn,function(){var t;return(0,e.__generator)(this,function(n){switch(n.label){case 0:return(t=o.requestWindowAnimationFrame)?[4,new Yn(function(n){return t(window,n)})]:[3,2];case 1:n.sent(),n.label=2;case 2:return[4,ei()];case 3:return n.sent(),[2];}})}).then(this.performMeasurements)},n}(ui);function hi(t,n){return n&&t.pageLeft==n.pageLeft&&t.pageTop==n.pageTop}function fi(t,n){return n&&t.width==n.width&&t.height==n.height}function vi(t){return{pageLeft:t.pageLeft,pageTop:t.pageTop,width:t.width,height:t.height}}var li=[["@import\\s+\"","\""],["@import\\s+'","'"]].concat([["url\\(\\s*\"","\"\\s*\\)"],["url\\(\\s*'","'\\s*\\)"],["url\\(\\s*","\\s*\\)"]]),di=".*?"+/(?:[^\\](?:\\\\)*)/.source,pi=new RegExp(li.map(function(t){var n=t[0],i=t[1];return"("+n+")("+di+")("+i+")"}).join("|"),"g"),wi=/url\(["']?(.+?)["']?\)/g,gi=/^\s*\/\//;function mi(t){return"BackCompat"==t.compatMode}function yi(t){return t&&t.body&&t.documentElement?mi(t)?[t.body.clientWidth,t.body.clientHeight]:[t.documentElement.clientWidth,t.documentElement.clientHeight]:[0,0]}var bi=function(){function t(t,n){var i,r,e,s;this.hasKnownPosition=!1,this.pageLeft=0,this.pageTop=0,this.width=0,this.height=0,this.clientWidth=0,this.clientHeight=0;var o=t.document;if(o&&o.documentElement&&o.body){i=yi(o),this.clientWidth=i[0],this.clientHeight=i[1];var u=t.visualViewport;if(u){this.hasKnownPosition=!0,this.pageTop=u.pageTop-u.offsetTop,this.pageLeft=u.pageLeft-u.offsetLeft,0==this.pageTop&&(this.pageTop=0),0==this.pageLeft&&(this.pageLeft=0);var a=null!==(e=xi(t,"innerWidth"))&&void 0!==e?e:0,c=null!==(s=xi(t,"innerHeight"))&&void 0!==s?s:0;if(a>0&&c>0)return this.width=a,void(this.height=c)}if(void 0!==n&&this.clientWidth==n.clientWidth&&this.clientHeight==n.clientHeight&&n.width>0&&n.height>0)return this.width=n.width,void(this.height=n.height);r=this.tt(t),this.width=r[0],this.height=r[1]}}return t.prototype.tt=function(t){var n=this.it(t,"width",this.clientWidth,this.clientWidth+128);void 0===n&&(n=xi(t,"innerWidth")),void 0===n&&(n=this.clientWidth);var i=this.it(t,"height",this.clientHeight,this.clientHeight+128);return void 0===i&&(i=xi(t,"innerHeight")),void 0===i&&(i=this.clientHeight),[n,i]},t.prototype.it=function(t,n,i,r){if(o.matchMedia){var e=i,s=r,u=o.matchMedia(t,"(min-"+n+": "+e+"px)");if(null!=u){if(u.matches&&o.matchMedia(t,"(max-"+n+": "+e+"px)").matches)return e;for(;e<=s;){var a=o.mathFloor((e+s)/2);if(o.matchMedia(t,"(min-"+n+": "+a+"px)").matches){if(o.matchMedia(t,"(max-"+n+": "+a+"px)").matches)return a;e=a+1}else s=a-1}}}},t}();function Ei(t,n){return new bi(t,n)}var Si=function(t,n){this.offsetLeft=0,this.offsetTop=0,this.pageLeft=0,this.pageTop=0,this.width=0,this.height=0,this.scale=0;var i=t.document;if(i.body){"pageXOffset"in t?(this.pageLeft=t.pageXOffset,this.pageTop=t.pageYOffset):i.scrollingElement?(this.pageLeft=i.scrollingElement.scrollLeft,this.pageTop=i.scrollingElement.scrollTop):mi(i)?(this.pageLeft=i.body.scrollLeft,this.pageTop=i.body.scrollTop):i.documentElement&&(i.documentElement.scrollLeft>0||i.documentElement.scrollTop>0)?(this.pageLeft=i.documentElement.scrollLeft,this.pageTop=i.documentElement.scrollTop):(this.pageLeft=i.body.scrollLeft||0,this.pageTop=i.body.scrollTop||0),this.offsetLeft=this.pageLeft-n.pageLeft,this.offsetTop=this.pageTop-n.pageTop;var r=0,e=0;try{r=t.innerWidth,e=t.innerHeight}catch(t){return}if(0!=r&&0!=e){this.scale=n.width/r,this.scale<1&&(this.scale=1);var s=n.width-n.clientWidth,o=n.height-n.clientHeight;this.width=r-s/this.scale,this.height=e-o/this.scale}}};function xi(t,n){try{return t[n]}catch(t){return}}function ki(t){var n=t;return n.tagName?"object"==typeof n.tagName?"form":n.tagName.toLowerCase():null}var _i,Ai,Ii=new RegExp("[^\\s]"),Ti=new RegExp("[\\s]*$");function Ci(t){var n=Ii.exec(t);if(!n)return t;for(var i=n.index,r=(n=Ti.exec(t))?t.length-n.index:0,e="\uFFFF",s=t.slice(i,t.length-r).split(/\r\n?|\n/g),o=0;o0&&n.length<1e4;){var i=n.pop();delete Mi[i.id],i.node._fs==i.id&&(i.node._fs=0),i.id=0,i.next&&n.push(i.next),i.child&&n.push(i.child)}jt(n.length<1e4,"clearIds is fast")}function Qi(t,n){void 0===n&&(n=1024);try{var i={tokens:[],opath:[],cyclic:Vi(t,n/4)};return $i(t,n,0,i),i.tokens.join("")}catch(t){return lt(t)}}function Vi(t,n){var i=0;try{o.jsonStringify(t,function(t,r){if(i++>n)throw"break";if("object"==typeof r)return r})}catch(t){return"break"!=t}return!1}var zi=function(t,n,i){return void 0===i&&(i="..."),t.length<=n?t:t.length<=i.length||n<=i.length?t.substring(0,n):t.substring(0,n-i.length)+i};function $i(t,n,i,r){if(n<1)return 0;var e=function(t){switch(!0){case function(t){return!(!t||t.constructor!=Date)}(t):return n=t,isNaN(n)?"Invalid Date":n.toUTCString();case function(t){return"object"==typeof Node?t instanceof Node:t&&"object"==typeof t&&t.nodeType>0&&"string"==typeof t.nodeName}(t):return function(t){return t.toString()}(t);case void 0===t:return"undefined";case"object"!=typeof t||null==t:return t;case t instanceof Error:return[t.toString(),t.stack].filter(Boolean).join(",");}var n}(t);if(void 0!==e){var s=function(t,n){var i=o.jsonStringify(t);return i&&"\""==i[0]?zi(i,n,"...\""):i}(e,n);return"string"==typeof s&&s.length<=n?(r.tokens.push(s),s.length):0}if(r.cyclic){r.opath.splice(i);var u=r.opath.lastIndexOf(t);if(u>-1){var a="";return a="\""+zi(a,n-2)+"\"",r.tokens.push(a),a.length}r.opath.push(t)}var c=n,h=function(t){return c>=t.length&&(c-=t.length,r.tokens.push(t),!0)},f=function(t){var n=r.tokens.length-1;","===r.tokens[n]?r.tokens[n]=t:h(t)};if(c<2)return 0;if(tt(t)){h("[");for(var v=0;v0;v++){var l=$i(t[v],c-1,i+1,r);if(c-=l,0==l&&!h("null"))break;h(",")}f("]")}else{h("{");var d=nt(t);for(v=0;v0;v++){var p=d[v],w=t[p];if(!h("\""+p+"\":"))break;if(0==(l=$i(w,c-1,i+1,r))){r.tokens.pop();break}c-=l,h(",")}f("}")}return n==1/0?1:n-c}var Gi,Xi,Ji=function(){function t(){var n=this;this.rt=Tt.wrap(function(){n.unregister(),n.et&&n.et()}),this.st=0,this.ot=t.ut++}return t.ct=function(){t.checkedAlready=!1,t.ht=0},t.checkForBrokenSchedulers=function(){return(0,e.__awaiter)(this,void 0,Yn,function(){var n,i;return(0,e.__generator)(this,function(r){switch(r.label){case 0:return!o.requestWindowAnimationFrame||t.checkedAlready||(n=p())-t.ht<100?[2,!1]:(t.ht=n,t.checkedAlready=!0,[4,new Yn(function(t){return o.requestWindowAnimationFrame(window,t)})]);case 1:return r.sent(),i=[],rt(t.ft,function(t){var r=t.vt(n);r&&i.push(r)}),[4,Yn.all(i)];case 2:return r.sent(),o.requestWindowAnimationFrame(window,Tt.wrap(function(){t.checkedAlready=!1})),[2,!0];}})})},t.stopAll=function(){rt(this.ft,function(t){return t.stop()})},t.prototype.setTick=function(t){this.et=t},t.prototype.stop=function(){this.cancel(),delete t.ft[this.ot]},t.prototype.register=function(n){this.st=p()+100+1.5*n,t.ft[this.ot]=this},t.prototype.timerIsRunning=function(){return null!=t.ft[this.ot]},t.prototype.unregister=function(){delete t.ft[this.ot]},t.prototype.vt=function(t){if(t>this.st)return Yn.resolve().then(this.rt)["catch"](function(){})},t.ft={},t.ut=0,t.checkedAlready=!1,t.ht=0,t}(),Zi=function(t){function n(n){var i=t.call(this)||this;return i.lt=n,i.dt=-1,i}return(0,e.__extends)(n,t),n.prototype.start=function(t){var n=this;-1==this.dt&&(this.setTick(function(){t(),n.register(n.lt)}),this.dt=o.setWindowInterval(window,this.rt,this.lt),this.register(this.lt))},n.prototype.cancel=function(){-1!=this.dt&&(o.clearWindowInterval(window,this.dt),this.dt=-1,this.setTick(function(){}))},n}(Ji),Yi=function(t){function n(n,i,r){void 0===i&&(i=0);for(var e=[],s=3;sn&&(this.St=t-n,this.St>1e3&&this.kt("timekeeper set with future ts"))},t.prototype.kt=function(t){Qi({msg:t,skew:this.St,startTime:this.xt,wallTime:this.wallTime()},1024)},t}(),ir=function(){function t(t,n){this._t=t,this.At=n,this.It=!1,this.Tt={},this.Ct={},this.Pt={},this.jt=!1,this.Ot=!1,Gi=this,this.Mt=t.window.document}return t.prototype.start=function(){var t;(t=Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,"value"))&&t.set&&(rr||(yt(HTMLInputElement,"value",ar),yt(HTMLInputElement,"checked",ar),yt(HTMLSelectElement,"value",ar),yt(HTMLTextAreaElement,"value",ar),yt(HTMLSelectElement,"selectedIndex",ar),yt(HTMLOptionElement,"selected",ar),rr=!0),1)||(this.It=!0)},t.prototype.hookInstance=function(t){if("input"===ki(t))switch(t.type){case"checkbox":case"radio":bt(t,"checked",ar);break;default:bt(t,"value",ar);}},t.prototype.addInput=function(t){if(t){var n=Bi(t);if(n){"input"===ki(t)&&this.Kt(t);var i=!1;if(function(t){switch(t.type){case"checkbox":case"radio":return t.checked!=t.hasAttribute("checked");default:return(t.value||"")!=function(t){if("select"!=ki(t))return t.getAttribute("value")||"";var n=t,i=n.querySelector("option[selected]")||n.querySelector("option");return i&&i.value||""}(t);}}(t)&&(this.Rt(t),i=!0),this.It&&(this.Tt[n]={elem:t}),!i)if(hr(t)){var r=or(t);t.checked&&(this.Pt[r]=n)}else this.Ct[n]=cr(t)}}},t.prototype.Kt=function(t){if(this.jt)this.Ot&&this.hookInstance(t);else{var n="checkbox"===t.type||"radio"===t.type?"checked":"value",i=Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,n),r=Object.getOwnPropertyDescriptor(t,n);i&&r&&i!==r&&(this.Ot=!0,this.hookInstance(t)),this.jt=!0}},t.prototype.diffValue=function(t,n){void 0===n&&(n=cr(t));var i=Bi(t);if(!t||!i)return!1;if(hr(t)){var r=or(t);return this.Pt[r]===i!=("true"===n)}return this.Ct[i]!==n},t.prototype.onChange=function(t,n,i){void 0===i&&(i=cr(t));var r=Bi(t);t&&r&&(n||this.diffValue(t,i))&&this.Rt(t,n)},t.prototype.onKeyboardChange=function(t){var n,i=function(t){for(var n=t.activeElement;n&&n.shadowRoot;){var i=n.shadowRoot.activeElement;if(!i)return n;n=i}return n}(this.Mt);i&&("value"in(n=i)||"checked"in n)&&!Hi(i)&&this.diffValue(i)&&this.Rt(i,t)},t.prototype.tick=function(){for(var t in this.Tt){var n=this.Tt[t],i=n.elem;if(Bi(i))try{delete this.Tt[t];var r=cr(i);if(this.diffValue(i,r))this.Rt(i);else if(n.noFsIdInOption){var e=i;Array.prototype.slice.call(e.options).every(function(t){return Bi(t)})&&(n.noFsIdInOption=!1,this.Rt(i))}}finally{this.It&&(this.Tt[t]=n)}else delete this.Tt[t],delete this.Ct[t],hr(i)&&delete this.Pt[or(i)]}},t.prototype.stop=function(){Gi=void 0},t.prototype.Rt=function(t,n){var i=this;void 0===n&&(n=!1);var r=Bi(t);if(t&&r&&!this.Ht(r,t)){var e=cr(t);if(hr(t)){var s=or(t);"false"===e&&this.Pt[s]===r?delete this.Pt[s]:"true"===e&&(this.Pt[s]=r)}else this.Ct[r]=e;this._t.measurer.requestMeasureTask(ii.Medium,function(){var s=t.getBoundingClientRect(),o=s.width>0&&s.height>0,u=Ni(t)?Ci(e):e;i.At.enqueue({Kind:Ot.VALUECHANGE,Args:[r,u,n,o]})})}},t.prototype.Ht=function(t,n){if(this.Tt[t])return!0;if("select"!==ki(n))return!1;for(var i=n.options,r=0;r-1||wr.indexOf("Trident/")>-1,mr=(gr&&wr.indexOf("Trident/5"),gr&&wr.indexOf("Trident/6"),gr&&wr.indexOf("rv:11")>-1),yr=wr.indexOf("Edge/")>-1,br=(wr.indexOf("CriOS"),wr.indexOf("Snapchat")>-1),Er=/^((?!chrome|android).)*safari/i.test(window.navigator.userAgent);function Sr(){var t=window.navigator.userAgent.match(/Version\/(\d+)/);return t&&t[1]?parseInt(t[1],10):-1}function xr(t){if(!Er)return!1;var n=Sr();return n>=0&&n===t}function kr(t){if(!Er)return!1;var n=Sr();return n>=0&&nne?(Tt.sendToBugsnag("Ignoring huge text node","warning",{length:s}),""):t.parentNode&&"style"==ki(t.parentNode)?r:e.mask?Ci(r):r}function re(t){return Kr[t]||t.toLowerCase()}var ee=/^\s*((prefetch|preload|prerender)\s*)+$/i,se=/^\s*.*((worklet|script|worker|font|fetch)\s*)+$/i;function oe(t,n,i,r,e){var s,u;if(void 0===r&&(r=ki(t)),void 0===e&&(e=Ui(t)),null===r||""===n)return null;if("link"===r&&ee.test(null!==(s=t.getAttribute("rel"))&&void 0!==s?s:"")&&!se.test(null!==(u=t.getAttribute("as"))&&void 0!==u?u:""))return null;var a,c="style"===n?ae(i):i,h=function(t,n,i){var r,e,s,u,a,c,h,f,v,l,d,p,w,g=void 0;(null===(r=null==n?void 0:n.watchKind)||void 0===r?void 0:r.has(_i.Exclude))?g=Yt.Exclude:(null==n?void 0:n.mask)&&(g=Yt.Mask);var m=[null===(u=null===(s=null===(e=Ee.blocklist[Yt.Any])||void 0===e?void 0:e[t])||void 0===s?void 0:s["static"])||void 0===u?void 0:u[i],null===(h=null===(c=null===(a=Ee.blocklist[Yt.Any])||void 0===a?void 0:a["*"])||void 0===c?void 0:c["static"])||void 0===h?void 0:h[i],g?null===(l=null===(v=null===(f=Ee.blocklist[g])||void 0===f?void 0:f[t])||void 0===v?void 0:v["static"])||void 0===l?void 0:l[i]:void 0,g?null===(w=null===(p=null===(d=Ee.blocklist[g])||void 0===d?void 0:d["*"])||void 0===p?void 0:p["static"])||void 0===w?void 0:w[i]:void 0];return Ee.hasPrefix&&m.push(ke(Yt.Any,t,i),ke(Yt.Any,"*",i),g?ke(g,t,i):void 0,g?ke(g,"*",i):void 0),function(t){var n=t.filter(function(t){return void 0!==t});if(0!==n.length)return o.mathMin.apply(o,n)}(m)}(r,e,n);if(void 0===h&&!e)return null;switch(h){case void 0:return c;case tn.Erase:return null;case tn.MaskText:return Ci(c);case tn.ScrubCss:return a=function(t,n,i){return""+t+Se+i},c.replace(pi,function(t){for(var n=[],i=1;i-1)return f.substring(v)}return f;default:return(0,Ir.nt)(h);}}var ue={},ae=function(t,n){void 0===n&&(n=window);try{var i=n.location,r=""+i.origin+i.pathname+i.search,e=ue[r];return e?e.lastIndex=0:(e=new RegExp((s=r,($r.test(s)?s.replace(zr,"\\$&"):s)+"/?(#)"),"g"),ue[r]=e),t.replace(e,"https://fs-currenturl.invalid$1")}catch(n){return Ut("cleanCSS",n),t}var s},ce=/^data:/i;function he(t,n){if(ce.test(t))return t;switch(n.source){case"dom":switch(i=n.type){case"frame":case"iframe":return we(t);default:return fe(t);}case"event":switch(i=n.type){case Ot.AJAX_REQUEST:case Ot.NAVIGATE:return fe(t);case Ot.SET_FRAME_BASE:return we(t);default:return(0,Ir.nt)(i);}case"log":return we(t);case"page":var i;switch(i=n.type){case"base":return we(t);case"referrer":case"url":return fe(t);default:return(0,Ir.nt)(i);}case"perfEntry":switch(n.type){case"frame":case"iframe":case"navigation":case"other":return we(t);default:return fe(t);}default:return(0,Ir.nt)(n);}}function fe(t){return ge(de,t)}var ve=cn.DefaultOrgSettings.MaxUrlLength,le=Rr(cn.DefaultOrgSettings.UrlPrivacyConfig),de=Rr(cn.DefaultOrgSettings.UrlPrivacyConfig);function pe(t,n){le=Rr(cn.DefaultOrgSettings.UrlPrivacyConfig.concat(t)),de=Rr(t),ve=n||cn.DefaultOrgSettings.MaxUrlLength}function we(t){return ge(le,t)}function ge(t,n){return function(t,n,i){void 0===i&&(i=Lr);for(var r={Hash:[],Host:[],Path:[],QueryParam:[],Query:[]},e=0,s=t;e").replace(ye,function(t){return he(t,{source:"log",type:"debug"})})}var Ee,Se="https://fs-excluded.invalid";function xe(t){var n,i,r,e,s,o,u,a,c,h,f,v,l,d,p,w;try{for(var g=(Ee={blocklist:{},hasPrefix:!1}).blocklist,m=(null!==(r=null==t?void 0:t.length)&&void 0!==r?r:0)>0?t:cn.DefaultOrgSettings.AttributeBlocklist,y={},b=0,E=m;b-1;var n}var Te="#polyfillshadow";function Ce(t){var n;return(null===(n=t.childNodes)||void 0===n?void 0:n.length)>0}function Pe(t,n){Oe(t.childNodes,n)}function je(t,n){Oe(t.childNodes,n,!0)}function Oe(t,n,i){void 0===i&&(i=!1);for(var r=i?t.length-1:0,e=i?-1:t.length;r!==e;){var s=t[r];s&&"frag"in s&&!St(s)&&Array.isArray(s.frag)?s.frag.length&&Oe(s.childNodes,n,i):n(s),i?--r:++r}}var Me={INPUT:!0,TEXTAREA:!0,NOSCRIPT:!0},Ke=function(){function t(t,n,i){this.Xt=t,this.Jt=n,this.Zt=i,Mi={},Ki=1}return t.prototype.tokenizeNode=function(t,n,i,r,e,s,o){var u=this,a=Ui(n),c=Ui(i),h=[];return function(n){var i=Ki;try{return u.Yt(t,a,c,r,h,e,s,o),!0}catch(t){return Ki=i,!1}}()||(h=[]),h},t.prototype.Yt=function(t,n,i,r,s,o,u,a){for(var c,h,f=[{parentMirror:n,nextMirror:i,node:r}],v=function(t,n){return function(i){i&&t.push({parentMirror:n,nextMirror:null,node:i})}};f.length;){var l=f.pop();if(l)if("string"!=typeof l){var d=l.node,p=ki(d),w=this.tn(t,p,l,s,o,u);if(null!=w&&!(null===(c=w.watchKind)||void 0===c?void 0:c.has(_i.Exclude))){var g=1===d.nodeType?d.shadowRoot:null,m=w.shadowRootType===Te&&window.HTMLSlotElement&&"slot"===p&&d.assignedNodes();if(g||m||Ce(d))if(null===(h=w.watchKind)||void 0===h?void 0:h.has(_i.Defer))a(w.node,Ai.Deferred);else{if(f.push("]"),je(d,v(f,w)),g)f.push({parentMirror:w,nextMirror:null,node:g});else if(m&&m.length>0){for(var y=[],b=!1,E=0,S=m;E1e3)return null;if(!i||1!=i.nodeType)return null;var r=i;if(getComputedStyle(r).display.indexOf("inline")<0)return r;i=i.parentNode}},n}(Ze),ts=function(t){function n(){return null!==t&&t.apply(this,arguments)||this}return(0,e.__extends)(n,t),n.prototype.observe=function(t){var n=this;if(t&&1==t.nodeType){var i=t;this.Tn(Ui(t)),this._t.measurer.requestMeasureTask(ii.Medium,function(){n.addEntry(i)})}},n.prototype.unobserveSubtree=function(t){var n=Ui(t);n&&this.Cn(n)},n.prototype.nodeChanged=function(t){var n=this,i=this.Pn(t);this._t.measurer.requestMeasureTask(ii.Medium,function(){for(var t=0,r=i;t0||this.Hn.length>0){var r={},s={};for(var o in this.Gn(t,i,s,r),s){var u=o.split("\t");i.push({Kind:Ot.MUT_ATTR,Args:[parseInt(u[0],10),u[1],s[o]],When:t})}for(var o in r)i.push({Kind:Ot.MUT_TEXT,Args:[parseInt(o,10),r[o]],When:t})}var a=this.Rn;this.Rn=[];for(var c=0;c0&&(i.push({Kind:Ot.DEFERRED_RESOLVED,Args:(0,e.__spreadArray)([],this.Ln),When:t}),this.Ln=[]),this.Nn.length>0){for(var f=0,v=this.Nn;f0&&this.Un.push(es(l))}this.Nn=[]}return i},t.prototype.recordingIsDetached=function(){return!!this.Wn&&this.Wn!=this.Dn.document},t.prototype.$n=function(t,n){if(!this.Kn&&this.Wn){window;var i=this.Xt.allWatchedElements(this.Wn);this.Zn(i,t,n,null,this.Wn,null),this.Jt.nodeChanged(this.Wn),this.qn&&this.Xn(this.Wn),this.Kn=!0,this.Yn(),window}},t.prototype.Yn=function(){var t=this;this.zn=mt(Element.prototype,"attachShadow",!0),this.zn&&this.zn.before(function(n){n.that.shadowRoot||t.Rn.push(n.that)})},t.prototype.Xn=function(t){var n;try{null===(n=this.qn)||void 0===n||n.observe(t,{childList:!0,attributes:!0,characterData:!0,subtree:!0,attributeOldValue:!0,characterDataOldValue:!0})}catch(t){}},t.prototype.Gn=function(t,n,i,r){for(var e,s,o,u,a=this,c={},h={},f=function(i){if(Ui(i)){a.ti(t,n,Ui(i));var r=Ui(i.parentNode);r&&(h[r.id]=r.node)}},v=0;v0)for(var m=0;m0){h[g]=l.target;var y=!(null==(T=l.target)?void 0:T.shadowRoot)||Ie(T.shadowRoot)?null:Ui(T.shadowRoot);y&&(h[y.id]=y.node)}break;case"characterData":Hi(l.target)||l.oldValue!=l.target.textContent&&(r[g]=ie(l.target));break;case"attributes":var b=ki(j=l.target);if("link"===b&&"rel"===l.attributeName&&ee.test(null!==(o=l.oldValue)&&void 0!==o?o:"")){f(j);break}var E,S=Li(j),x=this.Xt.isWatched(j);if($e(x)>$e(S)){f(j);break}De.needsToObserve(S,x)&&(this.Jt.observe(j),(null==x?void 0:x.has(_i.Watch))&&(null===(u=this.Zt)||void 0===u||u.observe(j)),(E=Ui(j))&&(E.watchKind=De.combineKindsPreservePrivacy(S,x)));var k=(void 0===(I=l.attributeNamespace)&&(I=""),(null===I?"":{"http://www.w3.org/1999/xlink":"xlink:","http://www.w3.org/XML/1998/namespace":"xml:","http://www.w3.org/2000/xmlns/":"xmlns:"}[I]||"")+(l.attributeName||"")),_=re(k);if("dialog"===b&&"open"===k)break;if(j.hasAttribute(k)){var A=l.target.getAttribute(k);l.oldValue!=A&&(A=oe(l.target,_,A||"",b),this.Mn(b,l.target,((e={})[_]=A||"",e)),null!==A&&(i[g+"\t"+_]=A))}else i[g+"\t"+_]=null;}}catch(t){}for(var I,T,C=0,P=this.Hn;C0&&i.push({Kind:Ot.MUT_SHADOW,Args:[s,u],When:n},{Kind:Ot.TIMING,Args:[[Nt.Internal,Kt.Serialization,Ht.NodeEncoding,n,a]],When:n})},t.prototype.Zn=function(t,n,i,r,e,s){var o=Di(r)||-1,u=Di(s)||-1,a=-1===o&&-1===u,c=p();window;var h=this.ei(t,r,e,s);window;var f=p()-c;h.length>0&&i.push({Kind:Ot.MUT_INSERT,Args:[o,u,h],When:n},{Kind:Ot.TIMING,Args:[[Nt.Internal,Kt.Serialization,a?Ht.DomSnapshot:Ht.NodeEncoding,n,f]],When:n})},t.prototype.ei=function(t,n,i,r){var e=this;if(n&&Hi(n))return[];for(var s=[],o=this.Bn.tokenizeNode(t,n,r,i,function(t){if(1==t.nodeType){var n=t;if(n.shadowRoot&&e.Xn(n.shadowRoot),"SLOT"===t.nodeName){var i=Ui(t);(null==i?void 0:i.shadowRootType)===Te&&t.addEventListener("slotchange",Tt.wrap(function(n){var i;e.Hn.push(null!==(i=n.target)&&void 0!==i?i:t)}))}}e.jn(t,s)},this.Mn,function(t,n){switch(n){case Ai.Immediate:e.refreshElement(t);break;case Ai.Deferred:e.Nn.push(t);}}),u=0,a=s;u0){var e=n[n.length-1];if(e.Kind==Ot.MUT_REMOVE)return void e.Args.push(r)}n.push({Kind:Ot.MUT_REMOVE,Args:[r],When:t})},t.prototype.setUpIEWorkarounds=function(){var n=this;if(mr){var i=Object.getOwnPropertyDescriptor(Node.prototype,"textContent"),r=i&&i.set;if(!i||!r)throw new Error("Missing textContent setter -- not safe to record mutations.");Object.defineProperty(Element.prototype,"textContent",(0,e.__assign)((0,e.__assign)({},i),{set:function(t){try{for(var n=void 0;n=this.firstChild;)this.removeChild(n);if(null===t||""==t)return;var i=(this.ownerDocument||document).createTextNode(t);this.appendChild(i)}catch(n){r&&r.call(this,t)}}}))}this.si=new tr(t.ThrottleMax,t.ThrottleInterval,function(){return new Yi(function(){n.Fn=!0,n.tearDownIEWorkarounds()}).start()});var s=this.si.guard(function(t){var n=t.cssText;t.cssText=n});this.si.open(),this.oi=mt(CSSStyleDeclaration.prototype,"setProperty"),this.oi&&this.oi.afterSync(function(t){s(t.that)}),this.ui=mt(CSSStyleDeclaration.prototype,"removeProperty"),this.ui&&this.ui.afterSync(function(t){s(t.that)})},t.prototype.tearDownIEWorkarounds=function(){this.si&&this.si.close(),this.oi&&this.oi.disable(),this.ui&&this.ui.disable()},t.prototype.updateConsent=function(){var t=this;this.Wn&&Pe(this.Wn,function(n){return t.refreshElement(n)})},t.prototype.refreshElement=function(t){Di(t)&&this.Hn.push(t)},t.ThrottleMax=1024,t.ThrottleInterval=1e4,t}();function os(t){for(var n=new WeakMap,i=t;i;i=i.parentNode){if(n.has(i))return null;if(n.set(i,!0),11===i.nodeType)break}if(!i)return null;var r=Ui(i);return(null==r?void 0:r.shadowRootType)===Te&&(null==r?void 0:r.parent)?[r.parent.id,r.parent.node]:null}var us="navigation",as="resource",cs="paint",hs="measure",fs="mark",vs="layout-shift",ls="first-input",ds="largest-contentful-paint",ps="longtask",ws=function(){function t(t,n,i,r){var e=this;this._t=t,this.At=n,this.ai=r,this.ci=!1,this.hi=!1,this.fi=!1,this.vi=!1,this.li=!1,this.di=!1,this.pi=!1,this.wi=cn.DefaultOrgSettings.MaxPerfMarksPerPage,this.gi=0,this.mi=!1,this.yi=!1,this.bi=!1,this.Ei=!1,this.Si=0,this.xi=!1,this.qn=null,this.ki=[],this._i=new Yn(function(t){e.Ai=function(){t({timeRemaining:function(){return Number.POSITIVE_INFINITY},didTimeout:!1}),e.Ai=void 0}}),this.Ii=!1;var s=window.performance;s&&(this.fi=!0,s.timing&&(this.vi=!0),s.memory&&(this.di=!0),s.timeOrigin&&(this.pi=!0),"function"==typeof s.getEntries&&(this.li=!0),this.mi=gs(window,vs),this.yi=gs(window,ls),this.bi=gs(window,ds),this.Ei=gs(window,ps),this.T=i.createChild())}return t.prototype.initialize=function(t){var n=t.resourceUploader,i=t.recTimings,r=t.recImgs,e=t.maxPerfMarksPerPage;this.Ti=n,this.hi=i,this.ci=r,this.wi=e||cn.DefaultOrgSettings.MaxPerfMarksPerPage},t.prototype.start=function(){var t=this;this.gi=0;var n=window.performance;n&&(this._t.recording.inFrame||this.At.enqueue({Kind:Ot.REC_FEAT_SUPPORTED,Args:[zt.Performance,this.vi,zt.PerformanceEntries,this.li,zt.PerformanceMemory,this.di,zt.PerformanceObserver,!!window.PerformanceObserver,zt.PerformanceTimeOrigin,this.pi,zt.LayoutShift,this.mi,zt.FirstInput,this.yi,zt.LargestContentfulPaint,this.bi,zt.LongTask,this.Ei]}),this.Xn(),!this.qn&&n.addEventListener&&n.removeEventListener&&this.T&&this.T.add(n,"resourcetimingbufferfull",!0,function(){t.At.enqueue({Kind:Ot.RESOURCE_TIMING_BUFFER_FULL,Args:[]})}),this.Ci(),this.Pi())},t.prototype.ji=function(){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(t){switch(t.label){case 0:if(!this.fi||!this.li||0==this.ki.length)return[2];if(this.Ii)return[2];this.Ii=!0,t.label=1;case 1:return t.trys.push([1,,3,4]),[4,this.Oi()];case 2:return t.sent(),[3,4];case 3:return this.Ii=!1,this.ki=[],[7];case 4:return[2];}})})},t.prototype.Mi=function(){return this.Ai?Yn.race([this._i,si(250,1e3)]):this._i},t.prototype.Oi=function(){return(0,e.__awaiter)(this,void 0,Yn,function(){var t,n,i,r,s,o,u,a;return(0,e.__generator)(this,function(e){switch(e.label){case 0:t=0,n=0,i=this.ki,e.label=1;case 1:if(!(nt?[4,this.Mi()]:[3,4]):[3,6];case 3:a=e.sent(),t=p()+Math.max(a.timeRemaining(),15),e.label=4;case 4:this.Ki(u),e.label=5;case 5:return s++,[3,2];case 6:return n++,[3,1];case 7:return[2];}})})},t.prototype.onLoad=function(){this.xi||(this.xi=!0,this.vi&&(this.Ri(performance.timing),this.ji()))},t.prototype.tick=function(){this.Ci()},t.prototype.stop=function(){var t;this.T&&this.T.clear(),this.Ti=void 0;var n=[];this.qn?(this.qn.takeRecords&&(n=this.qn.takeRecords()),this.qn.disconnect()):window.performance&&window.performance.getEntries&&(n=window.performance.getEntries()),n.length>300&&(n=n.slice(0,300),this.At.enqueue({Kind:Ot.RESOURCE_TIMING_BUFFER_FULL,Args:[]})),this.Ci(),null===(t=this.Ai)||void 0===t||t.call(this),this.ki.push(n),this.ji()},t.prototype.Xn=function(){var t=this;if(!this.qn&&this.li&&window.PerformanceObserver){this.ki.push(performance.getEntries()),this.ji(),this.qn=new window.PerformanceObserver(function(n){var i=n.getEntries();t.ki.push(i),t.ji()});var n=[us,as,hs,fs];window.PerformancePaintTiming&&n.push(cs),this.mi&&n.push(vs),this.yi&&n.push(ls),this.bi&&n.push(ds),this.Ei&&n.push(ps),this.qn.observe({entryTypes:n})}},t.prototype.Ci=function(){if(this.di&&!this._t.recording.inFrame){var t=performance.memory;if(t){var n=t.usedJSHeapSize-this.Si;(0==this.Si||o.mathAbs(n/this.Si)>.2)&&(this.Hi(Qt.Memory,t,Vt.Memory),this.Si=t.usedJSHeapSize)}}},t.prototype.Pi=function(){var t={timeOrigin:d.timeOrigin};this.Hi(Qt.TimeOrigin,t,Vt.TimeOrigin)},t.prototype.Ki=function(t){switch(t.entryType){case us:this.Ni(t);break;case as:this.Li(t);break;case cs:this.Ui(t);break;case hs:this.Fi(t);break;case fs:this.Di(t);break;case vs:this.Bi(t);break;case ls:this.Wi(t);break;case ds:this.qi(t);break;case ps:this.Qi(t);}},t.prototype.Ri=function(t){this.Hi(Qt.Timing,t,Vt.Timing)},t.prototype.Ni=function(t){this.Hi(Qt.Navigation,t,Vt.Navigation,{name:us})},t.prototype.Li=function(t){if(this.hi){var n=t.initiatorType;(this.ci||"img"!==n&&"image"!==n)&&this.Hi(Qt.Resource,t,Vt.Resource,{name:n})}},t.prototype.Ui=function(t){this.Hi(Qt.Paint,t,Vt.Measure)},t.prototype.Di=function(t){this.Hi(Qt.Mark,t,Vt.Measure)},t.prototype.Fi=function(t){this.Hi(Qt.Measure,t,Vt.Measure)},t.prototype.Bi=function(t){this.Hi(Qt.LayoutShift,t,Vt.LayoutShift)},t.prototype.Wi=function(t){this.Hi(Qt.FirstInput,t,Vt.FirstInput)},t.prototype.qi=function(t){this.Hi(Qt.LargestContentfulPaint,t,Vt.LargestContentfulPaint)},t.prototype.Qi=function(t){this.Hi(Qt.LongTask,t,Vt.Measure)},t.prototype.Hi=function(t,n,i,r){if(void 0===r&&(r={}),!this.atLimit(t)){for(var e=[t],s=0,o=i;s=this.wi)return!0;this.gi++;}return!1},t}();function gs(t,n){var i,r;return(null!==(r=null===(i=t.PerformanceObserver)||void 0===i?void 0:i.supportedEntryTypes)&&void 0!==r?r:[]).indexOf(n)>-1}function ms(t){var n=0,i={id:n++,edges:{}};return t.split("\n").forEach(function(t){var r=t.trim();if(""!=r){if(0==r.indexOf("/")||r.lastIndexOf("/")==r.length-1)throw new Error("Leading and trailing slashes are not supported");var e=i,s=r.split("/");s.forEach(function(t,i){var r=t.trim();if(""===r)throw new Error("Empty elements are not allowed");if("**"!=r&&"*"!=r&&-1!=r.indexOf("*"))throw new Error("Embedded wildcards are not supported");var o=null;r in e.edges&&(o=e.edges[r]),o||(o={id:n++,edges:{}},e.edges[r]=o),i==s.length-1&&(o.term=!0),e=o})}}),i}var ys=ms("**");function bs(t,n,i){if(!js(i)){try{for(var r=[],e=0,s=i;e=n&&(v?e=void 0:(e="_fs_trimmed_values",v=!0)),f[f.length-1]--,e&&e!==cn.BlockedFieldValue&&s?f.push(o.objectKeys(e).length):c.pop();f[f.length-1]<=0;)f.pop(),c.pop();for(var u=0,a=r;u0&&l!==f.length-1)throw new Error("Property matcher depth out of sync")}return e})}catch(t){Tt.sendToBugsnag(t,"error")}return"[error serializing "+t.constructor.name+"]"}}var Es=function(){function t(t){this.zi=1;var n=[t];t.edges["**"]&&n.push(t.edges["**"]),this.$i=[n]}return t.prototype.Gi=function(){if(this.$i.length<=0)return[];var t=this.$i.length-1,n=this.$i[t];return"number"==typeof n?this.$i[t-1]:n},t.prototype.depth=function(){return this.zi},t.prototype.isRedacted=function(t){var n=this.Gi();return 0===n.length||t&&!n.some(function(t){return t.term})},t.prototype.push=function(t){var n;this.zi++;var i=this.Gi(),r=[];function e(n){n.edges["**"]&&(r.push(n.edges["**"],Ss(n)),e(n.edges["**"])),n.edges["*"]&&r.push(n.edges["*"]),n.edges[t]&&r.push(n.edges[t])}for(var s=0,o=i;s0&&this.zi--;var t=this.$i[this.$i.length-1];"number"==typeof t&&t>1?this.$i[this.$i.length-1]--:this.$i.pop()},t}();function Ss(t){var n=t.edges["**"];if(!n)throw new Error("Node must have double-wildcard edge.");return ot(t.edges,1)?{id:-n.id,edges:{"**":n}}:t}var xs,ks,_s,As=function(){function t(t){this.Xi=t,this.Ji=null}return t.prototype.disable=function(){this.Ji&&(this.Ji.disable(),this.Ji=null)},t.prototype.enable=function(t){var n,i=this,r=T(t),s=null===(n=null==r?void 0:r._w)||void 0===n?void 0:n.fetch;(s||t.fetch)&&(this.Ji=mt(s?r._w:t,"fetch"),this.Ji&&this.Ji.afterSync(function(t){var n=t.result;t.result=(0,e.__awaiter)(i,void 0,void 0,function(){return(0,e.__generator)(this,function(i){switch(i.label){case 0:return i.trys.push([0,2,,3]),[4,this.Zi(n,t.args[0],t.args[1])];case 1:case 2:return i.sent(),[3,3];case 3:return[2,n];}})})}))},t.prototype.Zi=function(t,n,i){return(0,e.__awaiter)(this,void 0,Yn,function(){var r,s,o,u,a,c;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return r="GET",s="",a=!1,"string"==typeof n?s=n:"url"in n?(s=n.url,r=n.method,o=n.body,u=n.headers,a=!!n.signal):s=""+n,s?(i&&(r=i.method||r,u=Ds(i.headers),o=i.body||o,a=!!i.signal||a),c=this.Yi(t),a&&s.search(/\/(graphql|gql)/i)>-1?[4,Yn.race([c,ni(5e3)])]:[3,2]):[2];case 1:e.sent(),e.label=2;case 2:return this.Xi.startRequest(r,s,{body:function(){return o},headers:u},c),[2];}})})},t.prototype.Yi=function(t){return(0,e.__awaiter)(this,void 0,Yn,function(){var n,i,r,s;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return[4,t];case 1:if(n=e.sent(),i=n.headers,r=(i.get("content-type")||"default").split(";")[0],!(["default","text/plain","text/json","application/json"].indexOf(r)>-1))return[2,{status:n.status,data:{headers:i,body:null}}];s=null,e.label=2;case 2:return e.trys.push([2,4,,5]),[4,n.clone().text()];case 3:return s=e.sent(),[3,5];case 4:return e.sent(),[3,5];case 5:return[2,{status:n.status,data:{headers:i,body:s}}];}})})},t}(),Is=function(){function t(t){this.Xi=t,this.tr=new WeakMap}return t.prototype.disable=function(){this.nr&&(this.nr.disable(),this.nr=null),this.ir&&(this.ir.disable(),this.ir=null),this.rr&&(this.rr.disable(),this.rr=null)},t.prototype.er=function(t){var n=this.tr.get(t);if(n)return n;var i={};return this.tr.set(t,i),i},t.prototype.enable=function(t){var n,i,r,s,o=this,u=T(t),a=(null===(n=null==u?void 0:u._w)||void 0===n?void 0:n.XMLHttpRequest)||t.XMLHttpRequest;if(a){var c=a.prototype;this.nr=null===(i=mt(c,"open"))||void 0===i?void 0:i.before(function(t){var n=o.er(t.that);n.method=t.args[0],n.url=t.args[1]}),this.rr=null===(r=mt(c,"setRequestHeader"))||void 0===r?void 0:r.before(function(t){var n=t.that,i=t.args[0],r=t.args[1],e=o.er(n);e.headers||(e.headers=[]),e.headers.push([i,r])}),this.ir=null===(s=mt(c,"send"))||void 0===s?void 0:s.before(function(t){var n=t.that,i=t.args[0],r=o.er(n),s=r.url,u=r.method,a=r.headers;void 0!==s&&void 0!==u&&(o.tr["delete"](n),o.Xi.startRequest(u,s,{headers:Ds(a),body:i},function(t){return(0,e.__awaiter)(this,void 0,Yn,function(){var n;return(0,e.__generator)(this,function(i){switch(i.label){case 0:return[4,new Yn(function(n){t.addEventListener("readystatechange",function(){t.readyState===XMLHttpRequest.DONE&&n()}),t.addEventListener("load",n),t.addEventListener("error",n)})];case 1:return i.sent(),n=function(t){if(t)return{forEach:function(n){for(var i,r=/([^:]*):\s+(.*)(?:\r\n|$)/g;i=r.exec(t);)n(i[2],i[1])}}}(t.getAllResponseHeaders()),[2,{status:t.status,data:{headers:n,body:function(){return"text"===t.responseType?t.responseText:t.response}}}];}})})}(n)))})}},t}(),Ts=/^data:/i,Cs=function(){function t(t,n){this._t=t,this.At=n,this.sr=!1,this.ur=new Ps(t,n),this.ar=new Is(this.ur),this.cr=new As(this.ur)}return t.prototype.isEnabled=function(){return this.sr},t.prototype.start=function(t){t.AjaxWatcher&&(this.sr||(this.sr=!0,this.At.enqueue({Kind:Ot.REC_FEAT_SUPPORTED,Args:[zt.Ajax,!0]}),this.ar.enable(this._t.window),this.cr.enable(this._t.window)))},t.prototype.stop=function(){this.sr&&(this.sr=!1,this.ar.disable(),this.cr.disable())},t.prototype.tick=function(){this.ur.tick()},t.prototype.setWatches=function(t){this.ur.setWatches(t)},t.prototype.initialize=function(t){this.ur.initialize(t)},t}(),Ps=function(){function t(t,n){this._t=t,this.At=n,this.hr=[],this.vr={},this.lr={},this.dr=[],this.pr=0;var i=cn.DefaultOrgSettings;this.initialize({requests:i.HttpRequestHeadersAllowlist,responses:i.HttpResponseHeadersAllowlist,maxAjaxPayloadLength:i.MaxAjaxPayloadLength})}return t.prototype.wr=function(t){for(var n=!1,i=!1,r=[],e=[],s=0,o=this.hr;s-1}function Os(t,n,i){return[t.length,Ns(t,n,i)]}function Ms(t,n,i){var r=void 0;return js(n)||(r=bs(t,i,n)),[Hs(t),r]}function Ks(t,n){var i=t.byteLength,r=void 0;return js(n)||(r="[ArrayBuffer]"),[i,r]}function Rs(t,n,i){return(0,e.__awaiter)(this,void 0,Yn,function(){var r,s,o,u,a;return(0,e.__generator)(this,function(e){switch(e.label){case 0:if(s=(r=t).size,js(n))return[2,[s,void 0]];switch(r.type){case"application/json":case"application/vnd.api+json":case"text/plain":return[3,1];}return[3,4];case 1:return e.trys.push([1,3,,4]),[4,r.text()["catch"](function(t){Tt.sendToBugsnag(t,"warning")})];case 2:return(o=e.sent())&&(u=Ns(o,n,i))?[2,[s,u]]:[3,4];case 3:return a=e.sent(),Tt.sendToBugsnag(a,"warning"),[3,4];case 4:return[2,[s,"[Blob]"]];}})})}function Hs(t){try{return o.jsonStringify(t).length}catch(t){}return 0}function Ns(t,n,i){if(!js(n))try{return bs(o.jsonParse(t),i,n)}catch(r){return n.length>0&&n.every(function(t){return!0===t})?t.slice(0,i):void 0}}function Ls(t,n){switch(t){default:case Zt.Elide:return!1;case Zt.Record:return!0;case Zt.Allowlist:try{return ms(n)}catch(t){return!1}}}function Us(t,n,i,r){var s;return(0,e.__awaiter)(this,void 0,Yn,function(){var o,u,a,c,h,f,v;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return o="",null===(s=r.headers)||void 0===s||s.forEach(function(n,i){var r=i.toLowerCase(),e=t[r];o+=r+(e?": "+n:"")+"\r\n"}),"function"!=typeof(u=null==r?void 0:r.body)?[3,2]:[4,u()];case 1:return a=e.sent(),[3,3];case 2:a=u,e.label=3;case 3:return[4,Fs(n,a,i)];case 4:return c=e.sent(),h=c[0],f=c[1],v=0!==h||f?qt.NotEmpty:qt.Unknown,[2,{headers:o,text:f,size:h,legibility:v}];}})})}function Fs(t,n,i){return void 0===i&&(i=cn.DefaultOrgSettings.MaxAjaxPayloadLength),(0,e.__awaiter)(this,void 0,Yn,function(){var r;return(0,e.__generator)(this,function(e){if(null==n)return[2,[0,void 0]];switch(typeof n){default:return[2,[-1,js(t)?void 0:"[unknown]"]];case"string":return[2,Os(n,t,i)];case"object":switch(r=n.constructor){case Object:default:return[2,Ms(n,t,i)];case Blob:return[2,Rs(n,t,i)];case ArrayBuffer:return[2,Ks(n,t)];case Document:case FormData:case URLSearchParams:case ReadableStream:return[2,[-1,js(t)?void 0:""+r.name]];}}return[2]})})}function Ds(t){return t?tt(t)?{forEach:function(n){for(var i=0,r=t;i-1){if(n.unshift(e),r instanceof CSSStyleSheet)break;i=r}else Tt.sendToBugsnag("Could not find intermediate rule in parent","warning")}return n},t.prototype.Wr=function(t,n){for(var i=0;i=t?(this.oe-=t,[!0,0]):[!1,(t-this.oe)/this.ne]},t}())(2,2e5),ho=new Set(["measureText","getImageData","getError","getTransform","isContextLost","isEnabled","isFramebuffer","isProgram","isRenderbuffer","isShader","isTexture"]),fo=new Set(["fillText"]),vo=function(){function t(t,n,i,r){this.At=n,this.Ti=i,this.ai=r,this.ue=dn.CaptureCanvasOps,this.ae=[],this.ce=[],this.he=new WeakMap,this.fe=new WeakMap,this.ve=new Set,this.le=0,this.de=new WeakMap,this.pe=!1,this.we=new WeakMap,this.ge=new Set,this.me=new WeakMap,this.ye=1,this.be=new WeakMap,this.Ee=1,this.Se=0,this.xe=!1}return t.prototype.start=function(t){var n,i=this;if(t.CanvasWatcherMode&&(this.At.enqueue({Kind:Ot.REC_FEAT_SUPPORTED,Args:[zt.CanvasWatcherEnabled,!0]}),this.pe=!0,this.ue=null!==(n=t.CanvasWatcherMode)&&void 0!==n?n:dn.CaptureCanvasOps,this.Ji("2d",CanvasRenderingContext2D),this.Ji("webgl",WebGLRenderingContext),this.ue===dn.ScreenshotCanvas)){if(!HTMLCanvasElement.prototype.toDataURL)return;this.le=setInterval(function(){return i.screenshotConnectedCanvases()},1e3)}},t.prototype.ke=function(t,n){return"object"!=typeof n?[void 0,0]:(this.be.has(n)||this.be.set(n,[t,this.Ee++]),this.be.get(n))},t.prototype.Ji=function(t,n){var i=this;if(n)for(var r=n.prototype,e=function(e){if(ho.has(e))return"continue";var o=Object.getOwnPropertyDescriptor(r,e);if("function"==typeof(null==o?void 0:o.value)){var u=mt(r,e);u&&(u.afterSync(function(n){return i._e(t,e,n.that,n.args,n.result)}),s.ae.push(u))}else"function"==typeof(null==o?void 0:o.set)&&s.ce.push(yt(n,e,s.Ae(t,e)))},s=this,o=0,u=Object.keys(r);o0){var o=n;if(!o){var u=t instanceof HTMLCanvasElement?Ui(t):void 0,a=t instanceof HTMLCanvasElement&&St(t);o=null!==(r=null==u?void 0:u.mask)&&void 0!==r?r:a}this.Pe(t,e,s,o)}return e}},t.prototype.je=function(t,n,i,r,e,s,o){var u;switch(typeof r){case"string":return e?Ci(r):r;case"number":case"boolean":case"bigint":return r;case"undefined":return{undef:!0};case"object":if(!r)return r;try{o.set(r,!0)}catch(t){}var a=null===(u=Object.getPrototypeOf(r))||void 0===u?void 0:u.constructor,c=(null==a?void 0:a.name)||function(t){var n;if(t){var i=t.toString(),r=po.exec(i);return r||(r=wo.exec(i)),null===(n=null==r?void 0:r[1])||void 0===n?void 0:n.trim()}}(a),h={ctor:c};if(r instanceof Node&&(l=Di(r)))return h.id=l,h;switch(c){case"Array":return this.Se+=r.length,this.Oe(t,n,i,r,e,s,o);case"CanvasGradient":return h;case"HTMLImageElement":var f=he(r.src,{source:"dom",type:"canvas"});return this.ai.record(f),h.src=f,h;case"HTMLCanvasElement":var v=r,l=this.flush(v,e);return h.srcId=l,h;}if(function(t){var n;return!!(null===(n=Object.prototype.toString.call(t))||void 0===n?void 0:n.match(lo))}(r))return this.be.has(r)?this.Me(r,h,e):(h.typedArray="["+r.toString()+"]",this.Se+=r.length,h);if("object"==typeof r&&this.be.has(r))return this.Me(r,h,e);if(r instanceof WebGLBuffer||r instanceof WebGLTexture){var d=void 0;switch(s){case"bindTexture":d=this.Ke(t,"createTexture",n,i,r);break;case"bindBuffer":d=this.Ke(t,"createBuffer",n,i,r);}if(void 0!==d)return this.Me(r,h,e)}var p=r;for(var w in h.obj={},p){try{switch(typeof p[w]){case"function":continue;case"object":if(p[w]&&o.has(p[w]))continue;}}catch(t){continue}++this.Se,h.obj[w]=this.je(t,n,i,p[w],e,s,o)}return h;default:return null;}},t.prototype.Me=function(t,n,i){var r=this.be.get(t),e=r[0],s=r[1];return this.flush(e,i),n.ref=s,delete n.ctor,n},t.prototype.Ke=function(t,n,i,r,e){var s=this.ke(i,e),o=(s[0],s[1]);return this.Re(r,[[t,ln.Function,n,[],o]]),o},t.prototype.Oe=function(t,n,i,r,e,s,o){var u=this;return void 0===o&&(o=new WeakMap),this.Se+=r.length+1,r.map(function(r){return u.je(t,n,i,r,e,s,o)})},t.prototype.Pe=function(t,n,i,r){var e=this;if(void 0===r&&(r=!1),!this.xe){var s=i.map(function(i){var s=i[0],o=i[1],u=i[2],a=i[3],c=i[4];return[s,o,u,e.Oe(s,t,n,a,r&&fo.has(u),u),c]});if(!this.he.has(t)&&(this.he.set(t,!0),i.some(function(t){return"2d"===t[0]}))){var o=this.He(t);if(o.length>0)return o.push.apply(o,s),void this.Re(n,o)}this.Re(n,s)}},t.prototype.Re=function(t,n){if(!this.xe){var i=co.hasCapacityFor(this.Se),r=i[0];i[1],this.Se=0,r?this.At.enqueue({Kind:Ot.CANVAS,Args:[t,n]}):this.xe=!0}},t.prototype.He=function(t){var n=t.getContext("2d");if(!n)return[];var i=[];if((n instanceof CanvasRenderingContext2D||n instanceof OffscreenCanvasRenderingContext2D)&&"function"==typeof n.getTransform){var r=n.getTransform();if(!r.isIdentity){var e=r.a,s=r.b,o=r.c,u=r.d,a=r.e,c=r.f;i.push(["2d",ln.Function,"transform",[e,s,o,u,a,c],-1])}}return i},t.prototype.Ne=function(t,n){t instanceof HTMLCanvasElement&&(this.ue===dn.ScreenshotCanvas?(this.fe.set(t,!0),this.ve.add(t)):(this.ge.add(t),this.Ie(t,n)))},t.prototype._e=function(t,n,i,r,e){for(var s=[],o=0;o))/m,mo=/^(eval@)?(\[native code\])?$/;function yo(t){if(!t||"string"!=typeof t.stack)return[];var n=t;return n.stack.match(go)?n.stack.split("\n").filter(function(t){return!!t.match(go)}).map(function(t){var n=t;n.indexOf("(eval ")>-1&&(n=n.replace(/eval code/g,"eval").replace(/(\(eval at [^()]*)|(\),.*$)/g,""));var i=n.replace(/^\s+/,"").replace(/\(eval code/g,"(").replace(/\(native code\)/,"").split(/\s+/).slice(1),r=Eo(i.pop());return bo(i.join(" "),["eval",""].indexOf(r[0])>-1?"":r[0],r[1],r[2])}):n.stack.split("\n").filter(function(t){return!t.match(mo)}).map(function(t){var n=t;if(n.indexOf(" > eval")>-1&&(n=n.replace(/ line (\d+)(?: > eval line \d+)* > eval:\d+:\d+/g,":$1")),-1===n.indexOf("@")&&-1===n.indexOf(":"))return[n,"",-1,-1];var i=n.split("@"),r=Eo(i.pop());return bo(i.join("@"),r[0],r[1],r[2])})}function bo(t,n,i,r){return[t||"",n||"",parseInt(i||"-1",10),parseInt(r||"-1",10)]}function Eo(t){if(!t||-1===t.indexOf(":"))return["","",""];var n=/(.+?)(?::(\d+))?(?::(\d+))?$/.exec(t.replace(/[()]/g,""));return n?[n[1]||"",n[2]||"",n[3]||""]:["","",""]}var So,xo,ko=["log","info","warn","error","debug","_fs_debug","assert","trace"],_o=ko.filter(function(t){return!/debug/.test(t)}),Ao=function(t,n,i){void 0===i&&(i=!0);var r=Qi(t,n);return i?be(r):r},Io=function(){function t(t,n,i){this.At=n,this.sr=!1,this.Fe=!1,this.De=0,this.Dt=[],this.Be=cn.DefaultOrgSettings.MaxConsoleLogPerPage,this.Dn=t.window,this.T=i.createChild()}return t.prototype.initializeMaxLogsPerPage=function(t){this.Be=t||cn.DefaultOrgSettings.MaxConsoleLogPerPage},t.prototype.We=function(){return"\"[received more than "+this.Be+" messages]\""},t.prototype.start=function(t){var n=this;if(t.ConsoleWatcher&&(this.T.add(this.Dn,"error",!0,function(t){return n.addError(t)}),this.T.add(this.Dn,"unhandledrejection",!0,function(t){n.addError({error:t.reason,message:"Uncaught (in promise)",filename:"",lineno:0,colno:0})},!0),!this.sr))if(this.sr=!0,this.At.enqueue({Kind:Ot.REC_FEAT_SUPPORTED,Args:[zt.Console,!0]}),this.Dn.console)for(var i=function(t){var i=mt(r.Dn.console,t);if(!i)return"continue";"assert"===t?i.before(function(i){var r=i.args;r[0]||n.qe(t,Array.prototype.slice.apply(r,[1]))}):i.before(function(i){var r=i.args;return n.qe(t,r)}),r.Dt.push(i)},r=this,e=0,s=_o;e5e5)return!1;var i=Ws(Bs(t));return!!i&&(!!("style"===ki(t)&&i.length>0&&Xs.test(n))||function(t){var n;try{if((null===(n=t.classList)||void 0===n?void 0:n.contains("fs-css-in-js"))||t.hasAttribute("data-fela-type")||t.hasAttribute("data-aphrodite"))return!0}catch(t){Tt.sendToBugsnag(t,"error")}return!1}(t))}(s)&&(null==n||n.push(function(){u.snapshotEl(s),"link"===ki(s)&&i.T.add(s,"load",!1,function(){u.snapshotEl(s)})}));break;case"CANVAS":this._t.measurer.requestMeasureTask(ii.Low,function(){return i.us[So.Canvas].flush(t)});break;default:t.nodeName&&"#"!==t.nodeName[0]&&t.nodeName.indexOf("-")>-1&&this.us[So.CustomElement].onCustomNodeVisited(t);}if("scrollLeft"in t&&"scrollTop"in t){var a=t;this._t.measurer.requestMeasureTask(ii.Low,function(){0==a.scrollLeft&&0==a.scrollTop||i.Ps(a)})}null==n||n.push(function(){i._t.measurer.requestMeasureTask(ii.Low,function(){i.us[So.Animation].snapshot(t)})})},t.prototype.On=function(t){var n,i=t.node,r=ki(t.node);if("iframe"===r)this.$e(t.node);else if("function"==typeof i.getElementsByTagName)for(var e=null!==(n=i.getElementsByTagName("iframe"))&&void 0!==n?n:[],s=0;s-1&&s.push(i.href),("img"===t||"source"===t)&&(e=i.srcset)&&null==e.match(/^\s*$/))for(var c=0,h=e.split(",");c0)return i[0]}}return t.target}function Mo(t){var n;return!!(null!==(n=t._fs_trust_event)&&void 0!==n&&n||t.isTrusted)}var Ko,Ro=function(){function t(t,n){this.Vr=t,this.Gs=n,this.Xs=[],this.Js=0}return t.prototype.add=function(t){this.Xs.length>0&&this.Xs[this.Xs.length-1].When===t.When&&this.Xs.pop(),0===this.Xs.length?(this.Vr.push(t),this.Js=t.When):t.When>this.Js&&(this.Js=t.When),this.Xs.push(t)},t.prototype.finish=function(t,n){void 0===n&&(n=[]);var i=this.Xs.length;if(i<=1)return!1;for(var r=[],s=this.Xs[0].When,o=this.Xs[i-1].When,u=o-s!=0?o-s:1,a=0;a0&&this.Zs--,Lo(this.Wn.prev)},t.prototype.shift=function(){return this.Zs>0&&this.Zs--,Lo(this.Wn.next)},t}();function No(t,n){var i=t.next;n.next=i,n.prev=t,t.next=i.prev=n}function Lo(t){var n=t.prev,i=t.next;return n.next=i,i.prev=n,t.value}!function(t){t[t.rageWindowMillis=2e3]="rageWindowMillis",t[t.defaultRageThreshold=5]="defaultRageThreshold",t[t.rageThresholdIfPageChanges=8]="rageThresholdIfPageChanges",t[t.thresholdChangeQuiescenceMillis=2e3]="thresholdChangeQuiescenceMillis"}(Ko||(Ko={}));var Uo=function(){function t(t,n){var i,r;void 0===n&&(n=w),this._t=t,this.Ys=n,this.no=new Ho,this.io=Ko.defaultRageThreshold,this.ro=-1,this.eo=new WeakMap;var e=t.recording.pageResponse();if(!e)throw new Error("Attempt to construct EasyBake before rec/page response is set.");for(var s=[".fs-ignore-rage-clicks",".fs-ignore-rage-clicks *"],o=0,u=null!==(r=null===(i=e.BehaviorSignalSettings)||void 0===i?void 0:i.ElementBlocks)&&void 0!==r?r:[];o-1&&(s.push(a.Selector),s.push(a.Selector+" *"))}var c=s.join(", ");Be(c)?this.so=[c]:this.so=s}return t.prototype.oo=function(t){var n=this.eo.get(t);if(void 0!==n)return n;for(var i=0,r=this.so;i=this.io){var a=this._t.recording.getCurrentSessionURL,c={eventStartTimeStamp:this.no.first(),eventEndTimeStamp:i,eventReplayUrlAtStart:a(),eventReplayUrlAtCurrentTime:a(!0)};this.dispatchRageClickEvent(r,c),this.io=Ko.defaultRageThreshold,this.no=new Ho}}}}}},t.prototype.dispatchRageClickEvent=function(t,n){var i,r="fullstory/rageclick";try{i=new CustomEvent(r,{detail:n,bubbles:!0,cancelable:!0})}catch(t){(i=document.createEvent("customevent")).initCustomEvent(r,!0,!0,n)}o.setWindowTimeout(window,Tt.wrap(function(){t.dispatchEvent(i)}),0)},t}(),Fo=function(){function t(t){this._t=t,this.uo=this._t.time.wallTime(),this.ao=!1}return t.prototype.getLastUserAcitivityTS=function(){return this.uo},t.prototype.getMsSinceLastUserAcivity=function(){return o.mathFloor(this._t.time.wallTime()-this.uo)},t.prototype.resetUserActivity=function(){this.uo=this._t.time.wallTime()},t.prototype.isHibernating=function(){return this.ao},t.prototype.setHibernating=function(){this.ao=!0},t}(),Do=function(){function t(t,n,i,r){void 0===r&&(r=Yi),this._t=t,this.co=n,this.At=i,this.ho=!1,this.fo=!1,this.vo=cn.HeartbeatInitial,this.lo=cn.PageInactivityTimeout,this.heartbeatTimeout=new r(this["do"].bind(this)),this.hibernationTimeout=new r(this.po.bind(this),this.lo)}return t.prototype.getUserActivityModel=function(){return this.co},t.prototype.manualHibernateCheck=function(){this.co.isHibernating()||this.co.getMsSinceLastUserAcivity()>=cn.PageInactivityTimeout+5e3&&this.po()},t.prototype.scanEvents=function(t){if(!this.ho){this.manualHibernateCheck();for(var n=!1,i=0,r=t;icn.HeartbeatMax&&(this.vo=cn.HeartbeatMax),this.heartbeatTimeout.start(this.vo)},t.prototype.po=function(){if(!this.co.isHibernating()){var t=!1;this.co.getMsSinceLastUserAcivity()<=2*cn.PageInactivityTimeout?this.At.enqueue({Kind:Ot.UNLOAD,Args:[Wt.Hibernation]}):t=!0;try{this.ho=!0,this.co.setHibernating(),this.shutdown(),this.At.onHibernate(t)}finally{this.ho=!1}}},t.prototype.wo=function(){this.fo||(this.fo=!0,this._t.recording.splitPage(Wt.Hibernation))},t}(),Bo=function(){function t(t,n,i,r,e,s){void 0===r&&(r=function(){return[]}),void 0===e&&(e=Zi),void 0===s&&(s=Yi),this._t=t,this.mo=n,this.yo=r,this.bo=e,this.Eo=0,this.So=[],this.xo=!1,this.ko=!1,this._o=0,this.Ao=-1,this.Io=!1,this.Qt=[],this.To=new this.bo(cn.CurveSamplingInterval),this.Co=new this.bo(cn.MutationProcessingInterval),i&&(this.Po=new Do(this._t,i,this,s))}return t.prototype.startPipeline=function(t){var n;return(0,e.__awaiter)(this,void 0,Yn,function(){var i,r=this;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return this.ko||this.xo?[2]:(this.xo=!0,t.frameId&&(this.Eo=t.frameId),t.parentIds&&(this.So=t.parentIds),i=!0,[4,ei()]);case 1:return e.sent(),this.processEvents(),[4,ei()];case 2:return e.sent(),window,this.Co.start(function(){window,r.processEvents(),window}),this.To.start(function(){window,r.processEvents(i),window}),null===(n=this.Po)||void 0===n||n.start(),this.mo.startPipeline(t),window,[2];}})})},t.prototype.enableEasyBake=function(){this.jo=new Uo(this._t)},t.prototype.enqueueSimultaneousEventsIn=function(t){if(0===this._o){var n=this._t.time.now();this.Ao=n>this.Ao?n:this.Ao}try{return this._o++,t(this.Ao)}finally{this._o--,this._o<0&&(this._o=0)}},t.prototype.enqueue=function(t){var n=this._o>0?this.Ao:this._t.time.now();this.Oo(n,t),Ji.checkForBrokenSchedulers()},t.prototype.Oo=function(t,n){var i;if(!this.ko){var r=t;r0){var n=t;n.When=this.Qt[0].When,this.Qt.unshift(n)}else this.enqueue(t)},t.prototype.addUnload=function(t){this.Io||(this.Io=!0,this.enqueue({Kind:Ot.UNLOAD,Args:[t]}),this.singSwanSong(t))},t.prototype.shutdown=function(t){this.addUnload(t),this.Mo(),this.ko=!0,this.Ko()},t.prototype.Mo=function(){this.processEvents(),this.mo.flush()},t.prototype.singSwanSong=function(t){this.ko||(window,this.Mo(),t===Wt.Hidden&&this.Io||this.mo.singSwanSong(),window)},t.prototype.rebaseIframe=function(t,n){for(var i=Math.max(0,n),r=this._t.time.startTime(),e=function(n){var e=r+n-t;return e>=i?e:i},s=0,o=this.Qt;s0){var f=h[h.length-1].Args[2];f&&(h[0].Args[9]=f)}}for(var v in s)s[l=parseInt(v,10)].finish(Ot.SCROLL_LAYOUT_CURVE,[l]);for(var v in o)o[l=parseInt(v,10)].finish(Ot.SCROLL_VISUAL_OFFSET_CURVE,[l]);for(var v in e){var l;e[l=parseInt(v,10)].finish(Ot.TOUCHMOVE_CURVE,[l])}return n&&n.finish(Ot.RESIZE_VISUAL_CURVE),i}(n);t||(i=i.concat(this.yo())),this.Ro(i),this.sendEvents(this._t.recording.pageSignature(),i)}},t.prototype.sendEvents=function(t,n){var i;0!=n.length&&(null===(i=this.Po)||void 0===i||i.scanEvents(n),this.mo.enqueueEvents(t,n))},t.prototype.onHibernate=function(t){t||this.Mo(),this.mo.singSwanSong(),this.mo.stopPipeline()},t.prototype.Ro=function(t){if(this.Eo)for(var n=this.So,i=n&&n.length>0,r=0;r>>0).toString(16)).slice(-8);return t},t}();function qo(t){var n=new Wo(1);return n.writeAscii(t),n.sumAsHex()}function Qo(t){var n=new Uint8Array(t);return Vo(String.fromCharCode.apply(null,n))}function Vo(t){var n;return(null!==(n=window.btoa)&&void 0!==n?n:zo)(t).replace(/\+/g,"-").replace(/\//g,"_")}function zo(t){for(var n=String(t),i=[],r=0,e=0,s=0,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";n.charAt(0|s)||(o="=",s%1);i.push(o.charAt(63&r>>8-s%1*8))){if((e=n.charCodeAt(s+=3/4))>255)throw new Error("'btoa' failed: The string to be encoded contains characters outside of the Latin1 range.");r=r<<8|e}return i.join("")}function $o(t,n,i,r){return void 0===r&&(r=new Wo),(0,e.__awaiter)(this,void 0,Yn,function(){var s,o,u,a;return(0,e.__generator)(this,function(e){switch(e.label){case 0:s=t.now(),o=i.byteLength,u=0,e.label=1;case 1:return u25?[4,n(100)]:[3,3]:[3,5];case 2:e.sent(),s=t.now(),e.label=3;case 3:a=new Uint8Array(i,u,Math.min(o-u,1e4)),r.write(a),e.label=4;case 4:return u+=1e4,[3,1];case 5:return[2,{hash:r.sum(),hasher:r}];}})})}var Go=6e6,Xo="resource-uploader",Jo=function(){function t(t,n,i,r,e){void 0===r&&(r=window.FormData),void 0===e&&(e=Yi),this._t=t,this.At=n,this.Ho=i,this.No=r,this.Lo=e,this.pe={},this.Uo={},this.Fo=!1,this.Do=[]}return t.prototype.init=function(){this.No&&this.Bo()["catch"](function(t){Tt.sendToBugsnag(t,"error")})},t.prototype.Bo=function(){return(0,e.__awaiter)(this,void 0,Yn,function(){var t,n,i,r,s,o,u,a,c,h,f,v,l,d,p,w,g,m,y,b,E,S,x,k,_;return(0,e.__generator)(this,function(e){switch(e.label){case 0:t=this._t.options.orgId,e.label=1;case 1:return[4,this.Wo()];case 2:for(n=e.sent(),i={fsnv:{},sha1:{}},r={},s=0,o=n;sGo){var r=he(t,{source:"log",type:"bugsnag"});return Tt.sendToBugsnag("Size of blob resource exceeds limit","warning",{url:r,MaxResourceSizeBytes:Go}),void i(null)}(function(t){var n=ti(),i=n.resolve,r=n.promise,e=new FileReader;return e.readAsArrayBuffer(t),e.onload=function(){i(e.result)},e.onerror=function(t){Tt.sendToBugsnag(t,"error"),i(null)},r})(n).then(function(t){i(t?{buffer:t,blob:n,contentType:n.type}:null)})},e.send(),r)}function Yo(t,n){var i,r;return(0,e.__awaiter)(this,void 0,Yn,function(){var s;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return s=t.window,(null===(r=null===(i=s.crypto)||void 0===i?void 0:i.subtle)||void 0===r?void 0:r.digest)?[4,s.crypto.subtle.digest({name:"sha-1"},n)]:[3,2];case 1:return[2,{hash:Qo(e.sent()),algorithm:"sha1"}];case 2:return[4,$o(t.time,ni,n)];case 3:return[2,{hash:e.sent().hash,algorithm:"fsnv"}];}})})}var tu=/^data:([^;,]*)(;?charset=[^;]+)?(?:;base64)?$/i,nu="Could not parse data url",iu=function(t,n,i){this.name="ProtocolError",this.message=n,this.status=t,this.data=i};function ru(t){return t>=400&&502!==t||202==t||206==t}var eu=function(){function t(t){this.Vo=0,this.zo=t.options.scheme,this.$o=t.options.cdnHost,this._t=t}return t.prototype.page=function(t){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(n){switch(n.label){case 0:return[4,uu(this.zo,vu(this._t),"/rec/page",vt(t))];case 1:return[2,pt(n.sent().text)];}})})},t.prototype.settings=function(t){return(0,e.__awaiter)(this,void 0,Yn,function(){var n;return(0,e.__generator)(this,function(i){return n=t.previewMode||t.fallback?vu(this._t):this.$o,[2,fu(this.zo,n,t)]})})},t.prototype.bundle=function(t){var n;return(0,e.__awaiter)(this,void 0,Yn,function(){var i,r,s,o;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return[4,ei()];case 1:return e.sent(),window,i=vt(t.bundle),this.Vo+=i.length,this.Vo,window,i.length>2e6?[4,ei()]:[3,3];case 2:e.sent(),e.label=3;case 3:return window,r=ou(t.bundle.Seq,t),[4,uu(this.zo,null!==(n=t.recHost)&&void 0!==n?n:vu(this._t),r,i)];case 4:return s=e.sent().text,o=pt(s),window,[2,[this.Vo,o]];}})})},t.prototype.bundleBeacon=function(t){var n;return hu(this.zo,null!==(n=t.recHost)&&void 0!==n?n:vu(this._t),t)},t.prototype.exponentialBackoffMs=function(t,n){var i=o.mathMin(cn.BackoffMax,5e3*o.mathPow(2,t));return n?i+.25*o.mathRandom()*i:i},t}(),su=function(){function t(t){this.zo=t.options.scheme,this._t=t}return t.prototype.uploadResource=function(t){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(n){switch(n.label){case 0:return[4,uu(this.zo,vu(this._t),"/rec/uploadResource",t)];case 1:return[2,n.sent().text];}})})},t.prototype.queryResources=function(t){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(n){switch(n.label){case 0:return[4,uu(this.zo,vu(this._t),"/rec/queryResources",vt(t))];case 1:return[2,pt(n.sent().text)];}})})},t}();function ou(t,n){var i="/rec/bundle"+("v2"===n.version?"/v2":"")+"?OrgId="+n.orgId+"&UserId="+n.userId+"&SessionId="+n.sessionId+"&PageId="+n.pageId+"&Seq="+t;return null!=n.serverPageStart&&(i+="&PageStart="+n.serverPageStart),null!=n.serverBundleTime&&(i+="&PrevBundleTime="+n.serverBundleTime),null!=n.lastUserActivity&&(i+="&LastActivity="+n.lastUserActivity),n.isNewSession&&(i+="&IsNewSession=true"),null!=n.deltaT&&(i+="&DeltaT="+n.deltaT),i}function uu(t,n,i,r){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(e){return[2,cu("POST",t,n,lu(i),!0,r)]})})}function au(t,n,i){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(r){return[2,cu("GET",t,n,lu(i),!1)]})})}function cu(t,n,i,r,s,o){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(e){return[2,new Yn(function(e,u){var a="//"+i+r,c=!1,h=new XMLHttpRequest,f=("withCredentials"in h);jt(f,"XHR missing CORS support"),f&&(h.onreadystatechange=function(){if(4==h.readyState){if(c)return;c=!0;try{var t={text:h.responseText};if(200==h.status)return void e(t);var n=void 0;try{n=pt(t.text)}catch(t){}u(new iu(h.status,t.text,n))}catch(t){Tt.sendToBugsnag(t,"error"),u(t)}}},h.open(t,n+a,!0),h.withCredentials=s,o&&"function"!=typeof o.append&&h.setRequestHeader("Content-Type","text/plain"),h.send(o))})]})})}function hu(t,n,i){if("function"==typeof navigator.sendBeacon){var r=t+"//"+n+ou(i.bundle.Seq,i)+"&SkipResponseBody=true",e=vt(i.bundle);try{return navigator.sendBeacon.bind(navigator)(r,e)}catch(t){}}return!1}function fu(t,n,i){var r;return(0,e.__awaiter)(this,void 0,Yn,function(){var s,o;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return s=null!==(r=i.version)&&void 0!==r?r:"v1",o=i.previewMode?"?previewMode=true":"",[4,au(t,n,"/s/settings/"+i.orgId+"/"+s+"/web"+o)];case 1:return[2,pt(e.sent().text)];}})})}function vu(t){var n,i=null===(n=t.recording.pageResponse())||void 0===n?void 0:n.GCLBSubdomain,r=t.options.recHost;return i&&K(r)?r.replace(/^rs\./,i+"."):r}function lu(t){if(!window.Zone)return t;var n="?";return t.indexOf(n)>-1&&(n="&"),""+t+n+"ngsw-bypass=true"}var du,pu=function(){function t(t,n,i){void 0===i&&(i=new wu),this._t=t,this.Vr=n,this.Go=i}return t.prototype.initialize=function(t){var n;if(t){this.Xo(t);var i=null===(n=this._t.window.location)||void 0===n?void 0:n.href;this.onNavigate(i)}},t.prototype.onNavigate=function(t){return!!this.Go.matches(t)&&(this.Vr.enqueue({Kind:Ot.KEEP_URL,Args:[this.Jo(t)]}),!0)},t.prototype.onClick=function(t){var n;return!!(null===(n=null==t?void 0:t.watchKind)||void 0===n?void 0:n.has(_i.Keep))&&(this.Vr.enqueue({Kind:Ot.KEEP_ELEMENT,Args:[t.id]}),!0)},t.prototype.urlMatches=function(t){return this.Go.matches(t)},t.prototype.Xo=function(t){this.Go.setRules(t)},t.prototype.Jo=function(t){return he(t,{source:"page",type:"base"})},t}(),wu=function(){function t(){this.Zo=null}return t.prototype.setRules=function(t){var n=t.map(function(t){return t.Regex}).filter(this.Yo);n.length>0&&(this.Zo=this.tu(n))},t.prototype.matches=function(t){return!!this.Zo&&this.Zo.test(t)},t.prototype.Yo=function(t){try{return new RegExp(t),!0}catch(n){return Tt.sendToBugsnag("Browser rejected UrlKeep.Regex","error",{expr:t,error:n.toString()}),!1}},t.prototype.tu=function(t){try{return new RegExp("("+t.join(")|(")+")","i")}catch(n){return Tt.sendToBugsnag("Browser rejected joining UrlKeep.Regexs","error",{exprs:t,error:n.toString()}),null}},t}(),gu=function(t){var n=(void 0===t?{}:t).wnd,i=void 0===n?window:n;!function(t,n,i,r,e,s,o,u){var a,c;function h(t){var n,i=[];function r(){n&&(i.forEach(function(t){var i;try{i=t[n[0]]&&t[n[0]](n[1])}catch(n){return void(t[3]&&t[3](n))}i&&i.then?i.then(t[2],t[3]):t[2]&&t[2](i)}),i.length=0)}function e(t){return function(i){n||(n=[t,i],r())}}return t(e(0),e(1)),{then:function(t,n){return h(function(e,s){i.push([t,n,e,s]),r()})}}}(!(i in t)||(t.console&&t.console.log&&t.console.log("FullStory namespace conflict. Please set window[\"_fs_namespace\"]."),0))&&(u=t[i]=function(){var t=function(t,i,r){function e(e,s){n(t,i,r,e,s)}var s=/Async$/;return s.test(t)?(t=t.replace(s,""),"function"==typeof Promise?new Promise(e):h(e)):n(t,i,r)};function n(n,i,r,e,s){return t._api?t._api(n,i,r,e,s):(t.q&&t.q.push([n,i,r,e,s]),null)}return t.q=[],t}(),function(){function t(){}function n(t,n,i){u("setProperties",{type:t,properties:n},i)}function i(t,i){n("user",t,i)}function r(t,n,r){i({uid:t},r),n&&i(n,r)}u.identify=r,u.setUserVars=i,u.identifyAccount=t,u.clearUserCookie=t,u.setVars=n,u.event=function(t,n,i){u("trackEvent",{name:t,properties:n},i)},u.anonymize=function(){r(!1)},u.shutdown=function(){u("shutdown")},u.restart=function(){u("restart")},u.log=function(t,n){u("log",{level:t,msg:n})},u.consent=function(t){u("setIdentity",{consent:!arguments.length||t})}}(),a="fetch",c="XMLHttpRequest",u._w={},u._w[c]=t[c],u._w[a]=t[a],t[a]&&(t[a]=function(){return u._w[a].apply(this,arguments)}),u._v="2.0.0")}(i,i.document,i._fs_namespace,0,0,i._fs_script)};function mu(t,n){if(t&&t.postMessage)try{t.postMessage(function(t){var n;return vt(((n={}).__fs=t,n))}(n),"*")}catch(t){Ut("postMessage",t)}}function yu(t){try{var n=pt(t);if("__fs"in n)return n.__fs}catch(t){}return[du.Unknown]}function bu(t,n,i,r){var e=W(t);if(!e)return!1;try{e.send(n,i,r)}catch(t){e.send(n,i)}return!0}!function(t){t.EndPreviewMode="EndPreviewMode",t.EvtBundle="EvtBundle",t.GreetFrame="GreetFrame",t.InitFrameMobile="InitFrameMobile",t.RequestFrameId="RequestFrameId",t.RestartFrame="RestartFrame",t.SetConsent="SetConsent",t.SetFrameId="SetFrameId",t.ShutdownFrame="ShutdownFrame",t.Unknown="Unknown"}(du||(du={}));var Eu=new RegExp(/^\s+$/),Su=/^fb\d{18}$/,xu=function(t){var n=t.frame,i=t.orgId,r=t.scheme,e=t.script,s=t.recHost,u=t.cdnHost,a=t.appHost,c=t.namespace,h=(t.desc,t.snippetVersion);try{if(function(t){return t.id==t.name&&Su.test(t.id)}(n))return Rt.BlocklistedFrame;if(function(t){return!(t.contentDocument&&t.contentWindow&&t.contentWindow.location)||function(t){return!!t.src&&"about:blank"!=t.src&&t.src.indexOf("javascript:")<0}(t)&&t.src!=t.contentWindow.location.href&&"loading"==t.contentDocument.readyState}(n))return Rt.PartiallyLoaded;var f=n.contentWindow,v=n.contentDocument;if(!f||!v)return Rt.MissingWindowOrDocument;if(!v.head)return Rt.MissingDocumentHead;if(!v.body||0===v.body.childNodes.length)return Rt.MissingBodyOrChildren;for(var l=!1,d=v.body.childNodes,p=0;p0&&(null!==(s=null===(e=null===(r=t.OrgSettings)||void 0===r?void 0:r.UrlPrivacyConfig)||void 0===e?void 0:e.length)&&void 0!==s?s:0)>0&&(null!==(a=null===(u=null===(o=t.OrgSettings)||void 0===o?void 0:o.AttributeBlocklist)||void 0===u?void 0:u.length)&&void 0!==a?a:0)>0;return c||Tt.sendToBugsnag("Invalid page response","error",{rsp:t}),c},t.prototype.handleResponse=function(t,n){var i,r,e,s,o=t.Flags,u=o.AjaxWatcher,a=o.ClientSideRageClick,c=o.GetCurrentSession,h=o.ResourceUploading,f=o.UseClientSideId;this.ku=t,this.Pu=t.UserIntId,this.ju=t.SessionIntId,this.Ou=t.PageIntId,this.Mu=t.PageStart,this.pu=c?_u.Enabled:_u.Disabled,this.cu=t.OrgSettings,pe(null!==(i=this.cu.UrlPrivacyConfig)&&void 0!==i?i:cn.DefaultOrgSettings.UrlPrivacyConfig,this.cu.MaxUrlLength);var v=null!==(r=this.cu.AttributeBlocklist)&&void 0!==r?r:[];(null===(s=null===(e=this._u)||void 0===e?void 0:e.privacy)||void 0===s?void 0:s.attributeBlocklist)&&(this._u.privacy.attributeBlocklist.length,v.push.apply(v,this._u.privacy.attributeBlocklist.map(Ae))),xe(v),this.yu.consoleWatcher().initializeMaxLogsPerPage(this.cu.MaxConsoleLogPerPage),this.yu.ajaxWatcher().initialize({requests:this.cu.HttpRequestHeadersAllowlist,responses:this.cu.HttpResponseHeadersAllowlist,maxAjaxPayloadLength:this.cu.MaxAjaxPayloadLength}),this.yu.perfWatcher().initialize({resourceUploader:this.yu.getResourceUploader(),recTimings:!!this.cu.RecordPerformanceResourceTiming,recImgs:!!this.cu.RecordPerformanceResourceImg,maxPerfMarksPerPage:this.cu.MaxPerfMarksPerPage}),this.Xt.initialize({canvasWatcherMode:t.Flags.CanvasWatcherMode,blocks:t.ElementBlocks,deferreds:t.ElementDeferreds,keeps:t.ElementKeeps,watches:t.ElementWatches}),this.Ve.initialize(t.UrlKeeps),this.Xt.initializeConsent(null!=n?n:!!t.Consented),"number"==typeof t.BundleUploadInterval&&(this.fu=t.BundleUploadInterval),h&&this.enableResourceUploading(),u&&t.AjaxWatches&&this.yu.ajaxWatcher().setWatches(t.AjaxWatches),a&&this.At.enableEasyBake(),f&&(this.hu=!0),this.yu.start(t.Flags)},t.prototype.fullyStarted=function(){this.Au&&this.Au()},t.prototype.enableResourceUploading=function(){this.wu=!0,this.yu.initResourceUploading()},t.prototype.flushPendingChildFrameInits=function(){if(this.du.length>0){for(var t=0;t0&&this.At.sendEvents(e,i);break;case du.RequestFrameId:if(!t)return;var s=this.Nu(t);void 0===s||(this.mu[s]=!1,this.Lu(t,s));case du.Unknown:}},t.prototype.Nu=function(t){for(var n=0,i=this.vu;n2e6))try{localStorage._fs_swan_song=i}catch(t){}},t.prototype.sing=function(){try{var t=this.purge();if(void 0===t)return;if(!(t.Bundles&&t.UserId&&t.SessionId&&t.PageId))return;t.OrgId||(t.OrgId=this.Uu.getOrgId()),t.Bundles.length>0&&(t.Bundles.length,this.Du(t))}catch(t){}},t.prototype.purge=function(){try{if("_fs_swan_song"in localStorage){var t=localStorage._fs_swan_song;return delete localStorage._fs_swan_song,pt(t)}}catch(t){}},t.prototype.Du=function(t,n){return void 0===n&&(n=0),(0,e.__awaiter)(this,void 0,Yn,function(){var i,r,s,o;return(0,e.__generator)(this,function(u){switch(u.label){case 0:if(i=null,!tt(t.Bundles)||0===t.Bundles.length||void 0===t.Bundles[0])return[2];1==t.Bundles.length&&(i=this._t.time.wallTime()-(t.LastBundleTime||0)),u.label=1;case 1:return u.trys.push([1,3,,4]),[4,this.Ho.bundle({bundle:t.Bundles[0],deltaT:i,isNewSession:t.IsNewSession,orgId:t.OrgId,pageId:t.PageId,recHost:t.RecHost,serverBundleTime:t.ServerBundleTime,serverPageStart:t.ServerPageStart,sessionId:t.SessionId,userId:t.UserId,version:t.Version})];case 2:return r=u.sent(),s=r[1],t.Bundles[0].Evts.length,t.Bundles[0].Seq,t.Bundles.shift(),t.Bundles.length>0&&this.Du((0,e.__assign)((0,e.__assign)({},t),{ServerBundleTime:s.BundleTime})),[3,4];case 3:return(o=u.sent())instanceof iu&&ru(o.status)?[2]:(this.Bu=new this.Fu(this.Du,this.Ho.exponentialBackoffMs(n,!0),this,t,n+1).start(),[3,4]);case 4:return[2];}})})},t}(),ju=function(){function t(){}return t.prototype.encode=function(t){return t},t}(),Ou=function(){function t(){this.dict={idx:-1,map:{}},this.nodeCount=1,this.startIdx=0}return t.prototype.encode=function(n){if(0==n.length)return[];var i,r,e=n[0],s=Object.prototype.hasOwnProperty.call(this.dict.map,e)?this.dict.map[e]:void 0,o=[],u=1;function a(){s?u>1?o.push([s.idx,u]):o.push(s.idx):o.push(e)}for(i=1;ithis._t.recording.bundleUploadInterval()?[4,this.aa()]:[3,4]):[2];case 3:e.sent(),e.label=4;case 4:return[3,6];case 5:if((r=e.sent())instanceof iu){if(ru(r.status))return 206==r.status?Tt.sendToBugsnag("Failed to send bundle, probably because of its large size","error"):r.status>=500&&Tt.sendToBugsnag("Failed to send bundle, recording outage likely","error"),this.ea&&this.ea(),[2]}else Tt.sendToBugsnag("Failed to send bundle, unknown err","error",{err:r});return this.qu=!0,this.Vu=this.$u+this.Ho.exponentialBackoffMs(this.Qu++,!1),[3,6];case 6:return[2];}})})},t.prototype.va=function(t){var n,i;return(0,e.__awaiter)(this,void 0,Yn,function(){var r,s,o,u;return(0,e.__generator)(this,function(e){switch(e.label){case 0:return this.Ou?(window,r=this.co.getMsSinceLastUserAcivity(),[4,this.Ho.bundle({bundle:t,deltaT:null,lastUserActivity:r,orgId:this.Uu.getOrgId(),pageId:this.Ou,serverBundleTime:this.Zu,serverPageStart:this.Mu,isNewSession:this.Gu,sessionId:null!==(n=this.Uu.getSessionId())&&void 0!==n?n:"",userId:this.Uu.getUserId(),version:this._t.recording.bundleApiVersion()})]):[2];case 1:return s=e.sent(),o=s[0],u=s[1],null===(i=this._t.recording.observer)||void 0===i||i.onBundleSent(o),o>this.Ju&&this.zu>16&&this._t.recording.splitPage(Wt.Size),window,[2,u];}})})},t.prototype.fa=function(t){if(0===t.Evts.length)return t;for(var n=[],i=0,r=t.Evts;i0},t.prototype.hasActiveEvents=function(){return this.da},t.prototype.pushEvent=function(t){Mu[t.Kind]||(this.da=!0),this.pa.When<0&&(this.pa.When=t.When),this.pa.Evts.push(t)},t}();function Hu(t,n){void 0===t&&(t=[]),void 0===n&&(n=0);for(var i="",r=0,e=t;r-1},t.prototype.ba=function(){return this.Dn.document.location.search.indexOf("_fs_preview=false")>-1},t.prototype.ya=function(){return!!this.wa.getValue(this.ga)},t}();function Uu(t){var n,i,r;return{Kind:Ot.CAPTURE_SOURCE,Args:[t.type,t.entrypoint,"dom",null===(i=null===(n=t.source)||void 0===n?void 0:n.integration)||void 0===i?void 0:i.slice(0,1024),!!(null===(r=t.source)||void 0===r?void 0:r.userInitiated)]}}function Fu(t){return(0,e.__awaiter)(this,void 0,Yn,function(){var n,i,r,s;return(0,e.__generator)(this,function(e){if(n=function(t){return"msCrypto"in t?t.msCrypto:t.crypto}(t),"function"==typeof(null==n?void 0:n.randomUUID))return[2,n.randomUUID()];for(i=new Uint8Array(16),n.getRandomValues(i),i[6]=15&i[6]|64,i[8]=63&i[8]|128,r=[],s=0;s=864e5)return Wu;var c=null!==(n=this.Sa.getLastUserActivityTimeMS())&&void 0!==n?n:u;return o.mathAbs(s-c)>=qu||(null!==(i=this.Sa.getPageCount())&&void 0!==i?i:0)>=250?Wu:e},t.prototype.start=function(){this.lastUserActivityTimeout.start(3e5)},t.prototype.stop=function(){this.lastUserActivityTimeout.stop()},t.prototype.ka=function(){return(0,e.__awaiter)(this,void 0,Yn,function(){var t;return(0,e.__generator)(this,function(n){return(t=this.Sa.getUserId())&&Bu(t)?[2,t]:[2,Fu(this._t.window)]})})},t.prototype.xa=function(){var t=this.co.getLastUserAcitivityTS();t!==this.lastUserActivityTS&&(this.lastUserActivityTS=t,this.Sa.setLastUserActivityTimeMS(t),this.start())},t}(),Vu=function(t){function n(n,i,r,e,s,o,u){void 0===r&&(r=!0),void 0===e&&(e=new Fo(n)),void 0===s&&(s=new Ku(n,i,e,r)),void 0===o&&(o=Zi),void 0===u&&(u=xu);var a,c=t.call(this,n,o,e,s,u)||this;return c.Ho=i,c.mo=s,c._a=!1,c.ko=!1,c.Aa=!1,s.onShutdown(function(){return c.shutdown(Wt.SettingsBlocked)}),c.Mt=c.Dn.document,c.Eo=0,c.Uu=n.recording.identity,c.Ia=new Lu(c.xu,c.Dn,c.Uu.getClientStore()),c.pu=_u.NoInfoYet,c.Ta=new Qu(n,e,c.Uu),a=function(t){if(c.yu.stop(Wt.Api),t){var n=c.Mt.getElementById(t);n&&c.Ca&&n.setAttribute("_fs_embed_token",c.Ca)}},c.Dn._fs_shutdown=a,c}return(0,e.__extends)(n,t),n.prototype.onDomLoad=function(){var n=this;t.prototype.onDomLoad.call(this),this._a=!0,this.Pa(function(){n.fireFsReady(n.ko)})},n.prototype.ja=function(){var t=R(this.Dn,"_fs_replay_flags");if(/[?&]_fs_force_session=true(&|#|$)/.test(location.search)&&(t+=",forceSession",this.Dn.history)){var n=location.search.replace(/(^\?|&)_fs_force_session=true(&|$)/,function(t,n,i){return i?n:""});this.Dn.history.replaceState({},"",this.Dn.location.href.replace(location.search,n))}return t},n.prototype.start=function(n,i,r){var s,o,u;return(0,e.__awaiter)(this,void 0,Yn,function(){var a,c,h,f,v,l,d,p,w,g,m,y,b,E,S,x,k,_,A,I,T,C,P,j=this;return(0,e.__generator)(this,function(e){switch(e.label){case 0:t.prototype.start.call(this,n,i,r),a=this.ja(),c=yi(this.Mt),h=c[0],f=c[1],O=this.Dn,M=0,K=0,v=null==O.screen?[M,K]:(M=parseInt(String(O.screen.width),10),K=parseInt(String(O.screen.height),10),[M=isNaN(M)?0:M,K=isNaN(K)?0:K]),l=v[0],d=v[1],p="",n||(p=this.Uu.getUserId()),w=null!==(u=null===(o=null===(s=this._t)||void 0===s?void 0:s.recording)||void 0===o?void 0:o.preroll)&&void 0!==u?u:-1,g=function(){return he(Mr(j.Dn),{source:"page",type:"base"})},m=function(){return he(j.Dn.location.href,{source:"page",type:"url"})},y=function(){return""===j.Mt.referrer?"":he(j.Mt.referrer,{source:"page",type:"referrer"})},b=function(t){var n,i="_fs_tab_id";try{var r=t.sessionStorage.getItem(i);if(r)return r;var e=Math.floor(1e17*Math.random()).toString(16);return t.sessionStorage.setItem(i,e),null!==(n=t.sessionStorage.getItem(i))&&void 0!==n?n:void 0}catch(t){return}}(this.Dn),E={OrgId:this.xu,UserId:p,Url:m(),Base:g(),Width:h,Height:f,ScreenWidth:l,ScreenHeight:d,SnippetVersion:V(this.Dn),Referrer:y(),Preroll:w,Doctype:dt(this.Mt),CompiledVersion:"11aa377d19",CompiledTimestamp:1678707725,AppId:this.Uu.getAppId(),TabId:b,PreviewMode:this.Ia.isPreviewMode()||void 0},a&&(E.ReplayFlags=a),e.label=1;case 1:return e.trys.push([1,5,,6]),S=this.Oa,[4,this.Ho.page(E)];case 2:return[4,S.apply(this,[e.sent()])];case 3:return P=e.sent(),this.isSafeResponse(P)?this.gu?[2]:(window,this.handleResponse(P),window,this.Ma(P.CookieDomain,P.UserIntId,P.SessionIntId,P.PageIntId,P.EmbedToken),P.Flags.UseStatelessConsent||this.Uu.getConsentStore().setConsentState(!!P.Consented),this.Ka(),P.PreviewMode&&this.Ra(),x=function(t){return R(t,"_fs_pagestart","function")}(this.Dn),x&&x(),this.At.enqueueFirst(this.yu.getNavigateEvent(this.Dn.location.href,Ot.ENTRY_NAVIGATE)),k=!!P.Consented,this.At.enqueueFirst({Kind:Ot.SYS_REPORTCONSENT,Args:[k,Bt.Document]}),_=dt(this.Mt),A=m(),I=y(),T=g(),this.At.enqueueFirst({Kind:Ot.SET_FRAME_BASE,Args:[he(Mr(this.Dn),{source:"event",type:Ot.SET_FRAME_BASE}),_,A,I]}),this.mo.setPageData({Kind:Ot.PAGE_DATA,Args:[A,T,h,f,l,d,V(this.Dn),I,_,w,p,P.PageStart,Et(this.Dn),this.Dn.navigator.userAgent,b,!!P.IsNewSession]}),this.At.enqueue({Kind:Ot.SCRIPT_COMPILED_VERSION,Args:["11aa377d19"]}),this.At.enqueue(Uu({type:"default"})),this.yu.addVisibilityChangeEvent(),this.addInitEvent(),[4,this.At.startPipeline({pageId:P.PageIntId,serverPageStart:P.PageStart,isNewSession:!!P.IsNewSession})]):[2,this.Ha()];case 4:return e.sent(),this.enqueueDocumentProperties(this.Mt),this.fullyStarted(),[3,6];case 5:return(C=e.sent())instanceof iu&&(P=C.data)&&P.user_id&&P.cookie_domain&&P.reason_code===en.ReasonBlockedTrafficRamping&&p!==P.user_id&&this.Ma(P.cookie_domain,P.user_id,"","",""),this.Ha(),[3,6];case 6:return[2];}var O,M,K})})},n.prototype.Ka=function(){var t=this;this.Aa=!0,this.Pa(function(){t.fireFsReady(t.ko)})},n.prototype.Ma=function(t,n,i,r,e){var s=this.Uu;s.setIds(this.Dn,t,n,i),this.Ca=e,this.Ia.write(),s.getUserId(),s.getSessionId()},n.prototype.Pa=function(t){var n,i;if(this._a&&this.Aa)if(null===(i=null===(n=this.ku)||void 0===n?void 0:n.Flags)||void 0===i?void 0:i.FetchIntegrations){var r=this.Mt.createElement("script");r.addEventListener("load",t),r.addEventListener("error",t),r.async=!0,r.src=this.zo+"//"+this.Eu+"/rec/integrations?OrgId="+this.xu,this.Mt.head.appendChild(r)}else t()},n.prototype.Ra=function(){var t="FullStory-preview-script";if(!this.Mt.getElementById(t)){var n=this.Mt.createElement("script");n.id=t,n.async=!0,n.src=this.zo+"//"+this.Su+"/s/fspreview.js",this.Mt.head.appendChild(n)}},n.prototype.Ha=function(){this.Iu&&this.Iu(),this.shutdown(Wt.SettingsBlocked),this.ko=!0,this.fireFsReady(this.ko)},n.prototype.Oa=function(t){var n;return(0,e.__awaiter)(this,void 0,Yn,function(){var i,r,s,o,u;return(0,e.__generator)(this,function(a){switch(a.label){case 0:return(i=(0,e.__assign)({},t)).Flags.UseStaticSettings?(r=this.Ia.isPreviewMode(),[4,this.Ho.settings({orgId:this.xu,previewMode:r,fallback:!1})["catch"](function(t){Tt.sendToBugsnag("Edge Rec settings error","error",{err:t})})]):[3,4];case 1:return(s=a.sent())?[3,3]:[4,this.Ho.settings({orgId:this.xu,previewMode:r,fallback:!0})["catch"](function(t){Tt.sendToBugsnag("Rs Rec settings error","error",{err:t})})];case 2:s=a.sent(),a.label=3;case 3:s&&(i=(0,e.__assign)((0,e.__assign)({},i),s)),a.label=4;case 4:return i.Flags.UseClientSideId?(this.Uu.setCookieDomain(this.Dn,i.CookieDomain),Bu(o=null!==(n=t.UserUUID)&&void 0!==n?n:"")&&this.Uu.setUserId(o),[4,this.Ta.createUserSessionPage()]):[3,6];case 5:u=a.sent(),this.Ta.start(),i=(0,e.__assign)((0,e.__assign)({},i),{UserIntId:u.userId,SessionIntId:u.sessionId,PageIntId:u.pageId,IsNewSession:u.isNewSession,PageStart:p()}),a.label=6;case 6:return i.Flags.UseStatelessConsent&&(i=(0,e.__assign)((0,e.__assign)({},i),{Consented:this.Uu.getConsentStore().getConsentState()})),[2,i];}})})},n.prototype.onMessageReceived=function(n,i){t.prototype.onMessageReceived.call(this,n,i),(null==n?void 0:n.parent)==this.Dn&&i[0]===du.EndPreviewMode&&this.Ia.clear()},n}(Cu),zu=function(){function t(t,n){void 0===n&&(n=new $u(t)),this.Dn=t,this.Na=n}return t.prototype.enqueueEvents=function(t,n){var i=null!=t?t:void 0;this.Na.postMessage(this.Dn.parent,[du.EvtBundle,n,i],i)},t.prototype.startPipeline=function(){},t.prototype.stopPipeline=function(){},t.prototype.flush=function(){return(0,e.__awaiter)(this,void 0,Yn,function(){return(0,e.__generator)(this,function(t){return[2]})})},t.prototype.singSwanSong=function(){},t.prototype.onShutdown=function(t){},t.prototype.setPageData=function(t){},t}(),$u=function(){function t(t){this.Dn=t}return t.prototype.postMessage=function(t,n,i){switch(n[0]){case du.EvtBundle:bu(this.Dn,n[0],vt(n[1]),i)||mu(t,n);break;case du.RequestFrameId:bu(this.Dn,n[0],"[]",i)||mu(t,n);break;default:n[0];}},t}(),Gu=function(t){function n(n,i,r,e,s){void 0===i&&(i=new $u(n.window)),void 0===r&&(r=new zu(n.window,i)),void 0===e&&(e=Zi),void 0===s&&(s=xu);var o=t.call(this,n,e,void 0,r,s)||this;return o.Na=i,o}return(0,e.__extends)(n,t),n.prototype.start=function(n,i,r){var e=this;t.prototype.start.call(this,n,i,r),this.La(),this.T.add(this.Dn,"load",!1,function(){e.yu.recordingIsDetached()&&e._t.recording.splitPage(Wt.FsShutdownFrame)}),this.yu.addVisibilityChangeEvent()},n.prototype.onMessageReceived=function(n,i){if(t.prototype.onMessageReceived.call(this,n,i),n===this.Dn.parent||n===this.Dn)switch(i[0]){case du.GreetFrame:this.La(i[1]);break;case du.SetFrameId:try{var r=i[1];if(!r)return void he(location.href,{source:"log",type:"debug"});this.Ua({frameId:r,parentIds:i[2],outerStartTime:i[3],scheme:i[4],script:i[5],appHost:i[6],orgId:i[7],initConfig:i[8],pageRsp:i[9],consentOverride:i[10],minimumWhen:i[11]})}catch(t){vt(i)}break;case du.SetConsent:this.setConsent(i[1]);break;case du.InitFrameMobile:try{var e=JSON.parse(i[1]),s=e.StartTime;if(i.length>2&&i[2]){var o=i[2];Object.prototype.hasOwnProperty.call(o,"ProtocolVersion")&&o.ProtocolVersion>=20180723&&Object.prototype.hasOwnProperty.call(o,"OuterStartTime")&&(s=o.OuterStartTime)}var u=e.Host;this.Ua({frameId:0,parentIds:[],outerStartTime:s,scheme:"https:",script:G(u),appHost:$(u),orgId:e.OrgId,initConfig:void 0,pageRsp:e.PageResponse,consentOverride:this.Xt.getConsent()})}catch(t){vt(i)}}},n.prototype.La=function(t){this.Eo&&this.Eo===t||0!=this.Eo&&this.Dn.parent&&this.Na.postMessage(this.Dn.parent,[du.RequestFrameId])},n.prototype.Ua=function(t){var n,i,r=this;if(this.Eo)this.Eo!==t.frameId?(this.Eo,t.frameId,this._t.recording.splitPage(Wt.FsShutdownFrame)):this.Eo;else if(he(location.href,{source:"log",type:"debug"}),t.frameId,this.zo=t.scheme,this.bu=t.script,this.Su=t.appHost,this.xu=t.orgId,this._u=t.initConfig,this.Eo=t.frameId,this.So=t.parentIds,t.pageRsp&&this.isSafeResponse(t.pageRsp)){if(!this.gu){var e=null!==(n=t.consentOverride)&&void 0!==n?n:!!t.pageRsp.Consented;this.handleResponse(t.pageRsp,e),this.fireFsReady(),this.At.enqueueFirst({Kind:Ot.SYS_REPORTCONSENT,Args:[e,Bt.Document]}),this.At.enqueueFirst({Kind:Ot.SET_FRAME_BASE,Args:[he(Mr(this.Dn),{source:"event",type:Ot.SET_FRAME_BASE}),dt(this.Dn.document)]}),this.At.enqueue({Kind:Ot.SCRIPT_COMPILED_VERSION,Args:["11aa377d19"]}),this.At.enqueue(Uu({type:"default"})),this.addInitEvent(),this.At.rebaseIframe(t.outerStartTime,null!==(i=t.minimumWhen)&&void 0!==i?i:0),this._t.time.setStartTime(t.outerStartTime),this.Ou&&this.At.startPipeline({pageId:this.Ou,serverPageStart:t.pageRsp.PageStart,isNewSession:!!t.pageRsp.IsNewSession,frameId:t.frameId,parentIds:t.parentIds}).then(function(){r.flushPendingChildFrameInits(),r.enqueueDocumentProperties(r.Dn.document),r.fullyStarted()})}}else this.shutdown(Wt.FsShutdownFrame)},n}(Cu),Xu=function(){function t(t,n,i){void 0===n&&(n=function(){}),void 0===i&&(i=!1),this.Mt=t,this.Fa=n,this.Da=i,this._cookies={},this._cookies=k(this.Mt)}return t.prototype.setDomain=function(t){this.Ba=t},t.prototype.getValue=function(t,n){var i=this._cookies[t];if(!i)try{i=localStorage[null!=n?n:t]}catch(t){}return i},t.prototype.setValue=function(t,n,i,r){if(null!=this.Ba&&!this.Da){var e=[];this._setCookie(t,n,i,e),this.Wa(null!=r?r:t,n,e,t),e.length>0&&this.Fa(e)}},t.prototype.setCookie=function(t,n,i){this._setCookie(t,n,i,[])},Object.defineProperty(t.prototype,"cookies",{get:function(){return this._cookies},enumerable:!1,configurable:!0}),t.prototype.clearCookie=function(t,n){if(this._cookies[t]&&(this.Mt.cookie=Ju(this.Ba,t,"","Thu, 01 Jan 1970 00:00:01 GMT"),delete this._cookies[t]),n)try{delete localStorage[n]}catch(t){}},t.prototype._setCookie=function(t,n,i,r){try{this.Mt.cookie=Ju(this.Ba,t,n,i),-1===this.Mt.cookie.indexOf(n)&&r.push([t,"cookie"])}finally{this._cookies=k(this.Mt)}},t.prototype.Wa=function(t,n,i,r){try{localStorage[t]=n,localStorage[t]!==n&&i.push([null!=r?r:t,"localStorage"])}catch(n){i.push([null!=r?r:t,"localStorage",String(n)])}},t}();function Ju(t,n,i,r){var e=n+"="+i;return e+="; domain="+function(t){return t?"."+encodeURIComponent(t):""}(t),e+="; Expires="+r+"; path=/; SameSite=Strict","https:"===location.protocol&&(e+="; Secure"),e}var Zu,Yu="fs_cid",ta=function(){function t(t){this.Sa=t,this.qa=1;var n=this.Sa.getValue(Yu,wn);this.Qa=function(t){var n={consent:Dt.RevokeConsent};if(!t)return n;var i=t.split(".");return i.length<1?n:(i[0],"1"===i[1]?{consent:Dt.GrantConsent}:n)}(n)}return t.prototype.getConsentState=function(){return this.Qa.consent},t.prototype.setConsentState=function(t){if(this.Qa.consent=t,t!==Dt.RevokeConsent){var n=this.Va(),i=this.za();this.Sa.setValue(Yu,n,i,wn)}else this.Sa.clearCookie(Yu,wn)},t.prototype.Va=function(){return[this.qa,this.Qa.consent===Dt.GrantConsent?1:0].join(".")},t.prototype.za=function(){return new Date(1e3*S()).toUTCString()},t}(),na="fs_lua",ia=function(){function t(t){this.qa=1,this.Sa=t;var n=this.Sa.getValue(na,gn);this.Qa=function(t){var n={lastUserActivityTime:void 0};if(!t)return n;var i=t.split(".");return i.length<1?n:(i[0],{lastUserActivityTime:_(i[1])})}(n)}return t.prototype.getLastUserActivityTimeMS=function(){return this.Qa.lastUserActivityTime},t.prototype.setLastUserActivityTimeMS=function(t){this.Qa.lastUserActivityTime=t;var n=this.Va(),i=this.za();this.Sa.setValue(na,n,i,gn)},t.prototype.Va=function(){var t;return[this.qa,null!==(t=this.Qa.lastUserActivityTime)&&void 0!==t?t:""].join(".")},t.prototype.za=function(){return new Date(p()+qu).toUTCString()},t}(),ra="fs_uid",ea=function(){function t(t,n,i,r){void 0===n&&(n=document),void 0===i&&(i=function(){}),void 0===r&&(r=!1),this.$a=void 0,this.wa=new Xu(n,i,r),this.Ga=new ta(this.wa),this.Xa=new ia(this.wa),this.Qa=this.Ja(t)}return t.prototype.Ja=function(t){var n=x(this.wa.getValue(ra,pn));return n&&n.orgId==t?n:{expirationAbsTimeSeconds:S(),orgId:t,userId:"",sessionId:"",appKeyHash:""}},t.prototype.getConsentStore=function(){return this.Ga},t.prototype.clear=function(){this.Xa.setLastUserActivityTimeMS(void 0),this.Qa.sessionStartTime=this.Qa.pageCount=void 0,this.Qa.userId=this.Qa.sessionId=this.Qa.appKeyHash=this.$a="",this.Qa.expirationAbsTimeSeconds=S(),this.Za()},t.prototype.create=function(t){this.Xa.setLastUserActivityTimeMS(t.lastUserActivityTime),this.Qa=(0,e.__assign)((0,e.__assign)({},this.Qa),t),this.Za()},t.prototype.getOrgId=function(){return this.Qa.orgId},t.prototype.getUserId=function(){return this.Qa.userId},t.prototype.setUserId=function(t){this.Qa.userId=t,this.Za()},t.prototype.getSessionId=function(){return this.Qa.sessionId},t.prototype.getAppKeyHash=function(){return this.Qa.appKeyHash},t.prototype.getCookies=function(){return this.wa.cookies},t.prototype.setAppId=function(t){this.$a=t,this.Qa.appKeyHash=qo(t),this.Za()},t.prototype.getAppId=function(){return this.$a},t.prototype.setSessionStartTimeMS=function(t){this.Qa.sessionStartTime=t,this.Za()},t.prototype.getSessionStartTimeMS=function(){return this.Qa.sessionStartTime},t.prototype.setLastUserActivityTimeMS=function(t){this.Xa.setLastUserActivityTimeMS(t)},t.prototype.getLastUserActivityTimeMS=function(){return this.Xa.getLastUserActivityTimeMS()},t.prototype.setPageCount=function(t){this.Qa.pageCount=t,this.Za()},t.prototype.getPageCount=function(){return this.Qa.pageCount},t.prototype.getClientStore=function(){return this.wa},t.prototype.setCookie=function(t,n,i){void 0===i&&(i=new Date(p()+6048e5).toUTCString()),this.wa.setCookie(t,n,i)},t.prototype.setCookieDomain=function(t,n){var i=n;(C(i)||i.match(/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/g))&&(i="");var r=function(t){return R(t,"_fs_cookie_domain")}(t);"string"==typeof r&&(i=r),this.wa.setDomain(i)},t.prototype.setIds=function(t,n,i,r){this.setCookieDomain(t,n),this.Qa.userId=i,this.Qa.sessionId=r,this.Za()},t.prototype.clearAppId=function(){return!!this.Qa.appKeyHash&&(this.$a="",this.Qa.appKeyHash="",this.Za(),!0)},t.prototype.encode=function(){var t,n,i,r=[this.Qa.userId,null!==(t=this.Qa.sessionId)&&void 0!==t?t:"",""+(null!==(n=this.Qa.sessionStartTime)&&void 0!==n?n:""),"",""+(null!==(i=this.Qa.pageCount)&&void 0!==i?i:"")].join(":"),e=["",this.Qa.orgId,r];return this.Qa.appKeyHash&&e.push(encodeURIComponent(this.Qa.appKeyHash)),e.push("/"+this.Qa.expirationAbsTimeSeconds),e.join("#")},t.prototype.Za=function(){var t=this.encode(),n=new Date(1e3*this.Qa.expirationAbsTimeSeconds).toUTCString();this.wa.setValue(ra,t,n,pn)},t}(),sa=((Zu={})[Xt.Document]={assetMapId:"str",releaseDatetime:"date",releaseVersion:"str"},Zu[Xt.Event]={},Zu[Xt.Page]={pageName:"str",releaseVersion:"str",releaseDatetime:"str"},Zu[Xt.User]={uid:"str",displayName:"str",email:"str"},Zu),oa={str:ua,bool:aa,real:ca,"int":ha,date:fa,strs:va(ua),bools:va(aa),reals:va(ca),ints:va(ha),dates:va(fa),objs:va(la),obj:la};function ua(t){return"string"==typeof t}function aa(t){return"boolean"==typeof t}function ca(t){return"number"==typeof t}function ha(t){return"number"==typeof t&&t-o.mathFloor(t)==0}function fa(t){return!(!t||(t.constructor===Date?isNaN(t):"number"!=typeof t&&"string"!=typeof t||isNaN(new Date(t))))}function va(t){return function(n){if(!(n instanceof Array))return!1;for(var i=0;i=0)return[void 0,Jt.FsId];var e=qo(r),s=void 0;return n&&n.Qa.appKeyHash&&n.Qa.appKeyHash!==e&&n.Qa.appKeyHash!==r&&(n.Qa.appKeyHash,s=Jt.NewUid),[r,s]}(f,this.Uu),l=v[0],d=v[1];if(!l)return Jt.FsId,{events:r};a.properties.uid=l,this.Uu.setAppId(l),d===Jt.NewUid&&(i=!0)}}Ea(t.source,"setVars",e),e(this.nc(s,wa(s,a.properties),u));break;default:(0,Ir.nt)(s,"Unsupported");}}catch(n){t.operation,n.message}return{events:r,reidentify:i}},t.prototype.nc=function(t,n,i,r){var e=vt(n.PayloadToSend),s=!!i&&"fs"!==i;switch(t){case Xt.Event:return{When:0,Kind:Ot.SYS_CUSTOM,Args:s?[r,e,i]:[r,e]};case Xt.Document:case Xt.Page:case Xt.User:return{When:0,Kind:Ot.SYS_SETVAR,Args:s?[t,e,i]:[t,e]};default:(0,Ir.nt)(t,"Unsupported");}},t.prototype.ic=function(t,n){var i=t.PayloadToSend;if(i&&"object"==typeof i){var r=0,e={};for(var s in i)if(!(s in this.Ya)){var o=i[s];this.Ya[s]={value:o,apiSource:n},e[s]=o,r++}if(0!==r)return{PayloadToSend:e,ValidationErrors:t.ValidationErrors}}},t}();function wa(t,n){var i=1500;return ga(function(){return--i},t,n)}var ga=function(t,n,i){var r,e,s={PayloadToSend:{},ValidationErrors:[]},u=function(i){var r=ga(t,n,i);return s.ValidationErrors=s.ValidationErrors.concat(r.ValidationErrors),r.PayloadToSend};for(var a in i)if(o.objectHasOwnProp(i,a)){if(t()<=0)break;var c=i[a],h=ya(n,a,c,s.ValidationErrors);if(h){var f=h.name;if("obj"!==h.type){if("objs"!==h.type)s.PayloadToSend[f]=ma(h.type,h.value);else{n!=Xt.Event&&s.ValidationErrors.push({Type:"vartype",FieldName:f,ValueType:"Array (unsupported)"});for(var v=[],l=0;l0&&(s.PayloadToSend[f]=v)}}else{var d=u(h.value),p=(e="_obj").length>(r=a).length||r.substring(r.length-e.length)!=e?f.substring(0,f.length-"_obj".length):f;s.PayloadToSend[p]=d}}else s.PayloadToSend[a]=ma("str",c)}return s};function ma(t,n){var i=n;return"str"==t&&"string"==typeof i&&(i=i.trim()),null==i||"date"!=t&&i.constructor!=Date||(i=function(t){var n=t.constructor===Date?t:new Date(t);try{return n.toISOString()}catch(t){return null}}(i)),i}function ya(t,n,i,r){var e=n,s=e,u=typeof i;if("undefined"===u)return r.push({Type:"vartype",FieldName:e,ValueType:u+" (unsupported)"}),null;var a=sa[t];if(o.objectHasOwnProp(a,e))return{name:e,type:a[e],value:i};var c=e.lastIndexOf("_");if(-1==c||!ba(e.substring(c+1))){var h=function(t){for(var n in oa)if(oa[n](t))return n;return null}(i);if(null==h)return i?r.push({Type:"vartype",FieldName:e}):r.push({Type:"vartype",FieldName:e,ValueType:"null (unsupported)"}),null;c=e.length,e=e+"_"+h}var f=e.substring(0,c),v=e.substring(c+1);if("object"===u&&!i)return r.push({Type:"vartype",FieldName:s,ValueType:"null (unsupported)"}),null;if(!da.test(f)){f=f.replace(/[^a-zA-Z0-9_]/g,"").replace(/^[0-9]+/,""),/[0-9]/.test(f[0])&&(f=f.substring(1)),r.push({Type:"varname",FieldName:s});var l=f+"_"+v;if(da.source,""==f)return null;e=l}return ba(v)?function(t,n){return oa[t](n)}(v,i)?{name:e,type:v,value:i}:(vt(i),"number"===u?u=i%1==0?"integer":"real":"object"==u&&null!=i&&i.constructor==Date&&(u=isNaN(i)?"invalid date":"date"),r.push({Type:"vartype",FieldName:s,ValueType:u}),null):(r.push({Type:"varname",FieldName:s}),null)}function ba(t){return!!oa[t]}function Ea(t,n,i){var r=Uu({source:t,type:"api",entrypoint:n});r&&i({When:0,Kind:r.Kind,Args:r.Args})}function Sa(t,n){return(0,e.__awaiter)(this,void 0,Yn,function(){var i,s,o,a,c;return(0,e.__generator)(this,function(h){switch(h.label){case 0:if(h.trys.push([0,2,,3]),gr||yr||function(t){return!!R(t,"_fs_use_polyfilled_apis","boolean")}(t))return[2,(0,e.__assign)((0,e.__assign)({},n),{status:r.Clean})];if(!t.document||n.status!==r.Unknown)return[2,n];if(i=function(t,n){var i=n.functions,s={},o=(0,e.__assign)({},n.helpers);if(o.functionToString=function(t,n){var i,r,e=null===(i=t["__core-js_shared__"])||void 0===i?void 0:i.inspectSource;if(e){var s=function(){return e(this)};if(ka(s,2))return s}var o=null===(r=t["__core-js_shared__"])||void 0===r?void 0:r["native-function-to-string"];if(ka(o))return o;var u=n.__zone_symbol__OriginalDelegate;return ka(u)?u:ka(n)?n:void 0}(t,o.functionToString),!o.functionToString)return n;var u=!1;for(var a in i)if(i[a]){if(s[a]=Ia(o.functionToString,i[a]),s[a]||(s[a]=Ta(o.functionToString,o,a)),!s[a])return n;s[a]!==i[a]&&(u=!0)}else s[a]=void 0;return{status:r.Clean,functions:u?s:i,helpers:o,errors:[]}}(t,n),i.status===r.Clean)return[2,i];(s=t.document.createElement("iframe")).id="FullStory-iframe",s.className="fs-hide",s.style.display="none",o=t.document.body||t.document.head||t.document.documentElement||t.document;try{o.appendChild(s)}catch(t){return[2,(0,e.__assign)((0,e.__assign)({},n),{status:r.Clean})]}return s.contentWindow?(a=u(s.contentWindow,r.Clean),s.parentNode&&s.parentNode.removeChild(s),a.status===r.UnrecoverableFailure?[2,(0,e.__assign)((0,e.__assign)({},n),{status:r.Clean})]:[4,xa(a,n)]):[2,(0,e.__assign)((0,e.__assign)({},n),{status:r.Clean})];case 1:return[2,h.sent()];case 2:return c=h.sent(),Tt.sendToBugsnag(c,"error"),[2,(0,e.__assign)((0,e.__assign)({},n),{status:r.Clean})];case 3:return[2];}})})}function xa(t,n){var i,s=new Yn(function(t){return i=t});return setTimeout(function(){try{t.functions.jsonParse("[]").push(0)}catch(t){i((0,e.__assign)((0,e.__assign)({},n),{status:r.Clean}))}i(t)}),s}function ka(t,n){var i;if(void 0===n&&(n=0),!t)return!1;try{t.call(function(){})}catch(t){return!1}var r=function(t){try{return void t.call(null)}catch(t){return(t.stack||"").replace(/__fs_nomangle_check_stack(.|\n)*$/,"")}},e=void 0;0!==n&&"number"==typeof Error.stackTraceLimit&&(e=Error.stackTraceLimit,Error.stackTraceLimit=Number.POSITIVE_INFINITY);var s=[function(){throw new Error("")},t],o=function __fs_nomangle_check_stack(){return s.map(r)}(),u=o[0],a=o[1];if(void 0!==e&&(Error.stackTraceLimit=e),!u||!a)return!1;for(var c="\n".charCodeAt(0),h=u.length>a.length?a.length:u.length,f=1,v=f;v=0}var Aa=["__zone_symbol__OriginalDelegate","nr@original"];function Ia(t,n){if(n){for(var i=0,r=Aa;i0&&this.lc[t].some(function(t){return!t.disconnected})},t.prototype.takeRecords=function(t){var n,i=null!==(n=this.lc[t.type])&&void 0!==n?n:[];if(0!==i.length)for(var r=0,e=i;r-1,!!ja.userAgent.match("CriOS")||"Google Inc."===Oa&&!Ma&&!Ka),Fa=/Firefox/.test(window.navigator.userAgent);function Da(t){if(!Fa)return!1;var n=window.navigator.userAgent.match(/Firefox\/(\d+)/);return!(!n||!n[1])&&parseInt(n[1],10)0||null===H){n="Init config rejected: "+R.unrecoverable.join(",\n"),k(t,new Error(n));break}R.recoverable.length>0&&(n="Init config partially rejected: "+R.recoverable.join(",\n")),a=H,x(t);break;default:(0,Ir.nt)(t,"invalid operation");}}catch(n){Tt.sendToBugsnag(n,"error"),k(t,n)}},A=0,I=p;A=0;u--)(e=t[u])&&(o=(s<3?e(o):s>3?e(n,i,o):e(n,i))||o);return s>3&&o&&Object.defineProperty(n,i,o),o}function a(t,n){return function(i,r){n(i,r,t)}}function c(t,n){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,n)}function h(t,n,i,r){return new(i||(i=Promise))(function(e,s){function o(t){try{a(r.next(t))}catch(t){s(t)}}function u(t){try{a(r["throw"](t))}catch(t){s(t)}}function a(t){var n;t.done?e(t.value):(n=t.value,n instanceof i?n:new i(function(t){t(n)})).then(o,u)}a((r=r.apply(t,n||[])).next())})}function f(t,n){var i,r,e,s,o={label:0,sent:function(){if(1&e[0])throw e[1];return e[1]},trys:[],ops:[]};return s={next:u(0),"throw":u(1),"return":u(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function u(s){return function(u){return function(s){if(i)throw new TypeError("Generator is already executing.");for(;o;)try{if(i=1,r&&(e=2&s[0]?r["return"]:s[0]?r["throw"]||((e=r["return"])&&e.call(r),0):r.next)&&!(e=e.call(r,s[1])).done)return e;switch(r=0,e&&(s=[2&s[0],e.value]),s[0]){case 0:case 1:e=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,r=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!((e=(e=o.trys).length>0&&e[e.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!e||s[1]>e[0]&&s[1]=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}function p(t,n){var i="function"==typeof Symbol&&t[Symbol.iterator];if(!i)return t;var r,e,s=i.call(t),o=[];try{for(;(void 0===n||n-->0)&&!(r=s.next()).done;)o.push(r.value)}catch(t){e={error:t}}finally{try{r&&!r.done&&(i=s["return"])&&i.call(s)}finally{if(e)throw e.error}}return o}function w(){for(var t=[],n=0;n1||u(t,n)})})}function u(t,n){try{(i=e[t](n)).value instanceof y?Promise.resolve(i.value.v).then(a,c):h(s[0][2],i)}catch(t){h(s[0][3],t)}var i}function a(t){u("next",t)}function c(t){u("throw",t)}function h(t,n){t(n),s.shift(),s.length&&u(s[0][0],s[0][1])}}function E(t){var n,i;return n={},r("next"),r("throw",function(t){throw t}),r("return"),n[Symbol.iterator]=function(){return this},n;function r(r,e){n[r]=t[r]?function(n){return(i=!i)?{value:y(t[r](n)),done:"return"===r}:e?e(n):n}:e}}function S(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,i=t[Symbol.asyncIterator];return i?i.call(t):(t=d(t),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(i){n[i]=t[i]&&function(n){return new Promise(function(r,e){!function(t,n,i,r){Promise.resolve(r).then(function(n){t({value:n,done:i})},n)}(r,e,(n=t[i](n)).done,n.value)})}}}function x(t,n){return Object.defineProperty?Object.defineProperty(t,"raw",{value:n}):t.raw=n,t}var k=Object.create?function(t,n){Object.defineProperty(t,"default",{enumerable:!0,value:n})}:function(t,n){t["default"]=n};function _(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var i in t)"default"!==i&&Object.prototype.hasOwnProperty.call(t,i)&&v(n,t,i);return k(n,t),n}function A(t){return t&&t.__esModule?t:{"default":t}}function I(t,n,i,r){if("a"===i&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof n?t!==n||!r:!n.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===i?r:"a"===i?r.call(t):r?r.value:n.get(t)}function T(t,n,i,r,e){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!e)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof n?t!==n||!e:!n.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?e.call(t,i):e?e.value=i:n.set(t,i),i}function C(t,n){if(null===n||"object"!=typeof n&&"function"!=typeof n)throw new TypeError("Cannot use 'in' operator on non-object");return"function"==typeof t?n===t:t.has(n)}}},n={};function i(r){var e=n[r];if(void 0!==e)return e.exports;var s=n[r]={exports:{}};return t[r](s,s.exports,i),s.exports}i.d=function(t,n){for(var r in n)i.o(n,r)&&!i.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},i.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i(248)}(); From 75c978151a7da7a620f9b7fbec2cac1fb0d75aca Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 18 Apr 2023 07:16:49 -0400 Subject: [PATCH 017/144] Update dependency elastic-apm-node to ^3.44.1 (main) (#154971) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [elastic-apm-node](https://togithub.com/elastic/apm-agent-nodejs) | [`^3.44.0` -> `^3.44.1`](https://renovatebot.com/diffs/npm/elastic-apm-node/3.44.1/3.44.1) | [![age](https://badges.renovateapi.com/packages/npm/elastic-apm-node/3.44.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/elastic-apm-node/3.44.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/elastic-apm-node/3.44.1/compatibility-slim/3.44.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/elastic-apm-node/3.44.1/confidence-slim/3.44.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/elastic/kibana). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 460a4769ad09a..e439f886118ee 100644 --- a/package.json +++ b/package.json @@ -770,7 +770,7 @@ "deepmerge": "^4.2.2", "del": "^6.1.0", "elastic-apm-http-client": "^11.0.1", - "elastic-apm-node": "^3.44.0", + "elastic-apm-node": "^3.44.1", "email-addresses": "^5.0.0", "execa": "^4.0.2", "expiry-js": "0.1.7", diff --git a/yarn.lock b/yarn.lock index 66fb913bb59c3..2776f05861c0c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14275,7 +14275,7 @@ elastic-apm-node@^3.38.0: traverse "^0.6.6" unicode-byte-truncate "^1.0.0" -elastic-apm-node@^3.44.0: +elastic-apm-node@^3.44.1: version "3.44.1" resolved "https://registry.yarnpkg.com/elastic-apm-node/-/elastic-apm-node-3.44.1.tgz#8a6e88fa9f3401455dddb87f9d5559f6d894964d" integrity sha512-hSf+S6GtQ+Ff5ueyQ1n2BAgAdiDOZ+XmHKFurzpB5/rvRFz6JbXLq+pcI11HMlK3ImiMVG9LQxHWMN6gqkqzYQ== From b6d4090de3b946f6cea157ffa2cc6cd6b9528103 Mon Sep 17 00:00:00 2001 From: Shahzad Date: Tue, 18 Apr 2023 13:31:40 +0200 Subject: [PATCH 018/144] [Synthetics UI] update sync service endpoints (#155054) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Alejandro Fernández Gómez --- .../getting_started/getting_started_page.tsx | 4 + .../service_api_client.test.ts | 114 ++++++++++++++++-- .../synthetics_service/service_api_client.ts | 60 +++++---- .../synthetics_service/synthetics_service.ts | 2 +- 4 files changed, 149 insertions(+), 31 deletions(-) diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/getting_started/getting_started_page.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/getting_started/getting_started_page.tsx index c63faf20904a4..f42b781089aea 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/getting_started/getting_started_page.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/getting_started/getting_started_page.tsx @@ -29,6 +29,7 @@ import { setAddingNewPrivateLocation, getAgentPoliciesAction, selectAgentPolicies, + cleanMonitorListState, } from '../../state'; import { MONITOR_ADD_ROUTE } from '../../../../../common/constants/ui'; import { PrivateLocation } from '../../../../../common/runtime_types'; @@ -46,6 +47,9 @@ export const GettingStartedPage = () => { if (canReadAgentPolicies) { dispatch(getAgentPoliciesAction.get()); } + return () => { + dispatch(cleanMonitorListState()); + }; }, [canReadAgentPolicies, dispatch]); useBreadcrumbs([{ text: MONITORING_OVERVIEW_LABEL }]); // No extra breadcrumbs on overview diff --git a/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.test.ts b/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.test.ts index b65d4a30e0b62..22ec8e8a3213e 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.test.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.test.ts @@ -177,7 +177,6 @@ describe('callAPI', () => { 1, { isEdit: undefined, - runOnce: undefined, monitors: testMonitors.filter((monitor: any) => monitor.locations.some((loc: any) => loc.id === 'us_central') ), @@ -192,7 +191,6 @@ describe('callAPI', () => { 2, { isEdit: undefined, - runOnce: undefined, monitors: testMonitors.filter((monitor: any) => monitor.locations.some((loc: any) => loc.id === 'us_central_qa') ), @@ -207,7 +205,6 @@ describe('callAPI', () => { 3, { isEdit: undefined, - runOnce: undefined, monitors: testMonitors.filter((monitor: any) => monitor.locations.some((loc: any) => loc.id === 'us_central_staging') ), @@ -284,15 +281,15 @@ describe('callAPI', () => { }); expect(logger.debug).toHaveBeenNthCalledWith( 2, - 'Successfully called service location https://service.dev with method POST with 4 monitors ' + 'Successfully called service location https://service.devundefined with method POST with 4 monitors' ); expect(logger.debug).toHaveBeenNthCalledWith( 4, - 'Successfully called service location https://qa.service.elstc.co with method POST with 4 monitors ' + 'Successfully called service location https://qa.service.elstc.coundefined with method POST with 4 monitors' ); expect(logger.debug).toHaveBeenNthCalledWith( 6, - 'Successfully called service location https://qa.service.stg.co with method POST with 1 monitors ' + 'Successfully called service location https://qa.service.stg.coundefined with method POST with 1 monitors' ); }); @@ -320,7 +317,6 @@ describe('callAPI', () => { coreStart: mockCoreStart, } as UptimeServerSetup ); - apiClient.locations = testLocations; const output = { hosts: ['https://localhost:9200'], api_key: '12345' }; @@ -354,6 +350,110 @@ describe('callAPI', () => { url: 'https://service.dev/monitors', }); }); + + it('Calls the `/run` endpoint when calling `runOnce`', async () => { + const axiosSpy = (axios as jest.MockedFunction).mockResolvedValue({ + status: 200, + statusText: 'ok', + headers: {}, + config: {}, + data: { allowed: true, signupUrl: 'http://localhost:666/example' }, + }); + + const apiClient = new ServiceAPIClient( + logger, + { + manifestUrl: 'http://localhost:8080/api/manifest', + tls: { certificate: 'test-certificate', key: 'test-key' } as any, + }, + { isDev: true, stackVersion: '8.7.0' } as UptimeServerSetup + ); + + apiClient.locations = testLocations; + + const output = { hosts: ['https://localhost:9200'], api_key: '12345' }; + + await apiClient.runOnce({ + monitors: testMonitors, + output, + licenseLevel: 'trial', + }); + + expect(axiosSpy).toHaveBeenNthCalledWith(1, { + data: { + monitors: request1, + is_edit: undefined, + output, + stack_version: '8.7.0', + license_level: 'trial', + }, + headers: { + 'x-kibana-version': '8.7.0', + }, + httpsAgent: expect.objectContaining({ + options: { + rejectUnauthorized: true, + path: null, + cert: 'test-certificate', + key: 'test-key', + }, + }), + method: 'POST', + url: 'https://service.dev/run', + }); + }); + + it('Calls the `/monitors/sync` endpoint when calling `syncMonitors`', async () => { + const axiosSpy = (axios as jest.MockedFunction).mockResolvedValue({ + status: 200, + statusText: 'ok', + headers: {}, + config: {}, + data: { allowed: true, signupUrl: 'http://localhost:666/example' }, + }); + + const apiClient = new ServiceAPIClient( + logger, + { + manifestUrl: 'http://localhost:8080/api/manifest', + tls: { certificate: 'test-certificate', key: 'test-key' } as any, + }, + { isDev: true, stackVersion: '8.7.0' } as UptimeServerSetup + ); + + apiClient.locations = testLocations; + + const output = { hosts: ['https://localhost:9200'], api_key: '12345' }; + + await apiClient.syncMonitors({ + monitors: testMonitors, + output, + licenseLevel: 'trial', + }); + + expect(axiosSpy).toHaveBeenNthCalledWith(1, { + data: { + monitors: request1, + is_edit: undefined, + output, + stack_version: '8.7.0', + license_level: 'trial', + }, + headers: { + 'x-kibana-version': '8.7.0', + }, + httpsAgent: expect.objectContaining({ + options: { + rejectUnauthorized: true, + path: null, + cert: 'test-certificate', + key: 'test-key', + }, + }), + method: 'PUT', + url: 'https://service.dev/monitors/sync', + }); + }); }); const testLocations: PublicLocations = [ diff --git a/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.ts b/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.ts index 362fffea3a5a8..bfc872f3680a8 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/service_api_client.ts @@ -25,7 +25,7 @@ export interface ServiceData { hosts: string[]; api_key: string; }; - runOnce?: boolean; + endpoint?: 'monitors' | 'runOnce' | 'sync'; isEdit?: boolean; licenseLevel: string; } @@ -81,7 +81,7 @@ export class ServiceAPIClient { } async post(data: ServiceData) { - return this.callAPI('PUT', data); + return this.callAPI('POST', data); } async put(data: ServiceData) { @@ -93,7 +93,11 @@ export class ServiceAPIClient { } async runOnce(data: ServiceData) { - return this.callAPI('POST', { ...data, runOnce: true }); + return this.callAPI('POST', { ...data, endpoint: 'runOnce' }); + } + + async syncMonitors(data: ServiceData) { + return this.callAPI('PUT', { ...data, endpoint: 'sync' }); } addVersionHeader(req: AxiosRequestConfig) { @@ -112,7 +116,7 @@ export class ServiceAPIClient { const url = this.locations[Math.floor(Math.random() * this.locations.length)].url; /* url is required for service locations, but omitted for private locations. - /* this.locations is only service locations */ + /* this.locations is only service locations */ const httpsAgent = this.getHttpsAgent(url); if (httpsAgent) { @@ -138,7 +142,7 @@ export class ServiceAPIClient { async callAPI( method: 'POST' | 'PUT' | 'DELETE', - { monitors: allMonitors, output, runOnce, isEdit, licenseLevel }: ServiceData + { monitors: allMonitors, output, endpoint, isEdit, licenseLevel }: ServiceData ) { if (this.username === TEST_SERVICE_USERNAME) { // we don't want to call service while local integration tests are running @@ -154,25 +158,24 @@ export class ServiceAPIClient { locations?.find((loc) => loc.id === id && loc.isServiceManaged) ); if (locMonitors.length > 0) { + const promise = this.callServiceEndpoint( + { monitors: locMonitors, isEdit, endpoint, output, licenseLevel }, + method, + url + ); promises.push( - rxjsFrom( - this.callServiceEndpoint( - { monitors: locMonitors, isEdit, runOnce, output, licenseLevel }, - method, - url - ) - ).pipe( + rxjsFrom(promise).pipe( tap((result) => { this.logger.debug(result.data); this.logger.debug( - `Successfully called service location ${url} with method ${method} with ${locMonitors.length} monitors ` + `Successfully called service location ${url}${result.request?.path} with method ${method} with ${locMonitors.length} monitors` ); }), catchError((err: AxiosError<{ reason: string; status: number }>) => { pushErrors.push({ locationId: id, error: err.response?.data! }); const reason = err.response?.data?.reason ?? ''; - err.message = `Failed to call service location ${url} with method ${method} with ${locMonitors.length} monitors: ${err.message}, ${reason}`; + err.message = `Failed to call service location ${url}${err.request?.path} with method ${method} with ${locMonitors.length} monitors: ${err.message}, ${reason}`; this.logger.error(err); sendErrorTelemetryEvents(this.logger, this.server.telemetry, { reason: err.response?.data?.reason, @@ -197,19 +200,34 @@ export class ServiceAPIClient { } async callServiceEndpoint( - { monitors, output, runOnce, isEdit, licenseLevel }: ServiceData, + { monitors, output, endpoint = 'monitors', isEdit, licenseLevel }: ServiceData, method: 'POST' | 'PUT' | 'DELETE', - url: string + baseUrl: string ) { // don't need to pass locations to heartbeat const monitorsStreams = monitors.map(({ locations, ...rest }) => convertToDataStreamFormat(rest) ); + let url = baseUrl; + switch (endpoint) { + case 'monitors': + url += '/monitors'; + break; + case 'runOnce': + url += '/run'; + break; + case 'sync': + url += '/monitors/sync'; + break; + } + + const authHeader = this.authorization ? { Authorization: this.authorization } : undefined; + return axios( this.addVersionHeader({ method, - url: url + (runOnce ? '/run' : '/monitors'), + url, data: { monitors: monitorsStreams, output, @@ -217,12 +235,8 @@ export class ServiceAPIClient { is_edit: isEdit, license_level: licenseLevel, }, - headers: this.authorization - ? { - Authorization: this.authorization, - } - : undefined, - httpsAgent: this.getHttpsAgent(url), + headers: authHeader, + httpsAgent: this.getHttpsAgent(baseUrl), }) ); } diff --git a/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts b/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts index 10b20e819abb0..dd3af249aa3e7 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts @@ -369,7 +369,7 @@ export class SyntheticsService { this.logger.debug(`${monitors.length} monitors will be pushed to synthetics service.`); - service.syncErrors = await this.apiClient.put({ + service.syncErrors = await this.apiClient.syncMonitors({ monitors, output, licenseLevel: license.type, From 9d30965a1dc4c40eed940d1339d549ddc72c8217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Fern=C3=A1ndez=20Haro?= Date: Tue, 18 Apr 2023 14:10:57 +0200 Subject: [PATCH 019/144] Allow using the `--serverless` CLI flag in serverless-capable distros (#155009) --- src/cli/serve/serve.js | 41 +++++++++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 10 deletions(-) diff --git a/src/cli/serve/serve.js b/src/cli/serve/serve.js index 4a875d6955428..9facf94408235 100644 --- a/src/cli/serve/serve.js +++ b/src/cli/serve/serve.js @@ -78,25 +78,43 @@ const configPathCollector = pathCollector(); const pluginPathCollector = pathCollector(); /** - * @param {string} name - * @param {string[]} configs - * @param {'push' | 'unshift'} method + * @param {string} name The config file name + * @returns {boolean} Whether the file exists */ -function maybeAddConfig(name, configs, method) { +function configFileExists(name) { const path = resolve(getConfigDirectory(), name); try { - if (statSync(path).isFile()) { - configs[method](path); - } + return statSync(path).isFile(); } catch (err) { if (err.code === 'ENOENT') { - return; + return false; } throw err; } } +/** + * @returns {boolean} Whether the distribution can run in Serverless mode + */ +function isServerlessCapableDistribution() { + // For now, checking if the `serverless.yml` config file exists should be enough + // We could also check the following as well, but I don't think it's necessary: + // VALID_SERVERLESS_PROJECT_MODE.some((projectType) => configFileExists(`serverless.${projectType}.yml`)) + return configFileExists('serverless.yml'); +} + +/** + * @param {string} name + * @param {string[]} configs + * @param {'push' | 'unshift'} method + */ +function maybeAddConfig(name, configs, method) { + if (configFileExists(name)) { + configs[method](resolve(getConfigDirectory(), name)); + } +} + /** * @returns {string[]} */ @@ -233,8 +251,11 @@ export default function (program) { .option( '--run-examples', 'Adds plugin paths for all the Kibana example plugins and runs with no base path' - ) - .option('--serverless ', 'Start Kibana in a serverless project mode'); + ); + } + + if (isServerlessCapableDistribution()) { + command.option('--serverless ', 'Start Kibana in a serverless project mode'); } if (DEV_MODE_SUPPORTED) { From 56459aed5854e87f6336b4f2d22d9bede0cdef60 Mon Sep 17 00:00:00 2001 From: Marco Antonio Ghiani Date: Tue, 18 Apr 2023 14:14:53 +0200 Subject: [PATCH 020/144] [Infrastructure UI] Dinamically set sticky bar position for Hosts View (#155139) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 📓 Summary Closes #155114 Instead of having a fixed value for the sticky bar position, we now set it accordingly to the top position of the main app container. https://user-images.githubusercontent.com/34506779/232760797-c91f8ade-b1bc-4921-9ef7-30d4647219b5.mov Co-authored-by: Marco Antonio Ghiani --- x-pack/plugins/infra/public/apps/metrics_app.tsx | 4 +++- .../hosts/components/unified_search_bar.tsx | 14 ++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/infra/public/apps/metrics_app.tsx b/x-pack/plugins/infra/public/apps/metrics_app.tsx index 799cf83b4ee44..16f19523b4591 100644 --- a/x-pack/plugins/infra/public/apps/metrics_app.tsx +++ b/x-pack/plugins/infra/public/apps/metrics_app.tsx @@ -22,6 +22,8 @@ import { CommonInfraProviders, CoreProviders } from './common_providers'; import { prepareMountElement } from './common_styles'; import { SourceProvider } from '../containers/metrics_source'; +export const METRICS_APP_DATA_TEST_SUBJ = 'infraMetricsPage'; + export const renderApp = ( core: CoreStart, plugins: InfraClientStartDeps, @@ -30,7 +32,7 @@ export const renderApp = ( ) => { const storage = new Storage(window.localStorage); - prepareMountElement(element, 'infraMetricsPage'); + prepareMountElement(element, METRICS_APP_DATA_TEST_SUBJ); ReactDOM.render( { const StickyContainer = (props: { children: React.ReactNode }) => { const { euiTheme } = useEuiTheme(); + const top = useMemo(() => { + const wrapper = document.querySelector(`[data-test-subj="${METRICS_APP_DATA_TEST_SUBJ}"]`); + if (!wrapper) { + return `calc(${euiTheme.size.xxxl} * 2)`; + } + + return `${wrapper.getBoundingClientRect().top}px`; + }, [euiTheme]); + return ( Date: Tue, 18 Apr 2023 14:15:34 +0200 Subject: [PATCH 021/144] Update email.asciidoc: Remove reference to Elastic Cloud email allowlist. (#153854) Removes the warning about the email allowlist in Elastic Cloud from the docs. It is not necessary anymore to allowlist individual email addresses in Elastic Cloud. The connector can now be used immediately without any additional config. Instead I added a link to the list of limitations for the Elastic Cloud connector (rate-limit etc.) --- docs/management/connectors/action-types/email.asciidoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/management/connectors/action-types/email.asciidoc b/docs/management/connectors/action-types/email.asciidoc index 6b2684c1a15b4..65bc85a7d7133 100644 --- a/docs/management/connectors/action-types/email.asciidoc +++ b/docs/management/connectors/action-types/email.asciidoc @@ -234,14 +234,12 @@ is considered `false`. Typically, `port: 465` uses `secure: true`, and [float] [[elasticcloud]] ==== Sending email from Elastic Cloud - -IMPORTANT: To receive notifications, the email addresses must be added to an - link:{cloud}/ec-watcher.html#ec-watcher-allowlist[allowlist] in the - Elasticsearch Service Console. Use the preconfigured email connector (`Elastic-Cloud-SMTP`) to send emails from Elastic Cloud. +NOTE: For more information on the preconfigured email connector, see link:{cloud}/ec-watcher.html#ec-cloud-email-service-limits[Elastic Cloud email service limits]. + [float] [[gmail]] ==== Sending email from Gmail From 9f126a95b09211ac439abdaf973e356657b32957 Mon Sep 17 00:00:00 2001 From: Josh Dover <1813008+joshdover@users.noreply.github.com> Date: Tue, 18 Apr 2023 14:20:52 +0200 Subject: [PATCH 022/144] [Fleet] Add support for dynamic_namespace and dynamic_dataset (#154732) Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../plugins/fleet/common/types/models/epm.ts | 2 + .../common/types/models/package_policy.ts | 6 + ...kage_policies_to_agent_permissions.test.ts | 54 +++++++- .../package_policies_to_agent_permissions.ts | 26 ++-- .../server/services/epm/archive/parse.test.ts | 51 +++++++ .../server/services/epm/archive/parse.ts | 10 +- .../server/services/package_policy.test.ts | 36 +++++ .../fleet/server/services/package_policy.ts | 24 +++- .../server/types/models/package_policy.ts | 2 + .../agent_policy_datastream_permissions.ts | 127 ++++++++++++++++++ .../apis/agent_policy/index.js | 3 +- .../test_logs/agent/stream/log.yml.hbs | 4 + .../data_stream/test_logs/fields/ecs.yml | 6 + .../data_stream/test_logs/fields/fields.yml | 16 +++ .../0.2.0/data_stream/test_logs/manifest.yml | 20 +++ .../test_metrics/agent/stream/cpu.yml.hbs | 6 + .../data_stream/test_metrics/fields/ecs.yml | 6 + .../test_metrics/fields/fields.yml | 16 +++ .../data_stream/test_metrics/manifest.yml | 31 +++++ .../dynamic_datastream/0.2.0/docs/README.md | 3 + .../dynamic_datastream/0.2.0/manifest.yml | 21 +++ 21 files changed, 451 insertions(+), 19 deletions(-) create mode 100644 x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy_datastream_permissions.ts create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/agent/stream/log.yml.hbs create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/ecs.yml create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/fields.yml create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/manifest.yml create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/agent/stream/cpu.yml.hbs create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/ecs.yml create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/fields.yml create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/manifest.yml create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/docs/README.md create mode 100644 x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/manifest.yml diff --git a/x-pack/plugins/fleet/common/types/models/epm.ts b/x-pack/plugins/fleet/common/types/models/epm.ts index 41974a5fa04d5..86dc732e9648e 100644 --- a/x-pack/plugins/fleet/common/types/models/epm.ts +++ b/x-pack/plugins/fleet/common/types/models/epm.ts @@ -363,6 +363,8 @@ export interface RegistryElasticsearch { 'ingest_pipeline.name'?: string; source_mode?: 'default' | 'synthetic'; index_mode?: 'time_series'; + dynamic_dataset?: boolean; + dynamic_namespace?: boolean; } export interface RegistryDataStreamProperties { diff --git a/x-pack/plugins/fleet/common/types/models/package_policy.ts b/x-pack/plugins/fleet/common/types/models/package_policy.ts index a0609a5c5be52..55e75a50c3c42 100644 --- a/x-pack/plugins/fleet/common/types/models/package_policy.ts +++ b/x-pack/plugins/fleet/common/types/models/package_policy.ts @@ -30,9 +30,15 @@ export interface NewPackagePolicyInputStream { dataset: string; type: string; elasticsearch?: { + // TODO: these don't really need to be defined in the package policy schema and could be pulled directly from + // the package where needed. + dynamic_dataset?: boolean; + dynamic_namespace?: boolean; privileges?: { indices?: string[]; }; + + // Package policy specific values index_mode?: string; source_mode?: string; }; diff --git a/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.test.ts b/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.test.ts index 774fe790f9aa5..1f5ea87c6d6f9 100644 --- a/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.test.ts +++ b/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.test.ts @@ -9,6 +9,7 @@ jest.mock('../epm/packages'); import type { PackagePolicy, RegistryDataStream } from '../../types'; +import type { DataStreamMeta } from './package_policies_to_agent_permissions'; import { getDataStreamPrivileges, storedPackagePoliciesToAgentPermissions, @@ -404,7 +405,7 @@ describe('getDataStreamPrivileges()', () => { type: 'logs', dataset: 'test', hidden: true, - } as RegistryDataStream; + } as DataStreamMeta; const privileges = getDataStreamPrivileges(dataStream, 'namespace'); expect(privileges).toMatchObject({ @@ -420,7 +421,7 @@ describe('getDataStreamPrivileges()', () => { elasticsearch: { privileges: { indices: ['read', 'monitor'] }, }, - } as RegistryDataStream; + } as DataStreamMeta; const privileges = getDataStreamPrivileges(dataStream, 'namespace'); expect(privileges).toMatchObject({ @@ -428,4 +429,53 @@ describe('getDataStreamPrivileges()', () => { privileges: ['read', 'monitor'], }); }); + + it('sets a wildcard namespace when dynamic_namespace: true', () => { + const dataStream = { + type: 'logs', + dataset: 'test', + elasticsearch: { + dynamic_namespace: true, + }, + } as DataStreamMeta; + const privileges = getDataStreamPrivileges(dataStream, 'namespace'); + + expect(privileges).toMatchObject({ + names: ['logs-test-*'], + privileges: ['auto_configure', 'create_doc'], + }); + }); + + it('sets a wildcard dataset when dynamic_dataset: true', () => { + const dataStream = { + type: 'logs', + dataset: 'test', + elasticsearch: { + dynamic_dataset: true, + }, + } as DataStreamMeta; + const privileges = getDataStreamPrivileges(dataStream, 'namespace'); + + expect(privileges).toMatchObject({ + names: ['logs-*-namespace'], + privileges: ['auto_configure', 'create_doc'], + }); + }); + + it('sets a wildcard namespace and dataset when dynamic_namespace: true and dynamic_dataset: true', () => { + const dataStream = { + type: 'logs', + dataset: 'test', + elasticsearch: { + dynamic_dataset: true, + dynamic_namespace: true, + }, + } as DataStreamMeta; + const privileges = getDataStreamPrivileges(dataStream, 'namespace'); + + expect(privileges).toMatchObject({ + names: ['logs-*-*'], + privileges: ['auto_configure', 'create_doc'], + }); + }); }); diff --git a/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.ts b/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.ts index 974ec1221dc7c..02c44024421ce 100644 --- a/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.ts +++ b/x-pack/plugins/fleet/server/services/agent_policies/package_policies_to_agent_permissions.ts @@ -135,29 +135,37 @@ export async function storedPackagePoliciesToAgentPermissions( return Object.fromEntries(await Promise.all(permissionEntries)); } -interface DataStreamMeta { +export interface DataStreamMeta { type: string; dataset: string; dataset_is_prefix?: boolean; hidden?: boolean; elasticsearch?: { privileges?: RegistryDataStreamPrivileges; + dynamic_namespace?: boolean; + dynamic_dataset?: boolean; }; } export function getDataStreamPrivileges(dataStream: DataStreamMeta, namespace: string = '*') { - let index = `${dataStream.type}-${dataStream.dataset}`; - - if (dataStream.dataset_is_prefix) { - index = `${index}.*`; + let index = dataStream.hidden ? `.${dataStream.type}-` : `${dataStream.type}-`; + + // Determine dataset + if (dataStream.elasticsearch?.dynamic_dataset) { + index += `*`; + } else if (dataStream.dataset_is_prefix) { + index += `${dataStream.dataset}.*`; + } else { + index += dataStream.dataset; } - if (dataStream.hidden) { - index = `.${index}`; + // Determine namespace + if (dataStream.elasticsearch?.dynamic_namespace) { + index += `-*`; + } else { + index += `-${namespace}`; } - index += `-${namespace}`; - const privileges = dataStream?.elasticsearch?.privileges?.indices?.length ? dataStream.elasticsearch.privileges.indices : PACKAGE_POLICY_DEFAULT_INDEX_PRIVILEGES; diff --git a/x-pack/plugins/fleet/server/services/epm/archive/parse.test.ts b/x-pack/plugins/fleet/server/services/epm/archive/parse.test.ts index 444c095ace4b3..b7c2628eab19e 100644 --- a/x-pack/plugins/fleet/server/services/epm/archive/parse.test.ts +++ b/x-pack/plugins/fleet/server/services/epm/archive/parse.test.ts @@ -193,6 +193,24 @@ describe('parseDataStreamElasticsearchEntry', () => { }, }); }); + it('Should handle dynamic_dataset', () => { + expect( + parseDataStreamElasticsearchEntry({ + dynamic_dataset: true, + }) + ).toEqual({ + dynamic_dataset: true, + }); + }); + it('Should handle dynamic_namespace', () => { + expect( + parseDataStreamElasticsearchEntry({ + dynamic_namespace: true, + }) + ).toEqual({ + dynamic_namespace: true, + }); + }); }); describe('parseTopLevelElasticsearchEntry', () => { @@ -499,6 +517,39 @@ describe('parseAndVerifyDataStreams', () => { }, ]); }); + + it('should parse dotted elasticsearch keys', async () => { + expect( + parseAndVerifyDataStreams({ + paths: ['input-only-0.1.0/data_stream/stream1/manifest.yml'], + pkgName: 'input-only', + pkgVersion: '0.1.0', + manifests: { + 'input-only-0.1.0/data_stream/stream1/manifest.yml': Buffer.from( + ` + title: Custom Logs + type: logs + dataset: ds + version: 0.1.0 + elasticsearch.dynamic_dataset: true`, + 'utf8' + ), + }, + }) + ).toEqual([ + { + dataset: 'ds', + elasticsearch: { + dynamic_dataset: true, + }, + package: 'input-only', + path: 'stream1', + release: 'ga', + title: 'Custom Logs', + type: 'logs', + }, + ]); + }); }); describe('parseAndVerifyStreams', () => { diff --git a/x-pack/plugins/fleet/server/services/epm/archive/parse.ts b/x-pack/plugins/fleet/server/services/epm/archive/parse.ts index 8ec5312aa1484..a55276dc621e3 100644 --- a/x-pack/plugins/fleet/server/services/epm/archive/parse.ts +++ b/x-pack/plugins/fleet/server/services/epm/archive/parse.ts @@ -324,7 +324,7 @@ export function parseAndVerifyDataStreams(opts: { streams: manifestStreams, elasticsearch, ...restOfProps - } = manifest; + } = expandDottedObject(manifest); if (!(dataStreamTitle && type)) { throw new PackageInvalidArchiveError( @@ -578,6 +578,14 @@ export function parseDataStreamElasticsearchEntry( parsedElasticsearchEntry.index_mode = expandedElasticsearch.index_mode; } + if (expandedElasticsearch?.dynamic_dataset) { + parsedElasticsearchEntry.dynamic_dataset = expandedElasticsearch.dynamic_dataset; + } + + if (expandedElasticsearch?.dynamic_namespace) { + parsedElasticsearchEntry.dynamic_namespace = expandedElasticsearch.dynamic_namespace; + } + return parsedElasticsearchEntry; } diff --git a/x-pack/plugins/fleet/server/services/package_policy.test.ts b/x-pack/plugins/fleet/server/services/package_policy.test.ts index 314dc6c5f1bd1..ab1555270e710 100644 --- a/x-pack/plugins/fleet/server/services/package_policy.test.ts +++ b/x-pack/plugins/fleet/server/services/package_policy.test.ts @@ -4956,6 +4956,42 @@ describe('_applyIndexPrivileges()', () => { expect(streamOut).toEqual(inputStream); }); + it('should apply dynamic_dataset', () => { + const packageStream = createPackageStream(); + packageStream.elasticsearch = { dynamic_dataset: true }; + const inputStream = createInputStream(); + const expectedStream = { + ...inputStream, + data_stream: { + ...inputStream.data_stream, + elasticsearch: { + dynamic_dataset: true, + }, + }, + }; + + const streamOut = _applyIndexPrivileges(packageStream, inputStream); + expect(streamOut).toEqual(expectedStream); + }); + + it('should apply dynamic_namespace', () => { + const packageStream = createPackageStream(); + packageStream.elasticsearch = { dynamic_namespace: true }; + const inputStream = createInputStream(); + const expectedStream = { + ...inputStream, + data_stream: { + ...inputStream.data_stream, + elasticsearch: { + dynamic_namespace: true, + }, + }, + }; + + const streamOut = _applyIndexPrivileges(packageStream, inputStream); + expect(streamOut).toEqual(expectedStream); + }); + it('should not apply privileges if all privileges are forbidden', () => { const forbiddenPrivileges = ['write', 'delete', 'delete_index', 'all']; const packageStream = createPackageStream(forbiddenPrivileges); diff --git a/x-pack/plugins/fleet/server/services/package_policy.ts b/x-pack/plugins/fleet/server/services/package_policy.ts index 759a6bc3d05c3..c746d62cb49fd 100644 --- a/x-pack/plugins/fleet/server/services/package_policy.ts +++ b/x-pack/plugins/fleet/server/services/package_policy.ts @@ -6,7 +6,7 @@ */ /* eslint-disable max-classes-per-file */ -import { omit, partition, isEqual } from 'lodash'; +import { omit, partition, isEqual, cloneDeep } from 'lodash'; import { i18n } from '@kbn/i18n'; import semverLt from 'semver/functions/lt'; import { getFlattenedObject } from '@kbn/std'; @@ -1738,11 +1738,24 @@ async function _compilePackageStreams( } // temporary export to enable testing pending refactor https://github.com/elastic/kibana/issues/112386 +// TODO: Move this logic into `package_policies_to_agent_permissions.ts` since this is not a package policy concern +// and is based entirely on the package contents export function _applyIndexPrivileges( packageDataStream: RegistryDataStream, stream: PackagePolicyInputStream ): PackagePolicyInputStream { - const streamOut = { ...stream }; + const streamOut = cloneDeep(stream); + + if (packageDataStream?.elasticsearch?.dynamic_dataset) { + streamOut.data_stream.elasticsearch = streamOut.data_stream.elasticsearch ?? {}; + streamOut.data_stream.elasticsearch.dynamic_dataset = + packageDataStream.elasticsearch.dynamic_dataset; + } + if (packageDataStream?.elasticsearch?.dynamic_namespace) { + streamOut.data_stream.elasticsearch = streamOut.data_stream.elasticsearch ?? {}; + streamOut.data_stream.elasticsearch.dynamic_namespace = + packageDataStream.elasticsearch.dynamic_namespace; + } const indexPrivileges = packageDataStream?.elasticsearch?.privileges?.indices; @@ -1763,10 +1776,9 @@ export function _applyIndexPrivileges( } if (valid.length) { - stream.data_stream.elasticsearch = { - privileges: { - indices: valid, - }, + streamOut.data_stream.elasticsearch = streamOut.data_stream.elasticsearch ?? {}; + streamOut.data_stream.elasticsearch.privileges = { + indices: valid, }; } diff --git a/x-pack/plugins/fleet/server/types/models/package_policy.ts b/x-pack/plugins/fleet/server/types/models/package_policy.ts index 32199c2e8be48..b94becf1fe449 100644 --- a/x-pack/plugins/fleet/server/types/models/package_policy.ts +++ b/x-pack/plugins/fleet/server/types/models/package_policy.ts @@ -45,6 +45,8 @@ const PackagePolicyStreamsSchema = { indices: schema.maybe(schema.arrayOf(schema.string())), }) ), + dynamic_dataset: schema.maybe(schema.boolean()), + dynamic_namespace: schema.maybe(schema.boolean()), }) ), }), diff --git a/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy_datastream_permissions.ts b/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy_datastream_permissions.ts new file mode 100644 index 0000000000000..9fe3f24b14a73 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/agent_policy/agent_policy_datastream_permissions.ts @@ -0,0 +1,127 @@ +/* + * 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 { v4 as uuidv4 } from 'uuid'; +import { FtrProviderContext } from '../../../api_integration/ftr_provider_context'; +import { setupFleetAndAgents } from '../agents/services'; +import { skipIfNoDockerRegistry } from '../../helpers'; + +export default function (providerContext: FtrProviderContext) { + const { getService } = providerContext; + const supertest = getService('supertest'); + const esArchiver = getService('esArchiver'); + + describe('datastream privileges', () => { + skipIfNoDockerRegistry(providerContext); + before(async () => { + await esArchiver.load('x-pack/test/functional/es_archives/fleet/empty_fleet_server'); + }); + setupFleetAndAgents(providerContext); + + after(async () => { + await esArchiver.unload('x-pack/test/functional/es_archives/fleet/empty_fleet_server'); + }); + + describe('dynamic privileges', () => { + // Use the dynamic_datastreams test package + before(async () => { + await supertest + .post(`/api/fleet/epm/packages/dynamic_datastream/1.2.0`) + .set('kbn-xsrf', 'xxxx') + .send({ force: true }) + .expect(200); + }); + after(async () => { + await supertest + .delete(`/api/fleet/epm/packages/dynamic_datastream/1.2.0`) + .set('kbn-xsrf', 'xxxx') + .send({ force: true }) + .expect(200); + }); + + it('correctly specifies wildcards for dynamic_dataset and dynamic_namespace', async () => { + // Create agent policy + const { + body: { + item: { id: agentPolicyId }, + }, + } = await supertest + .post(`/api/fleet/agent_policies`) + .set('kbn-xsrf', 'xxxx') + .send({ + name: `Test policy ${uuidv4()}`, + namespace: 'default', + monitoring_enabled: [], + }) + .expect(200); + + // Create package policy + const { + body: { + item: { id: packagePolicyId }, + }, + } = await supertest + .post(`/api/fleet/package_policies`) + .set('kbn-xsrf', 'xxxx') + .send({ + name: `dynamic-${uuidv4()}`, + description: '', + namespace: 'default', + policy_id: agentPolicyId, + package: { + name: 'dynamic_datastream', + version: '1.2.0', + }, + inputs: { + 'dynamic_datastream-logfile': { + enabled: true, + streams: { + 'dynamic_datastream.test_logs': { + enabled: true, + vars: { + paths: ['/var/log/auth.log*', '/var/log/secure*'], + }, + }, + }, + }, + 'dynamic_datastream-system/metrics': { + enabled: true, + streams: { + 'dynamic_datastream.test_metrics': { + enabled: true, + vars: {}, + }, + }, + }, + }, + }) + .expect(200); + + // Fetch the agent policy + const { + body: { item: fullAgentPolicy }, + } = await supertest + .get(`/api/fleet/agent_policies/${agentPolicyId}/full`) + .set('kbn-xsrf', 'xxxx'); + + // Check that the privileges are correct + expect(fullAgentPolicy.output_permissions.default[packagePolicyId].indices).to.eql([ + { names: ['logs-*-*'], privileges: ['auto_configure', 'create_doc'] }, + { names: ['metrics-*-*'], privileges: ['auto_configure', 'create_doc'] }, + ]); + + // Cleanup agent and package policy + await supertest + .post(`/api/fleet/agent_policies/delete`) + .send({ agentPolicyId }) + .set('kbn-xsrf', 'xxxx') + .expect(200); + }); + }); + }); +} diff --git a/x-pack/test/fleet_api_integration/apis/agent_policy/index.js b/x-pack/test/fleet_api_integration/apis/agent_policy/index.js index 8054a45acb728..21aa25cd3c0d3 100644 --- a/x-pack/test/fleet_api_integration/apis/agent_policy/index.js +++ b/x-pack/test/fleet_api_integration/apis/agent_policy/index.js @@ -6,8 +6,9 @@ */ export default function loadTests({ loadTestFile }) { - describe('Fleet Endpoints', () => { + describe('Agent policies', () => { loadTestFile(require.resolve('./agent_policy_with_agents_setup')); loadTestFile(require.resolve('./agent_policy')); + loadTestFile(require.resolve('./agent_policy_datastream_permissions')); }); } diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/agent/stream/log.yml.hbs b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/agent/stream/log.yml.hbs new file mode 100644 index 0000000000000..cc801fea22a77 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/agent/stream/log.yml.hbs @@ -0,0 +1,4 @@ +paths: +{{#each paths as |path i|}} + - {{path}} +{{/each}} diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/ecs.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/ecs.yml new file mode 100644 index 0000000000000..7df52cc11fd20 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/ecs.yml @@ -0,0 +1,6 @@ +- name: logs_test_name + title: logs_test_title + type: text +- name: new_field_name + title: new_field_title + type: keyword diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/fields.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/fields.yml new file mode 100644 index 0000000000000..6e003ed0ad147 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/fields/fields.yml @@ -0,0 +1,16 @@ +- name: data_stream.type + type: constant_keyword + description: > + Data stream type. +- name: data_stream.dataset + type: constant_keyword + description: > + Data stream dataset. +- name: data_stream.namespace + type: constant_keyword + description: > + Data stream namespace. +- name: '@timestamp' + type: date + description: > + Event timestamp. diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/manifest.yml new file mode 100644 index 0000000000000..fdc69553a74b3 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_logs/manifest.yml @@ -0,0 +1,20 @@ +title: Test Dataset +type: logs +elasticsearch: + dynamic_dataset: true + dynamic_namespace: true + +streams: +- input: logfile + title: Test logs + template_path: log.yml.hbs + vars: + - name: paths + type: text + title: Paths + multi: true + required: true + show_user: true + default: + - /var/log/auth.log* + - /var/log/secure* diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/agent/stream/cpu.yml.hbs b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/agent/stream/cpu.yml.hbs new file mode 100644 index 0000000000000..0c1ea9cdcc492 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/agent/stream/cpu.yml.hbs @@ -0,0 +1,6 @@ +metricsets: ["cpu"] +cpu.metrics: +{{#each cpu.metrics}} +- {{this}} +{{/each}} +period: {{period}} diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/ecs.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/ecs.yml new file mode 100644 index 0000000000000..8fb3ccd3de8fd --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/ecs.yml @@ -0,0 +1,6 @@ +- name: metrics_test_name + title: metrics_test_title + type: keyword +- name: metrics_test_name2 + title: metrics_test_title2 + type: keyword \ No newline at end of file diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/fields.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/fields.yml new file mode 100644 index 0000000000000..6e003ed0ad147 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/fields/fields.yml @@ -0,0 +1,16 @@ +- name: data_stream.type + type: constant_keyword + description: > + Data stream type. +- name: data_stream.dataset + type: constant_keyword + description: > + Data stream dataset. +- name: data_stream.namespace + type: constant_keyword + description: > + Data stream namespace. +- name: '@timestamp' + type: date + description: > + Event timestamp. diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/manifest.yml new file mode 100644 index 0000000000000..fa098ea9ab29f --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/data_stream/test_metrics/manifest.yml @@ -0,0 +1,31 @@ +title: Test metrics +type: metrics + +elasticsearch: + dynamic_dataset: true + dynamic_namespace: true + +streams: +- input: system/metrics + title: Test metrics + template_path: cpu.yml.hbs + vars: + - name: period + type: text + title: Period + multi: false + required: true + show_user: true + default: 10s + - name: cpu.metrics + type: text + title: Cpu Metrics + multi: true + required: true + show_user: true + description: > + How to report CPU metrics. Can be "percentages", "normalized_percentages", or "ticks" + + default: + - percentages + - normalized_percentages diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/docs/README.md b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/docs/README.md new file mode 100644 index 0000000000000..08b9bf19c4e17 --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/docs/README.md @@ -0,0 +1,3 @@ +# Test package + +This is a test package for testing that dynamic_dataset and dynamic_namespace generate the correct API key privileges diff --git a/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/manifest.yml b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/manifest.yml new file mode 100644 index 0000000000000..2cd4eaa4e962b --- /dev/null +++ b/x-pack/test/fleet_api_integration/apis/fixtures/test_packages/dynamic_datastream/0.2.0/manifest.yml @@ -0,0 +1,21 @@ +format_version: 1.0.0 +name: dynamic_datastream +title: dynamic_datastream test +description: This is a test package for testing that dynamic_dataset and dynamic_namespace generate the correct API key privileges +version: 1.2.0 +categories: [] +release: ga +type: integration +license: basic +owner: + github: elastic/fleet + +policy_templates: + - name: dynamic_datastream + title: Dynamic datastream + description: foo + inputs: + - type: logfile + title: Test dynamic logs + - type: system/metrics + title: Test dynamic metrics From 581bfb37b3d922a93b0a1fd4e54a86a279ea04b7 Mon Sep 17 00:00:00 2001 From: Stratoula Kalafateli Date: Tue, 18 Apr 2023 15:23:43 +0300 Subject: [PATCH 023/144] [Lens] Improve sampling notification title (#155127) ## Summary Improves the title of the notification popover for sampled data per feedback given image --- x-pack/plugins/lens/public/datasources/form_based/utils.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/lens/public/datasources/form_based/utils.tsx b/x-pack/plugins/lens/public/datasources/form_based/utils.tsx index d14cf42e3c31b..c136aab767b65 100644 --- a/x-pack/plugins/lens/public/datasources/form_based/utils.tsx +++ b/x-pack/plugins/lens/public/datasources/form_based/utils.tsx @@ -514,7 +514,7 @@ export function getNotifiableFeatures( severity: 'info', fixableInEditor: false, shortMessage: i18n.translate('xpack.lens.indexPattern.samplingPerLayer', { - defaultMessage: 'Layers with reduced sampling', + defaultMessage: 'Sampling probability by layer', }), longMessage: ( Date: Tue, 18 Apr 2023 08:34:07 -0400 Subject: [PATCH 024/144] [Security Solution][Endpoint] Update test data for endpoint list FTR tests and un-skip test suite (#155060) ## Summary - Update test data for endpoint list FTR tests and un-skip test suite Fixes #154916 Fixes #154917 --- .../apps/endpoint/endpoint_list.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts b/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts index 0bfb0cc5bba1d..5d19932090168 100644 --- a/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts +++ b/x-pack/test/security_solution_endpoint/apps/endpoint/endpoint_list.ts @@ -37,7 +37,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { 'x', 'x', 'Warning', - 'Linux', + 'macOS', '10.2.17.24, 10.56.215.200,10.254.196.130', 'x', 'x', @@ -59,7 +59,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { 'x', 'x', 'Warning', - 'Linux', + 'macOS', '10.87.11.145, 10.117.106.109,10.242.136.97', 'x', 'x', @@ -81,9 +81,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { return tableData; }; - // Failing: See https://github.com/elastic/kibana/issues/154917 - // Failing: See https://github.com/elastic/kibana/issues/154916 - describe.skip('endpoint list', function () { + describe('endpoint list', function () { const sleep = (ms = 100) => new Promise((resolve) => setTimeout(resolve, ms)); let indexedData: IndexedHostsAndAlertsResponse; describe('when initially navigating to page', () => { From 7235345601ec86df804afe1d8853aa8627482569 Mon Sep 17 00:00:00 2001 From: Matthew Kime Date: Tue, 18 Apr 2023 07:36:20 -0500 Subject: [PATCH 025/144] [data view field editor] Runtime field code editor - move state out of controller (#155107) ## Summary Resolves odd behavior with the runtime field code editor - most common case is inability to remove last character. Move some field state back to react and out of controller. Fixes https://github.com/elastic/kibana/issues/154351 --- .../field_editor/form_fields/script_field.tsx | 7 +++++-- .../components/preview/field_preview_context.tsx | 15 +++++++++------ .../components/preview/preview_controller.ts | 2 ++ .../public/components/preview/types.ts | 5 +++++ 4 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/plugins/data_view_field_editor/public/components/field_editor/form_fields/script_field.tsx b/src/plugins/data_view_field_editor/public/components/field_editor/form_fields/script_field.tsx index 6a53ae14186de..fddf14c864743 100644 --- a/src/plugins/data_view_field_editor/public/components/field_editor/form_fields/script_field.tsx +++ b/src/plugins/data_view_field_editor/public/components/field_editor/form_fields/script_field.tsx @@ -59,6 +59,9 @@ const currentDocumentSelector = (state: PreviewState) => state.documents[state.c const currentDocumentIsLoadingSelector = (state: PreviewState) => state.isLoadingDocuments; const ScriptFieldComponent = ({ existingConcreteFields, links, placeholder }: Props) => { + const { + validation: { setScriptEditorValidation }, + } = useFieldPreviewContext(); const monacoEditor = useRef(null); const editorValidationSubscription = useRef(); const fieldCurrentValue = useRef(''); @@ -143,7 +146,7 @@ const ScriptFieldComponent = ({ existingConcreteFields, links, placeholder }: Pr editorValidationSubscription.current = PainlessLang.validation$().subscribe( ({ isValid, isValidating, errors }) => { - controller.setScriptEditorValidation({ + setScriptEditorValidation({ isValid, isValidating, message: errors[0]?.message ?? null, @@ -151,7 +154,7 @@ const ScriptFieldComponent = ({ existingConcreteFields, links, placeholder }: Pr } ); }, - [controller] + [setScriptEditorValidation] ); const updateMonacoMarkers = useCallback((markers: monaco.editor.IMarkerData[]) => { diff --git a/src/plugins/data_view_field_editor/public/components/preview/field_preview_context.tsx b/src/plugins/data_view_field_editor/public/components/preview/field_preview_context.tsx index 3addd448f1e7e..f554025ce9f4b 100644 --- a/src/plugins/data_view_field_editor/public/components/preview/field_preview_context.tsx +++ b/src/plugins/data_view_field_editor/public/components/preview/field_preview_context.tsx @@ -75,8 +75,6 @@ const documentsSelector = (state: PreviewState) => { }; }; -const scriptEditorValidationSelector = (state: PreviewState) => state.scriptEditorValidation; - export const FieldPreviewProvider: FunctionComponent<{ controller: PreviewController }> = ({ controller, children, @@ -121,6 +119,12 @@ export const FieldPreviewProvider: FunctionComponent<{ controller: PreviewContro /** The parameters required for the Painless _execute API */ const [params, setParams] = useState(defaultParams); + const [scriptEditorValidation, setScriptEditorValidation] = useState<{ + isValidating: boolean; + isValid: boolean; + message: string | null; + }>({ isValidating: false, isValid: true, message: null }); + /** Flag to show/hide the preview panel */ const [isPanelVisible, setIsPanelVisible] = useState(true); /** Flag to indicate if we are loading document from cluster */ @@ -133,10 +137,6 @@ export const FieldPreviewProvider: FunctionComponent<{ controller: PreviewContro const { currentDocument, currentDocIndex, currentDocId, totalDocs, currentIdx } = useStateSelector(controller.state$, documentsSelector); - const scriptEditorValidation = useStateSelector( - controller.state$, - scriptEditorValidationSelector - ); let isPreviewAvailable = true; @@ -513,6 +513,9 @@ export const FieldPreviewProvider: FunctionComponent<{ controller: PreviewContro isVisible: isPanelVisible, setIsVisible: setIsPanelVisible, }, + validation: { + setScriptEditorValidation, + }, reset, }), [ diff --git a/src/plugins/data_view_field_editor/public/components/preview/preview_controller.ts b/src/plugins/data_view_field_editor/public/components/preview/preview_controller.ts index 80b11e74597aa..b572827eac06d 100644 --- a/src/plugins/data_view_field_editor/public/components/preview/preview_controller.ts +++ b/src/plugins/data_view_field_editor/public/components/preview/preview_controller.ts @@ -95,9 +95,11 @@ export class PreviewController { } }; + /* disabled while investigating issues with painless script editor setScriptEditorValidation = (scriptEditorValidation: PreviewState['scriptEditorValidation']) => { this.updateState({ scriptEditorValidation }); }; + */ setCustomId = (customId?: string) => { this.updateState({ customId }); diff --git a/src/plugins/data_view_field_editor/public/components/preview/types.ts b/src/plugins/data_view_field_editor/public/components/preview/types.ts index 377aed627ba54..347e0a709cf28 100644 --- a/src/plugins/data_view_field_editor/public/components/preview/types.ts +++ b/src/plugins/data_view_field_editor/public/components/preview/types.ts @@ -133,6 +133,11 @@ export interface Context { isLastDoc: boolean; }; reset: () => void; + validation: { + setScriptEditorValidation: React.Dispatch< + React.SetStateAction<{ isValid: boolean; isValidating: boolean; message: string | null }> + >; + }; } export type PainlessExecuteContext = From dec97d412980838ea9d897062f2987bdb6cd0159 Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Tue, 18 Apr 2023 06:36:58 -0600 Subject: [PATCH 026/144] [maps] reduce bundle size (#154789) Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- x-pack/plugins/maps/common/constants.ts | 6 + x-pack/plugins/maps/common/i18n_getters.ts | 12 - .../public/api/create_layer_descriptors.ts | 19 +- x-pack/plugins/maps/public/api/ems.ts | 7 +- .../maps/public/classes/layers/index.ts | 2 +- .../assign_feature_ids.test.ts | 3 +- .../assign_feature_ids.ts | 5 +- .../geojson_vector_layer.tsx | 2 +- .../public/classes/layers/wizards/index.ts | 2 +- .../map_container/map_container.tsx | 1 + .../maps/public/embeddable/map_component.tsx | 85 ++---- .../maps/public/embeddable/map_embeddable.tsx | 21 +- .../embeddable/map_embeddable_factory.ts | 11 +- .../maps/public/feature_catalogue_entry.ts | 5 +- x-pack/plugins/maps/public/index.ts | 6 +- x-pack/plugins/maps/public/kibana_services.ts | 29 +- .../maps/public/lazy_load_bundle/index.ts | 106 -------- .../public/lazy_load_bundle/lazy/index.ts | 17 -- .../public/legacy_visualizations/index.ts | 1 - .../region_map/region_map_visualization.tsx | 8 +- .../tile_map/tile_map_visualization.tsx | 10 +- x-pack/plugins/maps/public/locators.ts | 257 ------------------ .../locators/map_locator/get_location.ts | 50 ++++ .../map_locator/locator_definition.test.ts} | 8 +- .../map_locator/locator_definition.ts | 22 ++ .../maps/public/locators/map_locator/types.ts | 64 +++++ .../region_map_locator/get_location.ts | 55 ++++ .../region_map_locator/locator_definition.ts | 24 ++ .../locators/region_map_locator/types.ts | 33 +++ .../locators/tile_map_locator/get_location.ts | 52 ++++ .../tile_map_locator/locator_definition.ts | 24 ++ .../public/locators/tile_map_locator/types.ts | 31 +++ .../maps/public/map_attribute_service.ts | 5 +- x-pack/plugins/maps/public/plugin.ts | 27 +- .../routes/list_page/maps_list_view.tsx | 9 +- .../routes/map_page/map_app/map_app.tsx | 12 +- .../map_page/saved_map/get_breadcrumbs.tsx | 4 +- .../public/routes/map_page/top_nav_config.tsx | 4 +- .../action.ts} | 34 +-- .../filter_by_map_extent/is_compatible.ts | 17 ++ .../modal.tsx} | 13 +- .../filter_by_map_extent/types.ts | 16 ++ .../public/trigger_actions/get_maps_link.ts | 50 ++++ .../synchronize_movement/action.ts | 40 +++ .../synchronize_movement/is_compatible.ts | 32 +++ .../modal.tsx} | 13 +- .../synchronize_movement/types.ts | 12 + .../synchronize_movement_action.tsx | 69 ----- .../visualize_geo_field_action.ts | 50 +--- x-pack/plugins/maps/public/util.ts | 5 +- .../translations/translations/fr-FR.json | 1 - .../translations/translations/ja-JP.json | 1 - .../translations/translations/zh-CN.json | 1 - 53 files changed, 679 insertions(+), 714 deletions(-) delete mode 100644 x-pack/plugins/maps/public/lazy_load_bundle/index.ts delete mode 100644 x-pack/plugins/maps/public/lazy_load_bundle/lazy/index.ts delete mode 100644 x-pack/plugins/maps/public/locators.ts create mode 100644 x-pack/plugins/maps/public/locators/map_locator/get_location.ts rename x-pack/plugins/maps/public/{locators.test.ts => locators/map_locator/locator_definition.test.ts} (92%) create mode 100644 x-pack/plugins/maps/public/locators/map_locator/locator_definition.ts create mode 100644 x-pack/plugins/maps/public/locators/map_locator/types.ts create mode 100644 x-pack/plugins/maps/public/locators/region_map_locator/get_location.ts create mode 100644 x-pack/plugins/maps/public/locators/region_map_locator/locator_definition.ts create mode 100644 x-pack/plugins/maps/public/locators/region_map_locator/types.ts create mode 100644 x-pack/plugins/maps/public/locators/tile_map_locator/get_location.ts create mode 100644 x-pack/plugins/maps/public/locators/tile_map_locator/locator_definition.ts create mode 100644 x-pack/plugins/maps/public/locators/tile_map_locator/types.ts rename x-pack/plugins/maps/public/trigger_actions/{filter_by_map_extent_action.tsx => filter_by_map_extent/action.ts} (63%) create mode 100644 x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/is_compatible.ts rename x-pack/plugins/maps/public/trigger_actions/{filter_by_map_extent_modal.tsx => filter_by_map_extent/modal.tsx} (78%) create mode 100644 x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/types.ts create mode 100644 x-pack/plugins/maps/public/trigger_actions/get_maps_link.ts create mode 100644 x-pack/plugins/maps/public/trigger_actions/synchronize_movement/action.ts create mode 100644 x-pack/plugins/maps/public/trigger_actions/synchronize_movement/is_compatible.ts rename x-pack/plugins/maps/public/trigger_actions/{synchronize_movement_modal.tsx => synchronize_movement/modal.tsx} (84%) create mode 100644 x-pack/plugins/maps/public/trigger_actions/synchronize_movement/types.ts delete mode 100644 x-pack/plugins/maps/public/trigger_actions/synchronize_movement_action.tsx diff --git a/x-pack/plugins/maps/common/constants.ts b/x-pack/plugins/maps/common/constants.ts index c4dab3f156caa..6c8f719bf2886 100644 --- a/x-pack/plugins/maps/common/constants.ts +++ b/x-pack/plugins/maps/common/constants.ts @@ -15,6 +15,10 @@ export const APP_ICON_SOLUTION = 'logoKibana'; export const APP_NAME = i18n.translate('xpack.maps.visTypeAlias.title', { defaultMessage: 'Maps', }); +export const MAP_EMBEDDABLE_NAME = i18n.translate('xpack.maps.embeddableDisplayName', { + defaultMessage: 'map', +}); + export const INITIAL_LAYERS_KEY = 'initialLayers'; export const MAPS_APP_PATH = `app/${APP_ID}`; @@ -36,6 +40,8 @@ export const OPEN_LAYER_WIZARD = 'openLayerWizard'; // Centroids are a single point for representing lines, multiLines, polygons, and multiPolygons export const KBN_IS_CENTROID_FEATURE = '__kbn_is_centroid_feature__'; +export const GEOJSON_FEATURE_ID_PROPERTY_NAME = '__kbn__feature_id__'; + export function getNewMapPath() { return `/${MAPS_APP_PATH}/${MAP_PATH}`; } diff --git a/x-pack/plugins/maps/common/i18n_getters.ts b/x-pack/plugins/maps/common/i18n_getters.ts index 0c59cc891504e..09df14ef9f289 100644 --- a/x-pack/plugins/maps/common/i18n_getters.ts +++ b/x-pack/plugins/maps/common/i18n_getters.ts @@ -9,18 +9,6 @@ import { i18n } from '@kbn/i18n'; import { ES_SPATIAL_RELATIONS } from './constants'; -export function getAppTitle() { - return i18n.translate('xpack.maps.appTitle', { - defaultMessage: 'Maps', - }); -} - -export function getMapEmbeddableDisplayName() { - return i18n.translate('xpack.maps.embeddableDisplayName', { - defaultMessage: 'map', - }); -} - export function getDataSourceLabel() { return i18n.translate('xpack.maps.source.dataSourceLabel', { defaultMessage: 'Data source', diff --git a/x-pack/plugins/maps/public/api/create_layer_descriptors.ts b/x-pack/plugins/maps/public/api/create_layer_descriptors.ts index cfc914ef7c0f4..553abcf7d5481 100644 --- a/x-pack/plugins/maps/public/api/create_layer_descriptors.ts +++ b/x-pack/plugins/maps/public/api/create_layer_descriptors.ts @@ -5,8 +5,7 @@ * 2.0. */ -import { LayerDescriptor } from '../../common/descriptor_types'; -import { lazyLoadMapModules } from '../lazy_load_bundle'; +import type { LayerDescriptor } from '../../common/descriptor_types'; import type { CreateLayerDescriptorParams } from '../classes/sources/es_search_source'; export const createLayerDescriptors = { @@ -14,17 +13,21 @@ export const createLayerDescriptors = { indexPatternId: string, indexPatternTitle: string ): Promise { - const mapModules = await lazyLoadMapModules(); - return mapModules.createSecurityLayerDescriptors(indexPatternId, indexPatternTitle); + const { createSecurityLayerDescriptors } = await import( + '../classes/layers/wizards/solution_layers/security' + ); + return createSecurityLayerDescriptors(indexPatternId, indexPatternTitle); }, async createBasemapLayerDescriptor(): Promise { - const mapModules = await lazyLoadMapModules(); - return mapModules.createBasemapLayerDescriptor(); + const { createBasemapLayerDescriptor } = await import( + '../classes/layers/create_basemap_layer_descriptor' + ); + return createBasemapLayerDescriptor(); }, async createESSearchSourceLayerDescriptor( params: CreateLayerDescriptorParams ): Promise { - const mapModules = await lazyLoadMapModules(); - return mapModules.createESSearchSourceLayerDescriptor(params); + const { createLayerDescriptor } = await import('../classes/sources/es_search_source'); + return createLayerDescriptor(params); }, }; diff --git a/x-pack/plugins/maps/public/api/ems.ts b/x-pack/plugins/maps/public/api/ems.ts index da6e88c84e22c..64395bddefab4 100644 --- a/x-pack/plugins/maps/public/api/ems.ts +++ b/x-pack/plugins/maps/public/api/ems.ts @@ -5,12 +5,11 @@ * 2.0. */ -import { EMSTermJoinConfig, SampleValuesConfig } from '../ems_autosuggest'; -import { lazyLoadMapModules } from '../lazy_load_bundle'; +import type { EMSTermJoinConfig, SampleValuesConfig } from '../ems_autosuggest'; export async function suggestEMSTermJoinConfig( sampleValuesConfig: SampleValuesConfig ): Promise { - const mapModules = await lazyLoadMapModules(); - return await mapModules.suggestEMSTermJoinConfig(sampleValuesConfig); + const { suggestEMSTermJoinConfig: suggestEms } = await import('../ems_autosuggest'); + return await suggestEms(sampleValuesConfig); } diff --git a/x-pack/plugins/maps/public/classes/layers/index.ts b/x-pack/plugins/maps/public/classes/layers/index.ts index b068d4d234170..fe7e297ba8a1d 100644 --- a/x-pack/plugins/maps/public/classes/layers/index.ts +++ b/x-pack/plugins/maps/public/classes/layers/index.ts @@ -6,4 +6,4 @@ */ export type { LayerWizard, LayerWizardWithMeta, RenderWizardArguments } from './wizards'; -export { getLayerWizards, registerLayerWizardExternal } from './wizards'; +export { getLayerWizards } from './wizards'; diff --git a/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.test.ts b/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.test.ts index 2250e86da0ec2..d4a34c9104a2e 100644 --- a/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.test.ts +++ b/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.test.ts @@ -5,7 +5,8 @@ * 2.0. */ -import { assignFeatureIds, GEOJSON_FEATURE_ID_PROPERTY_NAME } from './assign_feature_ids'; +import { GEOJSON_FEATURE_ID_PROPERTY_NAME } from '../../../../../common/constants'; +import { assignFeatureIds } from './assign_feature_ids'; import { FeatureCollection, Feature, Point } from 'geojson'; const featureId = 'myFeature1'; diff --git a/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.ts b/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.ts index 3611256d246fb..f4b39c7a0d324 100644 --- a/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.ts +++ b/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.ts @@ -6,9 +6,8 @@ */ import _ from 'lodash'; -import { FeatureCollection, Feature } from 'geojson'; - -export const GEOJSON_FEATURE_ID_PROPERTY_NAME = '__kbn__feature_id__'; +import type { FeatureCollection, Feature } from 'geojson'; +import { GEOJSON_FEATURE_ID_PROPERTY_NAME } from '../../../../../common/constants'; let idCounter = 0; diff --git a/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/geojson_vector_layer.tsx b/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/geojson_vector_layer.tsx index 419757e24633c..a337cdbfaa7a5 100644 --- a/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/geojson_vector_layer.tsx +++ b/x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/geojson_vector_layer.tsx @@ -14,6 +14,7 @@ import type { FilterSpecification, Map as MbMap, GeoJSONSource } from '@kbn/mapb import { EMPTY_FEATURE_COLLECTION, FEATURE_VISIBLE_PROPERTY_NAME, + GEOJSON_FEATURE_ID_PROPERTY_NAME, LAYER_TYPE, SOURCE_BOUNDS_DATA_REQUEST_ID, } from '../../../../../common/constants'; @@ -35,7 +36,6 @@ import { } from '../vector_layer'; import { DataRequestAbortError } from '../../../util/data_request'; import { getFeatureCollectionBounds } from '../../../util/get_feature_collection_bounds'; -import { GEOJSON_FEATURE_ID_PROPERTY_NAME } from './assign_feature_ids'; import { syncGeojsonSourceData } from './geojson_source_data'; import { performInnerJoins } from './perform_inner_joins'; import { pluckStyleMetaFromFeatures } from './pluck_style_meta_from_features'; diff --git a/x-pack/plugins/maps/public/classes/layers/wizards/index.ts b/x-pack/plugins/maps/public/classes/layers/wizards/index.ts index 814a2ec8e5c2f..ecb690b3d1f15 100644 --- a/x-pack/plugins/maps/public/classes/layers/wizards/index.ts +++ b/x-pack/plugins/maps/public/classes/layers/wizards/index.ts @@ -10,4 +10,4 @@ export type { LayerWizardWithMeta, RenderWizardArguments, } from './layer_wizard_registry'; -export { getLayerWizards, registerLayerWizardExternal } from './layer_wizard_registry'; +export { getLayerWizards } from './layer_wizard_registry'; 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 e11b1a0530466..fa77048f6b88e 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 @@ -5,6 +5,7 @@ * 2.0. */ +import '../../_index.scss'; import React, { Component } from 'react'; import classNames from 'classnames'; import { EuiFlexGroup, EuiFlexItem, EuiCallOut } from '@elastic/eui'; diff --git a/x-pack/plugins/maps/public/embeddable/map_component.tsx b/x-pack/plugins/maps/public/embeddable/map_component.tsx index 13a589ebd0946..2e080a46d8478 100644 --- a/x-pack/plugins/maps/public/embeddable/map_component.tsx +++ b/x-pack/plugins/maps/public/embeddable/map_component.tsx @@ -8,25 +8,19 @@ import React, { Component, RefObject } from 'react'; import { first } from 'rxjs/operators'; import { v4 as uuidv4 } from 'uuid'; -import { EuiLoadingChart } from '@elastic/eui'; import type { Filter } from '@kbn/es-query'; import type { Query, TimeRange } from '@kbn/es-query'; import type { LayerDescriptor, MapCenterAndZoom } from '../../common/descriptor_types'; import type { MapEmbeddableType } from './types'; -import type { LazyLoadedMapModules } from '../lazy_load_bundle'; -import { lazyLoadMapModules } from '../lazy_load_bundle'; +import { MapEmbeddable } from './map_embeddable'; +import { createBasemapLayerDescriptor } from '../classes/layers/create_basemap_layer_descriptor'; interface Props { title: string; filters?: Filter[]; query?: Query; timeRange?: TimeRange; - getLayerDescriptors: ( - mapModules: Pick< - LazyLoadedMapModules, - 'createTileMapLayerDescriptor' | 'createRegionMapLayerDescriptor' - > - ) => LayerDescriptor[]; + getLayerDescriptors: () => LayerDescriptor[]; mapCenter?: MapCenterAndZoom; onInitialRenderComplete?: () => void; /* @@ -35,48 +29,13 @@ interface Props { isSharable?: boolean; } -interface State { - isLoaded: boolean; -} - -export class MapComponent extends Component { - private _isMounted = false; - private _mapEmbeddable?: MapEmbeddableType | undefined; +export class MapComponent extends Component { + private _mapEmbeddable: MapEmbeddableType; private readonly _embeddableRef: RefObject = React.createRef(); - state: State = { isLoaded: false }; - - componentDidMount() { - this._isMounted = true; - this._load(); - } - - componentWillUnmount() { - this._isMounted = false; - if (this._mapEmbeddable) { - this._mapEmbeddable.destroy(); - } - } - - componentDidUpdate() { - if (this._mapEmbeddable) { - this._mapEmbeddable.updateInput({ - filters: this.props.filters, - query: this.props.query, - timeRange: this.props.timeRange, - }); - } - } - - async _load() { - const mapModules = await lazyLoadMapModules(); - if (!this._isMounted) { - return; - } - - this.setState({ isLoaded: true }); - - this._mapEmbeddable = new mapModules.MapEmbeddable( + constructor(props: Props) { + super(props); + this._mapEmbeddable = new MapEmbeddable( { editable: false, }, @@ -85,11 +44,8 @@ export class MapComponent extends Component { attributes: { title: this.props.title, layerListJSON: JSON.stringify([ - mapModules.createBasemapLayerDescriptor(), - ...this.props.getLayerDescriptors({ - createRegionMapLayerDescriptor: mapModules.createRegionMapLayerDescriptor, - createTileMapLayerDescriptor: mapModules.createTileMapLayerDescriptor, - }), + createBasemapLayerDescriptor(), + ...this.props.getLayerDescriptors(), ]), }, mapCenter: this.props.mapCenter, @@ -101,7 +57,7 @@ export class MapComponent extends Component { .getOnRenderComplete$() .pipe(first()) .subscribe(() => { - if (this._isMounted && this.props.onInitialRenderComplete) { + if (this.props.onInitialRenderComplete) { this.props.onInitialRenderComplete(); } }); @@ -110,16 +66,27 @@ export class MapComponent extends Component { if (this.props.isSharable !== undefined) { this._mapEmbeddable.setIsSharable(this.props.isSharable); } + } + + componentDidMount() { if (this._embeddableRef.current) { this._mapEmbeddable.render(this._embeddableRef.current); } } - render() { - if (!this.state.isLoaded) { - return ; - } + componentWillUnmount() { + this._mapEmbeddable.destroy(); + } + componentDidUpdate() { + this._mapEmbeddable.updateInput({ + filters: this.props.filters, + query: this.props.query, + timeRange: this.props.timeRange, + }); + } + + render() { return
; } } diff --git a/x-pack/plugins/maps/public/embeddable/map_embeddable.tsx b/x-pack/plugins/maps/public/embeddable/map_embeddable.tsx index 33552613c0c95..834023182f45b 100644 --- a/x-pack/plugins/maps/public/embeddable/map_embeddable.tsx +++ b/x-pack/plugins/maps/public/embeddable/map_embeddable.tsx @@ -21,6 +21,7 @@ import { startWith, } from 'rxjs/operators'; import { Unsubscribe } from 'redux'; +import type { PaletteRegistry } from '@kbn/coloring'; import type { KibanaExecutionContext } from '@kbn/core/public'; import { EuiEmptyPrompt } from '@elastic/eui'; import { type Filter } from '@kbn/es-query'; @@ -82,7 +83,7 @@ import { } from '../../common/constants'; import { RenderToolTipContent } from '../classes/tooltips/tooltip_property'; import { - getChartsPaletteServiceGetColor, + getCharts, getCoreI18n, getExecutionContextService, getHttp, @@ -109,6 +110,24 @@ import { MapEmbeddableOutput, } from './types'; +async function getChartsPaletteServiceGetColor(): Promise<((value: string) => string) | null> { + const chartsService = getCharts(); + const paletteRegistry: PaletteRegistry | null = chartsService + ? await chartsService.palettes.getPalettes() + : null; + if (!paletteRegistry) { + return null; + } + + const paletteDefinition = paletteRegistry.get('default'); + const chartConfiguration = { syncColors: true }; + return (value: string) => { + const series = [{ name: value, rankAtDepth: 0, totalSeriesAtDepth: 1 }]; + const color = paletteDefinition.getCategoricalColor(series, chartConfiguration); + return color ? color : '#3d3d3d'; + }; +} + function getIsRestore(searchSessionId?: string) { if (!searchSessionId) { return false; diff --git a/x-pack/plugins/maps/public/embeddable/map_embeddable_factory.ts b/x-pack/plugins/maps/public/embeddable/map_embeddable_factory.ts index 3642448774c58..ae9d4b6d39329 100644 --- a/x-pack/plugins/maps/public/embeddable/map_embeddable_factory.ts +++ b/x-pack/plugins/maps/public/embeddable/map_embeddable_factory.ts @@ -8,12 +8,10 @@ import { first } from 'rxjs/operators'; import { i18n } from '@kbn/i18n'; import { EmbeddableFactoryDefinition, IContainer } from '@kbn/embeddable-plugin/public'; -import { MAP_SAVED_OBJECT_TYPE, APP_ICON } from '../../common/constants'; -import { getMapEmbeddableDisplayName } from '../../common/i18n_getters'; +import { MAP_SAVED_OBJECT_TYPE, APP_ICON, MAP_EMBEDDABLE_NAME } from '../../common/constants'; import { extract, inject } from '../../common/embeddable'; import { MapByReferenceInput, MapEmbeddableInput } from './types'; -import { lazyLoadMapModules } from '../lazy_load_bundle'; -import { getApplication, getUsageCollection } from '../kibana_services'; +import { getApplication, getMapsCapabilities, getUsageCollection } from '../kibana_services'; export class MapEmbeddableFactory implements EmbeddableFactoryDefinition { type = MAP_SAVED_OBJECT_TYPE; @@ -26,7 +24,6 @@ export class MapEmbeddableFactory implements EmbeddableFactoryDefinition { }; async isEditable() { - const { getMapsCapabilities } = await lazyLoadMapModules(); return getMapsCapabilities().save as boolean; } @@ -36,7 +33,7 @@ export class MapEmbeddableFactory implements EmbeddableFactoryDefinition { } getDisplayName() { - return getMapEmbeddableDisplayName(); + return MAP_EMBEDDABLE_NAME; } createFromSavedObject = async ( @@ -51,7 +48,7 @@ export class MapEmbeddableFactory implements EmbeddableFactoryDefinition { }; create = async (input: MapEmbeddableInput, parent?: IContainer) => { - const { MapEmbeddable } = await lazyLoadMapModules(); + const { MapEmbeddable } = await import('./map_embeddable'); const usageCollection = getUsageCollection(); if (usageCollection) { // currentAppId$ is a BehaviorSubject exposed as an observable so subscription gets last value upon subscribe diff --git a/x-pack/plugins/maps/public/feature_catalogue_entry.ts b/x-pack/plugins/maps/public/feature_catalogue_entry.ts index 80d37aa0288e7..b897795e2eb49 100644 --- a/x-pack/plugins/maps/public/feature_catalogue_entry.ts +++ b/x-pack/plugins/maps/public/feature_catalogue_entry.ts @@ -7,12 +7,11 @@ import { i18n } from '@kbn/i18n'; import type { FeatureCatalogueCategory } from '@kbn/home-plugin/public'; -import { APP_ID, APP_ICON } from '../common/constants'; -import { getAppTitle } from '../common/i18n_getters'; +import { APP_ID, APP_ICON, APP_NAME } from '../common/constants'; export const featureCatalogueEntry = { id: APP_ID, - title: getAppTitle(), + title: APP_NAME, subtitle: i18n.translate('xpack.maps.featureCatalogue.mapsSubtitle', { defaultMessage: 'Plot geographic data.', }), diff --git a/x-pack/plugins/maps/public/index.ts b/x-pack/plugins/maps/public/index.ts index beb0d5153d89e..e88a167a6da24 100644 --- a/x-pack/plugins/maps/public/index.ts +++ b/x-pack/plugins/maps/public/index.ts @@ -17,12 +17,10 @@ export const plugin: PluginInitializer = ( return new MapsPlugin(initContext); }; -export { MAP_SAVED_OBJECT_TYPE } from '../common/constants'; -export { MAPS_APP_LOCATOR } from './locators'; +export { GEOJSON_FEATURE_ID_PROPERTY_NAME, MAP_SAVED_OBJECT_TYPE } from '../common/constants'; +export { MAPS_APP_LOCATOR } from './locators/map_locator/locator_definition'; export type { PreIndexedShape } from '../common/elasticsearch_util'; -export { GEOJSON_FEATURE_ID_PROPERTY_NAME } from './classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids'; - export type { ITooltipProperty, RenderTooltipContentParams, diff --git a/x-pack/plugins/maps/public/kibana_services.ts b/x-pack/plugins/maps/public/kibana_services.ts index 315f75c313fa5..623f82a473472 100644 --- a/x-pack/plugins/maps/public/kibana_services.ts +++ b/x-pack/plugins/maps/public/kibana_services.ts @@ -6,7 +6,6 @@ */ import type { CoreStart } from '@kbn/core/public'; -import type { PaletteRegistry } from '@kbn/coloring'; import type { EMSSettings } from '@kbn/maps-ems-plugin/common/ems_settings'; import { MapsEmsPluginPublicStart } from '@kbn/maps-ems-plugin/public'; import type { MapsConfigType } from '../config'; @@ -50,6 +49,7 @@ export const getMapsCapabilities = () => coreStart.application.capabilities.maps export const getVisualizeCapabilities = () => coreStart.application.capabilities.visualize; export const getDocLinks = () => coreStart.docLinks; export const getCoreOverlays = () => coreStart.overlays; +export const getCharts = () => pluginsStart.charts; export const getData = () => pluginsStart.data; export const getUiActions = () => pluginsStart.uiActions; export const getCore = () => coreStart; @@ -90,34 +90,7 @@ export const getEMSSettings: () => EMSSettings = () => { export const getEmsTileLayerId = () => mapsEms.config.emsTileLayerId; -export const getTilemap = () => { - if (mapsEms.config.tilemap) { - return mapsEms.config.tilemap; - } else { - return {}; - } -}; - export const getShareService = () => pluginsStart.share; export const getIsAllowByValueEmbeddables = () => pluginsStart.dashboard.dashboardFeatureFlagConfig.allowByValueEmbeddables; - -export async function getChartsPaletteServiceGetColor(): Promise< - ((value: string) => string) | null -> { - const paletteRegistry: PaletteRegistry | null = pluginsStart.charts - ? await pluginsStart.charts.palettes.getPalettes() - : null; - if (!paletteRegistry) { - return null; - } - - const paletteDefinition = paletteRegistry.get('default'); - const chartConfiguration = { syncColors: true }; - return (value: string) => { - const series = [{ name: value, rankAtDepth: 0, totalSeriesAtDepth: 1 }]; - const color = paletteDefinition.getCategoricalColor(series, chartConfiguration); - return color ? color : '#3d3d3d'; - }; -} diff --git a/x-pack/plugins/maps/public/lazy_load_bundle/index.ts b/x-pack/plugins/maps/public/lazy_load_bundle/index.ts deleted file mode 100644 index a2f4f4004797e..0000000000000 --- a/x-pack/plugins/maps/public/lazy_load_bundle/index.ts +++ /dev/null @@ -1,106 +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 { DataViewsContract } from '@kbn/data-views-plugin/common'; -import { AppMountParameters, CoreStart } from '@kbn/core/public'; -import { IContainer } from '@kbn/embeddable-plugin/public'; -import type { SavedObjectTaggingPluginStart } from '@kbn/saved-objects-tagging-plugin/public'; -import { LayerDescriptor } from '../../common/descriptor_types'; -import type { - MapEmbeddableConfig, - MapEmbeddableInput, - MapEmbeddableType, -} from '../embeddable/types'; -import type { CreateLayerDescriptorParams } from '../classes/sources/es_search_source'; -import type { EMSTermJoinConfig, SampleValuesConfig } from '../ems_autosuggest'; -import type { CreateTileMapLayerDescriptorParams } from '../classes/layers/create_tile_map_layer_descriptor'; -import type { CreateRegionMapLayerDescriptorParams } from '../classes/layers/create_region_map_layer_descriptor'; - -let loadModulesPromise: Promise; - -export interface LazyLoadedMapModules { - MapEmbeddable: new ( - config: MapEmbeddableConfig, - initialInput: MapEmbeddableInput, - parent?: IContainer - ) => MapEmbeddableType; - getIndexPatternService: () => DataViewsContract; - getMapsCapabilities: () => any; - renderApp: ( - params: AppMountParameters, - deps: { - coreStart: CoreStart; - AppUsageTracker: React.FC; - savedObjectsTagging?: SavedObjectTaggingPluginStart; - } - ) => Promise<() => void>; - createSecurityLayerDescriptors: ( - indexPatternId: string, - indexPatternTitle: string - ) => LayerDescriptor[]; - createTileMapLayerDescriptor: ({ - label, - mapType, - colorSchema, - indexPatternId, - geoFieldName, - metricAgg, - metricFieldName, - }: CreateTileMapLayerDescriptorParams) => LayerDescriptor | null; - createRegionMapLayerDescriptor: ({ - label, - emsLayerId, - leftFieldName, - termsFieldName, - termsSize, - colorSchema, - indexPatternId, - metricAgg, - metricFieldName, - }: CreateRegionMapLayerDescriptorParams) => LayerDescriptor | null; - createBasemapLayerDescriptor: () => LayerDescriptor | null; - createESSearchSourceLayerDescriptor: (params: CreateLayerDescriptorParams) => LayerDescriptor; - suggestEMSTermJoinConfig: (config: SampleValuesConfig) => Promise; -} - -export async function lazyLoadMapModules(): Promise { - if (typeof loadModulesPromise !== 'undefined') { - return loadModulesPromise; - } - - loadModulesPromise = new Promise(async (resolve, reject) => { - try { - const { - MapEmbeddable, - getIndexPatternService, - getMapsCapabilities, - renderApp, - createSecurityLayerDescriptors, - createTileMapLayerDescriptor, - createRegionMapLayerDescriptor, - createBasemapLayerDescriptor, - createESSearchSourceLayerDescriptor, - suggestEMSTermJoinConfig, - } = await import('./lazy'); - resolve({ - MapEmbeddable, - getIndexPatternService, - getMapsCapabilities, - renderApp, - createSecurityLayerDescriptors, - createTileMapLayerDescriptor, - createRegionMapLayerDescriptor, - createBasemapLayerDescriptor, - createESSearchSourceLayerDescriptor, - suggestEMSTermJoinConfig, - }); - } catch (error) { - reject(error); - } - }); - return loadModulesPromise; -} diff --git a/x-pack/plugins/maps/public/lazy_load_bundle/lazy/index.ts b/x-pack/plugins/maps/public/lazy_load_bundle/lazy/index.ts deleted file mode 100644 index fb5321dfc03f8..0000000000000 --- a/x-pack/plugins/maps/public/lazy_load_bundle/lazy/index.ts +++ /dev/null @@ -1,17 +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 '../../_index.scss'; -export * from '../../embeddable/map_embeddable'; -export * from '../../kibana_services'; -export { renderApp } from '../../render_app'; -export * from '../../classes/layers/wizards/solution_layers/security'; -export { createTileMapLayerDescriptor } from '../../classes/layers/create_tile_map_layer_descriptor'; -export { createRegionMapLayerDescriptor } from '../../classes/layers/create_region_map_layer_descriptor'; -export { createBasemapLayerDescriptor } from '../../classes/layers/create_basemap_layer_descriptor'; -export { createLayerDescriptor as createESSearchSourceLayerDescriptor } from '../../classes/sources/es_search_source'; -export { suggestEMSTermJoinConfig } from '../../ems_autosuggest'; diff --git a/x-pack/plugins/maps/public/legacy_visualizations/index.ts b/x-pack/plugins/maps/public/legacy_visualizations/index.ts index d99544bbb207d..177cc608a975c 100644 --- a/x-pack/plugins/maps/public/legacy_visualizations/index.ts +++ b/x-pack/plugins/maps/public/legacy_visualizations/index.ts @@ -8,4 +8,3 @@ export { GEOHASH_GRID, getGeoHashBucketAgg } from './tile_map'; export { createRegionMapFn, regionMapRenderer, regionMapVisType } from './region_map'; export { createTileMapFn, tileMapRenderer, tileMapVisType } from './tile_map'; -export { isLegacyMap } from './is_legacy_map'; diff --git a/x-pack/plugins/maps/public/legacy_visualizations/region_map/region_map_visualization.tsx b/x-pack/plugins/maps/public/legacy_visualizations/region_map/region_map_visualization.tsx index b6945995da9d9..4dedb97202857 100644 --- a/x-pack/plugins/maps/public/legacy_visualizations/region_map/region_map_visualization.tsx +++ b/x-pack/plugins/maps/public/legacy_visualizations/region_map/region_map_visualization.tsx @@ -9,8 +9,8 @@ import React from 'react'; import type { Filter } from '@kbn/es-query'; import type { Query, TimeRange } from '@kbn/es-query'; import { RegionMapVisConfig } from './types'; -import type { LazyLoadedMapModules } from '../../lazy_load_bundle'; import { MapComponent } from '../../embeddable/map_component'; +import { createRegionMapLayerDescriptor } from '../../classes/layers/create_region_map_layer_descriptor'; interface Props { filters?: Filter[]; @@ -26,11 +26,7 @@ function RegionMapVisualization(props: Props) { lon: props.visConfig.mapCenter[1], zoom: props.visConfig.mapZoom, }; - function getLayerDescriptors({ - createRegionMapLayerDescriptor, - }: { - createRegionMapLayerDescriptor: LazyLoadedMapModules['createRegionMapLayerDescriptor']; - }) { + function getLayerDescriptors() { const layerDescriptor = createRegionMapLayerDescriptor(props.visConfig.layerDescriptorParams); return layerDescriptor ? [layerDescriptor] : []; } diff --git a/x-pack/plugins/maps/public/legacy_visualizations/tile_map/tile_map_visualization.tsx b/x-pack/plugins/maps/public/legacy_visualizations/tile_map/tile_map_visualization.tsx index 97a3609d765a4..5eb4132528de5 100644 --- a/x-pack/plugins/maps/public/legacy_visualizations/tile_map/tile_map_visualization.tsx +++ b/x-pack/plugins/maps/public/legacy_visualizations/tile_map/tile_map_visualization.tsx @@ -8,9 +8,9 @@ import React from 'react'; import type { Filter } from '@kbn/es-query'; import type { Query, TimeRange } from '@kbn/es-query'; -import { TileMapVisConfig } from './types'; -import type { LazyLoadedMapModules } from '../../lazy_load_bundle'; +import type { TileMapVisConfig } from './types'; import { MapComponent } from '../../embeddable/map_component'; +import { createTileMapLayerDescriptor } from '../../classes/layers/create_tile_map_layer_descriptor'; interface Props { filters?: Filter[]; @@ -26,11 +26,7 @@ function TileMapVisualization(props: Props) { lon: props.visConfig.mapCenter[1], zoom: props.visConfig.mapZoom, }; - function getLayerDescriptors({ - createTileMapLayerDescriptor, - }: { - createTileMapLayerDescriptor: LazyLoadedMapModules['createTileMapLayerDescriptor']; - }) { + function getLayerDescriptors() { const layerDescriptor = createTileMapLayerDescriptor(props.visConfig.layerDescriptorParams); return layerDescriptor ? [layerDescriptor] : []; } diff --git a/x-pack/plugins/maps/public/locators.ts b/x-pack/plugins/maps/public/locators.ts deleted file mode 100644 index ff2ac6590708e..0000000000000 --- a/x-pack/plugins/maps/public/locators.ts +++ /dev/null @@ -1,257 +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. - */ - -/* eslint-disable max-classes-per-file */ - -import rison from '@kbn/rison'; -import type { DataViewSpec } from '@kbn/data-views-plugin/public'; -import type { SerializableRecord } from '@kbn/utility-types'; -import { type Filter, isFilterPinned, type TimeRange, type Query } from '@kbn/es-query'; -import type { GlobalQueryStateFromUrl, RefreshInterval } from '@kbn/data-plugin/public'; -import { setStateToKbnUrl } from '@kbn/kibana-utils-plugin/public'; -import type { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public'; -import type { LayerDescriptor } from '../common/descriptor_types'; -import { INITIAL_LAYERS_KEY, APP_ID } from '../common/constants'; -import { lazyLoadMapModules } from './lazy_load_bundle'; - -export interface MapsAppLocatorParams extends SerializableRecord { - /** - * If given, it will load the given map else will load the create a new map page. - */ - mapId?: string; - - /** - * Optionally set the time range in the time picker. - */ - timeRange?: TimeRange; - - /** - * Optionally set the initial Layers. - */ - initialLayers?: LayerDescriptor[] & SerializableRecord; - - /** - * Optionally set the refresh interval. - */ - refreshInterval?: RefreshInterval & SerializableRecord; - - /** - * Optionally apply filers. NOTE: if given and used in conjunction with `mapId`, and the - * saved map has filters saved with it, this will _replace_ those filters. - */ - filters?: Filter[]; - - /** - * Optionally set a query. NOTE: if given and used in conjunction with `mapId`, and the - * saved map has a query saved with it, this will _replace_ that query. - */ - query?: Query; - - /** - * If not given, will use the uiSettings configuration for `storeInSessionStorage`. useHash determines - * whether to hash the data in the url to avoid url length issues. - */ - hash?: boolean; - - /** - * Optionally pass adhoc data view spec. - */ - dataViewSpec?: DataViewSpec; -} - -export const MAPS_APP_LOCATOR = 'MAPS_APP_LOCATOR' as const; - -export type MapsAppLocator = LocatorPublic; - -export interface MapsAppLocatorDependencies { - useHash: boolean; -} - -export class MapsAppLocatorDefinition implements LocatorDefinition { - public readonly id = MAPS_APP_LOCATOR; - - constructor(protected readonly deps: MapsAppLocatorDependencies) {} - - public readonly getLocation = async (params: MapsAppLocatorParams) => { - const { mapId, filters, query, refreshInterval, timeRange, initialLayers, hash } = params; - const useHash = hash ?? this.deps.useHash; - const appState: { - query?: Query; - filters?: Filter[]; - vis?: unknown; - } = {}; - const queryState: GlobalQueryStateFromUrl = {}; - - if (query) appState.query = query; - if (filters && filters.length) appState.filters = filters?.filter((f) => !isFilterPinned(f)); - if (timeRange) queryState.time = timeRange; - if (filters && filters.length) queryState.filters = filters?.filter((f) => isFilterPinned(f)); - if (refreshInterval) queryState.refreshInterval = refreshInterval; - - let path = `/map#/${mapId || ''}`; - path = setStateToKbnUrl('_g', queryState, { useHash }, path); - path = setStateToKbnUrl('_a', appState, { useHash }, path); - - if (initialLayers && initialLayers.length) { - const risonEncodedInitialLayers = rison.encodeArray(initialLayers); - path = `${path}&${INITIAL_LAYERS_KEY}=${encodeURIComponent(risonEncodedInitialLayers)}`; - } - - return { - app: APP_ID, - path, - state: params.dataViewSpec - ? { - dataViewSpec: params.dataViewSpec, - } - : {}, - }; - }; -} - -export interface MapsAppTileMapLocatorParams extends SerializableRecord { - label: string; - mapType: string; - colorSchema: string; - indexPatternId?: string; - geoFieldName?: string; - metricAgg: string; - metricFieldName?: string; - timeRange?: TimeRange; - filters?: Filter[]; - query?: Query; - hash?: boolean; -} - -export type MapsAppTileMapLocator = LocatorPublic; - -export const MAPS_APP_TILE_MAP_LOCATOR = 'MAPS_APP_TILE_MAP_LOCATOR' as const; - -export interface MapsAppTileMapLocatorDependencies { - locator: MapsAppLocator; -} - -export class MapsAppTileMapLocatorDefinition - implements LocatorDefinition -{ - public readonly id = MAPS_APP_TILE_MAP_LOCATOR; - - constructor(protected readonly deps: MapsAppTileMapLocatorDependencies) {} - - public readonly getLocation = async (params: MapsAppTileMapLocatorParams) => { - const { - label, - mapType, - colorSchema, - indexPatternId, - geoFieldName, - metricAgg, - metricFieldName, - filters, - query, - timeRange, - hash = true, - } = params; - const mapModules = await lazyLoadMapModules(); - const initialLayers = [] as unknown as LayerDescriptor[] & SerializableRecord; - const tileMapLayerDescriptor = mapModules.createTileMapLayerDescriptor({ - label, - mapType, - colorSchema, - indexPatternId, - geoFieldName, - metricAgg, - metricFieldName, - }); - - if (tileMapLayerDescriptor) { - initialLayers.push(tileMapLayerDescriptor); - } - - return await this.deps.locator.getLocation({ - initialLayers, - filters, - query, - timeRange, - hash, - }); - }; -} - -export interface MapsAppRegionMapLocatorParams extends SerializableRecord { - label: string; - emsLayerId?: string; - leftFieldName?: string; - termsFieldName?: string; - termsSize?: number; - colorSchema: string; - indexPatternId?: string; - metricAgg: string; - metricFieldName?: string; - timeRange?: TimeRange; - filters?: Filter[]; - query?: Query; - hash?: boolean; -} - -export type MapsAppRegionMapLocator = LocatorPublic; - -export const MAPS_APP_REGION_MAP_LOCATOR = 'MAPS_APP_REGION_MAP_LOCATOR' as const; - -export interface MapsAppRegionMapLocatorDependencies { - locator: MapsAppLocator; -} - -export class MapsAppRegionMapLocatorDefinition - implements LocatorDefinition -{ - public readonly id = MAPS_APP_REGION_MAP_LOCATOR; - - constructor(protected readonly deps: MapsAppRegionMapLocatorDependencies) {} - - public readonly getLocation = async (params: MapsAppRegionMapLocatorParams) => { - const { - label, - emsLayerId, - leftFieldName, - termsFieldName, - termsSize, - colorSchema, - indexPatternId, - metricAgg, - metricFieldName, - filters, - query, - timeRange, - hash = true, - } = params; - const mapModules = await lazyLoadMapModules(); - const initialLayers = [] as unknown as LayerDescriptor[] & SerializableRecord; - const regionMapLayerDescriptor = mapModules.createRegionMapLayerDescriptor({ - label, - emsLayerId, - leftFieldName, - termsFieldName, - termsSize, - colorSchema, - indexPatternId, - metricAgg, - metricFieldName, - }); - if (regionMapLayerDescriptor) { - initialLayers.push(regionMapLayerDescriptor); - } - - return await this.deps.locator.getLocation({ - initialLayers, - filters, - query, - timeRange, - hash, - }); - }; -} diff --git a/x-pack/plugins/maps/public/locators/map_locator/get_location.ts b/x-pack/plugins/maps/public/locators/map_locator/get_location.ts new file mode 100644 index 0000000000000..2a451183dd8e0 --- /dev/null +++ b/x-pack/plugins/maps/public/locators/map_locator/get_location.ts @@ -0,0 +1,50 @@ +/* + * 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 rison from '@kbn/rison'; +import { setStateToKbnUrl } from '@kbn/kibana-utils-plugin/public'; +import type { GlobalQueryStateFromUrl } from '@kbn/data-plugin/public'; +import type { Filter, Query } from '@kbn/es-query'; +import { isFilterPinned } from '@kbn/es-query'; +import { INITIAL_LAYERS_KEY, APP_ID } from '../../../common/constants'; +import type { MapsAppLocatorDependencies, MapsAppLocatorParams } from './types'; + +export function getLocation(params: MapsAppLocatorParams, deps: MapsAppLocatorDependencies) { + const { mapId, filters, query, refreshInterval, timeRange, initialLayers, hash } = params; + const useHash = hash ?? deps.useHash; + const appState: { + query?: Query; + filters?: Filter[]; + vis?: unknown; + } = {}; + const queryState: GlobalQueryStateFromUrl = {}; + + if (query) appState.query = query; + if (filters && filters.length) appState.filters = filters?.filter((f) => !isFilterPinned(f)); + if (timeRange) queryState.time = timeRange; + if (filters && filters.length) queryState.filters = filters?.filter((f) => isFilterPinned(f)); + if (refreshInterval) queryState.refreshInterval = refreshInterval; + + let path = `/map#/${mapId || ''}`; + path = setStateToKbnUrl('_g', queryState, { useHash }, path); + path = setStateToKbnUrl('_a', appState, { useHash }, path); + + if (initialLayers && initialLayers.length) { + const risonEncodedInitialLayers = rison.encodeArray(initialLayers); + path = `${path}&${INITIAL_LAYERS_KEY}=${encodeURIComponent(risonEncodedInitialLayers)}`; + } + + return { + app: APP_ID, + path, + state: params.dataViewSpec + ? { + dataViewSpec: params.dataViewSpec, + } + : {}, + }; +} diff --git a/x-pack/plugins/maps/public/locators.test.ts b/x-pack/plugins/maps/public/locators/map_locator/locator_definition.test.ts similarity index 92% rename from x-pack/plugins/maps/public/locators.test.ts rename to x-pack/plugins/maps/public/locators/map_locator/locator_definition.test.ts index cc954d5f73717..d281ad00c2b59 100644 --- a/x-pack/plugins/maps/public/locators.test.ts +++ b/x-pack/plugins/maps/public/locators/map_locator/locator_definition.test.ts @@ -5,11 +5,11 @@ * 2.0. */ -import { LAYER_TYPE, SOURCE_TYPES, SCALING_TYPES } from '../common/constants'; +import { LAYER_TYPE, SOURCE_TYPES, SCALING_TYPES } from '../../../common/constants'; import { FilterStateStore } from '@kbn/es-query'; -import { MapsAppLocatorDefinition } from './locators'; -import { SerializableRecord } from '@kbn/utility-types'; -import { LayerDescriptor } from '../common/descriptor_types'; +import { MapsAppLocatorDefinition } from './locator_definition'; +import type { SerializableRecord } from '@kbn/utility-types'; +import type { LayerDescriptor } from '../../../common/descriptor_types'; const MAP_ID: string = '2c9c1f60-1909-11e9-919b-ffe5949a18d2'; const LAYER_ID: string = '13823000-99b9-11ea-9eb6-d9e8adceb647'; diff --git a/x-pack/plugins/maps/public/locators/map_locator/locator_definition.ts b/x-pack/plugins/maps/public/locators/map_locator/locator_definition.ts new file mode 100644 index 0000000000000..7c2d71ebeb0dd --- /dev/null +++ b/x-pack/plugins/maps/public/locators/map_locator/locator_definition.ts @@ -0,0 +1,22 @@ +/* + * 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 type { LocatorDefinition } from '@kbn/share-plugin/public'; +import type { MapsAppLocatorDependencies, MapsAppLocatorParams } from './types'; + +export const MAPS_APP_LOCATOR = 'MAPS_APP_LOCATOR' as const; + +export class MapsAppLocatorDefinition implements LocatorDefinition { + public readonly id = MAPS_APP_LOCATOR; + + constructor(protected readonly deps: MapsAppLocatorDependencies) {} + + public readonly getLocation = async (params: MapsAppLocatorParams) => { + const { getLocation } = await import('./get_location'); + return getLocation(params, this.deps); + }; +} diff --git a/x-pack/plugins/maps/public/locators/map_locator/types.ts b/x-pack/plugins/maps/public/locators/map_locator/types.ts new file mode 100644 index 0000000000000..bf32465cb5cc3 --- /dev/null +++ b/x-pack/plugins/maps/public/locators/map_locator/types.ts @@ -0,0 +1,64 @@ +/* + * 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 type { SerializableRecord } from '@kbn/utility-types'; +import type { Filter, TimeRange, Query } from '@kbn/es-query'; +import type { DataViewSpec } from '@kbn/data-views-plugin/public'; +import type { RefreshInterval } from '@kbn/data-plugin/public'; +import type { LocatorPublic } from '@kbn/share-plugin/public'; +import type { LayerDescriptor } from '../../../common/descriptor_types'; + +export interface MapsAppLocatorParams extends SerializableRecord { + /** + * If given, it will load the given map else will load the create a new map page. + */ + mapId?: string; + + /** + * Optionally set the time range in the time picker. + */ + timeRange?: TimeRange; + + /** + * Optionally set the initial Layers. + */ + initialLayers?: LayerDescriptor[] & SerializableRecord; + + /** + * Optionally set the refresh interval. + */ + refreshInterval?: RefreshInterval & SerializableRecord; + + /** + * Optionally apply filers. NOTE: if given and used in conjunction with `mapId`, and the + * saved map has filters saved with it, this will _replace_ those filters. + */ + filters?: Filter[]; + + /** + * Optionally set a query. NOTE: if given and used in conjunction with `mapId`, and the + * saved map has a query saved with it, this will _replace_ that query. + */ + query?: Query; + + /** + * If not given, will use the uiSettings configuration for `storeInSessionStorage`. useHash determines + * whether to hash the data in the url to avoid url length issues. + */ + hash?: boolean; + + /** + * Optionally pass adhoc data view spec. + */ + dataViewSpec?: DataViewSpec; +} + +export type MapsAppLocator = LocatorPublic; + +export interface MapsAppLocatorDependencies { + useHash: boolean; +} diff --git a/x-pack/plugins/maps/public/locators/region_map_locator/get_location.ts b/x-pack/plugins/maps/public/locators/region_map_locator/get_location.ts new file mode 100644 index 0000000000000..b7706fe8c2e4a --- /dev/null +++ b/x-pack/plugins/maps/public/locators/region_map_locator/get_location.ts @@ -0,0 +1,55 @@ +/* + * 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 type { SerializableRecord } from '@kbn/utility-types'; +import type { LayerDescriptor } from '../../../common/descriptor_types'; +import { createRegionMapLayerDescriptor } from '../../classes/layers/create_region_map_layer_descriptor'; +import type { MapsAppRegionMapLocatorParams, MapsAppRegionMapLocatorDependencies } from './types'; + +export async function getLocation( + params: MapsAppRegionMapLocatorParams, + deps: MapsAppRegionMapLocatorDependencies +) { + const { + label, + emsLayerId, + leftFieldName, + termsFieldName, + termsSize, + colorSchema, + indexPatternId, + metricAgg, + metricFieldName, + filters, + query, + timeRange, + hash = true, + } = params; + const initialLayers = [] as unknown as LayerDescriptor[] & SerializableRecord; + const regionMapLayerDescriptor = createRegionMapLayerDescriptor({ + label, + emsLayerId, + leftFieldName, + termsFieldName, + termsSize, + colorSchema, + indexPatternId, + metricAgg, + metricFieldName, + }); + if (regionMapLayerDescriptor) { + initialLayers.push(regionMapLayerDescriptor); + } + + return await deps.locator.getLocation({ + initialLayers, + filters, + query, + timeRange, + hash, + }); +} diff --git a/x-pack/plugins/maps/public/locators/region_map_locator/locator_definition.ts b/x-pack/plugins/maps/public/locators/region_map_locator/locator_definition.ts new file mode 100644 index 0000000000000..b8b7e0fba3cb8 --- /dev/null +++ b/x-pack/plugins/maps/public/locators/region_map_locator/locator_definition.ts @@ -0,0 +1,24 @@ +/* + * 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 type { LocatorDefinition } from '@kbn/share-plugin/public'; +import type { MapsAppRegionMapLocatorParams, MapsAppRegionMapLocatorDependencies } from './types'; + +export const MAPS_APP_REGION_MAP_LOCATOR = 'MAPS_APP_REGION_MAP_LOCATOR' as const; + +export class MapsAppRegionMapLocatorDefinition + implements LocatorDefinition +{ + public readonly id = MAPS_APP_REGION_MAP_LOCATOR; + + constructor(protected readonly deps: MapsAppRegionMapLocatorDependencies) {} + + public readonly getLocation = async (params: MapsAppRegionMapLocatorParams) => { + const { getLocation } = await import('./get_location'); + return getLocation(params, this.deps); + }; +} diff --git a/x-pack/plugins/maps/public/locators/region_map_locator/types.ts b/x-pack/plugins/maps/public/locators/region_map_locator/types.ts new file mode 100644 index 0000000000000..f42ee3554ee0c --- /dev/null +++ b/x-pack/plugins/maps/public/locators/region_map_locator/types.ts @@ -0,0 +1,33 @@ +/* + * 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 type { SerializableRecord } from '@kbn/utility-types'; +import type { Filter, TimeRange, Query } from '@kbn/es-query'; +import type { LocatorPublic } from '@kbn/share-plugin/public'; +import type { MapsAppLocator } from '../map_locator/types'; + +export interface MapsAppRegionMapLocatorParams extends SerializableRecord { + label: string; + emsLayerId?: string; + leftFieldName?: string; + termsFieldName?: string; + termsSize?: number; + colorSchema: string; + indexPatternId?: string; + metricAgg: string; + metricFieldName?: string; + timeRange?: TimeRange; + filters?: Filter[]; + query?: Query; + hash?: boolean; +} + +export type MapsAppRegionMapLocator = LocatorPublic; + +export interface MapsAppRegionMapLocatorDependencies { + locator: MapsAppLocator; +} diff --git a/x-pack/plugins/maps/public/locators/tile_map_locator/get_location.ts b/x-pack/plugins/maps/public/locators/tile_map_locator/get_location.ts new file mode 100644 index 0000000000000..fb7bb0b7d3bd3 --- /dev/null +++ b/x-pack/plugins/maps/public/locators/tile_map_locator/get_location.ts @@ -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 type { SerializableRecord } from '@kbn/utility-types'; +import type { LayerDescriptor } from '../../../common/descriptor_types'; +import { createTileMapLayerDescriptor } from '../../classes/layers/create_tile_map_layer_descriptor'; +import type { MapsAppTileMapLocatorParams, MapsAppTileMapLocatorDependencies } from './types'; + +export async function getLocation( + params: MapsAppTileMapLocatorParams, + deps: MapsAppTileMapLocatorDependencies +) { + const { + label, + mapType, + colorSchema, + indexPatternId, + geoFieldName, + metricAgg, + metricFieldName, + filters, + query, + timeRange, + hash = true, + } = params; + const initialLayers = [] as unknown as LayerDescriptor[] & SerializableRecord; + const tileMapLayerDescriptor = createTileMapLayerDescriptor({ + label, + mapType, + colorSchema, + indexPatternId, + geoFieldName, + metricAgg, + metricFieldName, + }); + + if (tileMapLayerDescriptor) { + initialLayers.push(tileMapLayerDescriptor); + } + + return await deps.locator.getLocation({ + initialLayers, + filters, + query, + timeRange, + hash, + }); +} diff --git a/x-pack/plugins/maps/public/locators/tile_map_locator/locator_definition.ts b/x-pack/plugins/maps/public/locators/tile_map_locator/locator_definition.ts new file mode 100644 index 0000000000000..e511d641fc5ae --- /dev/null +++ b/x-pack/plugins/maps/public/locators/tile_map_locator/locator_definition.ts @@ -0,0 +1,24 @@ +/* + * 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 type { LocatorDefinition } from '@kbn/share-plugin/public'; +import type { MapsAppTileMapLocatorParams, MapsAppTileMapLocatorDependencies } from './types'; + +export const MAPS_APP_TILE_MAP_LOCATOR = 'MAPS_APP_TILE_MAP_LOCATOR' as const; + +export class MapsAppTileMapLocatorDefinition + implements LocatorDefinition +{ + public readonly id = MAPS_APP_TILE_MAP_LOCATOR; + + constructor(protected readonly deps: MapsAppTileMapLocatorDependencies) {} + + public readonly getLocation = async (params: MapsAppTileMapLocatorParams) => { + const { getLocation } = await import('./get_location'); + return getLocation(params, this.deps); + }; +} diff --git a/x-pack/plugins/maps/public/locators/tile_map_locator/types.ts b/x-pack/plugins/maps/public/locators/tile_map_locator/types.ts new file mode 100644 index 0000000000000..5743feca993d6 --- /dev/null +++ b/x-pack/plugins/maps/public/locators/tile_map_locator/types.ts @@ -0,0 +1,31 @@ +/* + * 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 type { SerializableRecord } from '@kbn/utility-types'; +import type { Filter, TimeRange, Query } from '@kbn/es-query'; +import type { LocatorPublic } from '@kbn/share-plugin/public'; +import type { MapsAppLocator } from '../map_locator/types'; + +export interface MapsAppTileMapLocatorParams extends SerializableRecord { + label: string; + mapType: string; + colorSchema: string; + indexPatternId?: string; + geoFieldName?: string; + metricAgg: string; + metricFieldName?: string; + timeRange?: TimeRange; + filters?: Filter[]; + query?: Query; + hash?: boolean; +} + +export type MapsAppTileMapLocator = LocatorPublic; + +export interface MapsAppTileMapLocatorDependencies { + locator: MapsAppLocator; +} diff --git a/x-pack/plugins/maps/public/map_attribute_service.ts b/x-pack/plugins/maps/public/map_attribute_service.ts index b93c5421f5cb3..5a4d3e8cf0038 100644 --- a/x-pack/plugins/maps/public/map_attribute_service.ts +++ b/x-pack/plugins/maps/public/map_attribute_service.ts @@ -10,8 +10,7 @@ import type { ResolvedSimpleSavedObject } from '@kbn/core/public'; import { AttributeService } from '@kbn/embeddable-plugin/public'; import type { OnSaveProps } from '@kbn/saved-objects-plugin/public'; import type { MapAttributes } from '../common/content_management'; -import { MAP_SAVED_OBJECT_TYPE } from '../common/constants'; -import { getMapEmbeddableDisplayName } from '../common/i18n_getters'; +import { MAP_EMBEDDABLE_NAME, MAP_SAVED_OBJECT_TYPE } from '../common/constants'; import { getCoreOverlays, getEmbeddableService } from './kibana_services'; import { extractReferences, injectReferences } from '../common/migrations/references'; import { mapsClient, checkForDuplicateTitle } from './content_management'; @@ -108,7 +107,7 @@ export function getMapAttributeService(): MapAttributeService { copyOnSave: false, lastSavedTitle: '', isTitleDuplicateConfirmed: props.isTitleDuplicateConfirmed, - getDisplayName: getMapEmbeddableDisplayName, + getDisplayName: () => MAP_EMBEDDABLE_NAME, onTitleDuplicate: props.onTitleDuplicate, }, { diff --git a/x-pack/plugins/maps/public/plugin.ts b/x-pack/plugins/maps/public/plugin.ts index 0d558699e6e51..75c4211c54d58 100644 --- a/x-pack/plugins/maps/public/plugin.ts +++ b/x-pack/plugins/maps/public/plugin.ts @@ -56,32 +56,29 @@ import { tileMapRenderer, tileMapVisType, } from './legacy_visualizations'; -import { - MapsAppLocatorDefinition, - MapsAppRegionMapLocatorDefinition, - MapsAppTileMapLocatorDefinition, -} from './locators'; +import { MapsAppLocatorDefinition } from './locators/map_locator/locator_definition'; +import { MapsAppTileMapLocatorDefinition } from './locators/tile_map_locator/locator_definition'; +import { MapsAppRegionMapLocatorDefinition } from './locators/region_map_locator/locator_definition'; import { registerLicensedFeatures, setLicensingPluginStart } from './licensed_features'; import { registerSource } from './classes/sources/source_registry'; -import { registerLayerWizardExternal } from './classes/layers'; +import { registerLayerWizardExternal } from './classes/layers/wizards/layer_wizard_registry'; import { createLayerDescriptors, MapsSetupApi, MapsStartApi, suggestEMSTermJoinConfig, } from './api'; -import { lazyLoadMapModules } from './lazy_load_bundle'; -import { getAppTitle } from '../common/i18n_getters'; import { MapsXPackConfig, MapsConfigType } from '../config'; import { MapEmbeddableFactory } from './embeddable/map_embeddable_factory'; -import { filterByMapExtentAction } from './trigger_actions/filter_by_map_extent_action'; -import { synchronizeMovementAction } from './trigger_actions/synchronize_movement_action'; +import { filterByMapExtentAction } from './trigger_actions/filter_by_map_extent/action'; +import { synchronizeMovementAction } from './trigger_actions/synchronize_movement/action'; import { visualizeGeoFieldAction } from './trigger_actions/visualize_geo_field_action'; -import { APP_ICON_SOLUTION, APP_ID, MAP_SAVED_OBJECT_TYPE } from '../common/constants'; +import { APP_NAME, APP_ICON_SOLUTION, APP_ID, MAP_SAVED_OBJECT_TYPE } from '../common/constants'; import { getMapsVisTypeAlias } from './maps_vis_type_alias'; import { featureCatalogueEntry } from './feature_catalogue_entry'; import { setIsCloudEnabled, setMapAppConfig, setStartServices } from './kibana_services'; -import { MapInspectorView, VectorTileInspectorView } from './inspector'; +import { MapInspectorView } from './inspector/map_adapter/map_inspector_view'; +import { VectorTileInspectorView } from './inspector/vector_tile_adapter/vector_tile_inspector_view'; import { setupLensChoroplethChart } from './lens'; import { CONTENT_ID, LATEST_VERSION } from '../common/content_management'; @@ -193,7 +190,7 @@ export class MapsPlugin core.application.register({ id: APP_ID, - title: getAppTitle(), + title: APP_NAME, order: 4000, icon: `plugins/${APP_ID}/icon.svg`, euiIconType: APP_ICON_SOLUTION, @@ -202,7 +199,7 @@ export class MapsPlugin const [coreStart, { savedObjectsTagging }] = await core.getStartServices(); const UsageTracker = plugins.usageCollection?.components.ApplicationUsageTrackingProvider ?? React.Fragment; - const { renderApp } = await lazyLoadMapModules(); + const { renderApp } = await import('./render_app'); return renderApp(params, { coreStart, AppUsageTracker: UsageTracker, savedObjectsTagging }); }, }); @@ -212,7 +209,7 @@ export class MapsPlugin version: { latest: LATEST_VERSION, }, - name: getAppTitle(), + name: APP_NAME, }); setupLensChoroplethChart(core, plugins.expressions, plugins.lens); diff --git a/x-pack/plugins/maps/public/routes/list_page/maps_list_view.tsx b/x-pack/plugins/maps/public/routes/list_page/maps_list_view.tsx index e1ce3e801aac3..95063f728a8fc 100644 --- a/x-pack/plugins/maps/public/routes/list_page/maps_list_view.tsx +++ b/x-pack/plugins/maps/public/routes/list_page/maps_list_view.tsx @@ -13,7 +13,7 @@ import { TableListView } from '@kbn/content-management-table-list'; import type { UserContentCommonSchema } from '@kbn/content-management-table-list'; import type { MapItem } from '../../../common/content_management'; -import { APP_ID, getEditPath, MAP_PATH } from '../../../common/constants'; +import { APP_ID, APP_NAME, getEditPath, MAP_PATH } from '../../../common/constants'; import { getMapsCapabilities, getCoreChrome, @@ -22,7 +22,6 @@ import { getUiSettings, getUsageCollection, } from '../../kibana_services'; -import { getAppTitle } from '../../../common/i18n_getters'; import { mapsClient } from '../../content_management'; const SAVED_OBJECTS_LIMIT_SETTING = 'savedObjects:listingLimit'; @@ -73,8 +72,8 @@ function MapsListViewComp({ history }: Props) { const listingLimit = getUiSettings().get(SAVED_OBJECTS_LIMIT_SETTING); const initialPageSize = getUiSettings().get(SAVED_OBJECTS_PER_PAGE_SETTING); - getCoreChrome().docTitle.change(getAppTitle()); - getCoreChrome().setBreadcrumbs([{ text: getAppTitle() }]); + getCoreChrome().docTitle.change(APP_NAME); + getCoreChrome().setBreadcrumbs([{ text: APP_NAME }]); const findMaps = useCallback( async ( @@ -128,7 +127,7 @@ function MapsListViewComp({ history }: Props) { entityNamePlural={i18n.translate('xpack.maps.mapListing.entityNamePlural', { defaultMessage: 'maps', })} - tableListTitle={getAppTitle()} + tableListTitle={APP_NAME} onClickTitle={({ id }) => history.push(getEditPath(id))} /> ); diff --git a/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx b/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx index 4220e25212f2a..ceb9a487fffdc 100644 --- a/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx +++ b/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx @@ -47,8 +47,12 @@ import { AppStateManager, startAppStateSyncing } from '../url_state'; import { MapContainer } from '../../../connected_components/map_container'; import { getIndexPatternsFromIds } from '../../../index_pattern_util'; import { getTopNavConfig } from '../top_nav_config'; -import { getEditPath, getFullPath, APP_ID } from '../../../../common/constants'; -import { getMapEmbeddableDisplayName } from '../../../../common/i18n_getters'; +import { + getEditPath, + getFullPath, + APP_ID, + MAP_EMBEDDABLE_NAME, +} from '../../../../common/constants'; import { getInitialQuery, getInitialRefreshConfig, @@ -432,7 +436,7 @@ export class MapApp extends React.Component { await spaces.ui.redirectLegacyUrl({ path: newPath, aliasPurpose: sharingSavedObjectProps.aliasPurpose, - objectNoun: getMapEmbeddableDisplayName(), + objectNoun: MAP_EMBEDDABLE_NAME, }); return; } @@ -547,7 +551,7 @@ export class MapApp extends React.Component { const spaces = getSpacesApi(); return spaces && sharingSavedObjectProps?.outcome === 'conflict' ? spaces.ui.components.getLegacyUrlConflict({ - objectNoun: getMapEmbeddableDisplayName(), + objectNoun: MAP_EMBEDDABLE_NAME, currentObjectId: this.props.savedMap.getSavedObjectId()!, otherObjectId: sharingSavedObjectProps.aliasTargetId!, otherObjectPath: `${getEditPath(sharingSavedObjectProps.aliasTargetId!)}${ diff --git a/x-pack/plugins/maps/public/routes/map_page/saved_map/get_breadcrumbs.tsx b/x-pack/plugins/maps/public/routes/map_page/saved_map/get_breadcrumbs.tsx index ca3022043cd9f..344722a480b08 100644 --- a/x-pack/plugins/maps/public/routes/map_page/saved_map/get_breadcrumbs.tsx +++ b/x-pack/plugins/maps/public/routes/map_page/saved_map/get_breadcrumbs.tsx @@ -8,7 +8,7 @@ import { i18n } from '@kbn/i18n'; import { ScopedHistory } from '@kbn/core/public'; import { getCoreOverlays, getNavigateToApp } from '../../../kibana_services'; -import { getAppTitle } from '../../../../common/i18n_getters'; +import { APP_NAME } from '../../../../common/constants'; export const unsavedChangesWarning = i18n.translate( 'xpack.maps.breadCrumbs.unsavedChangesWarning', @@ -49,7 +49,7 @@ export function getBreadcrumbs({ if (!isByValue) { breadcrumbs.push({ - text: getAppTitle(), + text: APP_NAME, onClick: async () => { if (getHasUnsavedChanges()) { const confirmed = await getCoreOverlays().openConfirm(unsavedChangesWarning, { diff --git a/x-pack/plugins/maps/public/routes/map_page/top_nav_config.tsx b/x-pack/plugins/maps/public/routes/map_page/top_nav_config.tsx index 8b7efa9335858..6bef5987dd9f8 100644 --- a/x-pack/plugins/maps/public/routes/map_page/top_nav_config.tsx +++ b/x-pack/plugins/maps/public/routes/map_page/top_nav_config.tsx @@ -27,8 +27,8 @@ import { getSavedObjectsTagging, getPresentationUtilContext, } from '../../kibana_services'; +import { MAP_EMBEDDABLE_NAME } from '../../../common/constants'; import { SavedMap } from './saved_map'; -import { getMapEmbeddableDisplayName } from '../../../common/i18n_getters'; import { checkForDuplicateTitle } from '../../content_management'; const SavedObjectSaveModalDashboard = withSuspense(LazySavedObjectSaveModalDashboard); @@ -179,7 +179,7 @@ export function getTopNavConfig({ copyOnSave: props.newCopyOnSave, lastSavedTitle: savedMap.getSavedObjectId() ? savedMap.getTitle() : '', isTitleDuplicateConfirmed: props.isTitleDuplicateConfirmed, - getDisplayName: getMapEmbeddableDisplayName, + getDisplayName: () => MAP_EMBEDDABLE_NAME, onTitleDuplicate: props.onTitleDuplicate, }, { diff --git a/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent_action.tsx b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/action.ts similarity index 63% rename from x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent_action.tsx rename to x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/action.ts index c2183774cf677..5e21c28d69fe1 100644 --- a/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent_action.tsx +++ b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/action.ts @@ -5,25 +5,13 @@ * 2.0. */ -import React from 'react'; import { i18n } from '@kbn/i18n'; -import { Embeddable, EmbeddableInput } from '@kbn/embeddable-plugin/public'; -import { createReactOverlays } from '@kbn/kibana-react-plugin/public'; +import type { Embeddable } from '@kbn/embeddable-plugin/public'; import { createAction } from '@kbn/ui-actions-plugin/public'; -import { isLegacyMap } from '../legacy_visualizations'; -import { MAP_SAVED_OBJECT_TYPE } from '../../common/constants'; -import { getCore } from '../kibana_services'; +import type { FilterByMapExtentActionContext, FilterByMapExtentInput } from './types'; export const FILTER_BY_MAP_EXTENT = 'FILTER_BY_MAP_EXTENT'; -interface FilterByMapExtentInput extends EmbeddableInput { - filterByMapExtent: boolean; -} - -interface FilterByMapExtentActionContext { - embeddable: Embeddable; -} - function getContainerLabel(embeddable: Embeddable) { return embeddable.parent?.type === 'dashboard' ? i18n.translate('xpack.maps.filterByMapExtentMenuItem.dashboardLabel', { @@ -58,20 +46,12 @@ export const filterByMapExtentAction = createAction { return 'filter'; }, - isCompatible: async ({ embeddable }: FilterByMapExtentActionContext) => { - return ( - (embeddable.type === MAP_SAVED_OBJECT_TYPE || isLegacyMap(embeddable)) && - !embeddable.getInput().disableTriggers - ); + isCompatible: async (context: FilterByMapExtentActionContext) => { + const { isCompatible } = await import('./is_compatible'); + return isCompatible(context); }, execute: async (context: FilterByMapExtentActionContext) => { - const { FilterByMapExtentModal } = await import('./filter_by_map_extent_modal'); - const { openModal } = createReactOverlays(getCore()); - const modalSession = openModal( - modalSession.close()} - title={getDisplayName(context.embeddable)} - /> - ); + const { openModal } = await import('./modal'); + openModal(getDisplayName(context.embeddable)); }, }); diff --git a/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/is_compatible.ts b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/is_compatible.ts new file mode 100644 index 0000000000000..32892b6fdc18b --- /dev/null +++ b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/is_compatible.ts @@ -0,0 +1,17 @@ +/* + * 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 { MAP_SAVED_OBJECT_TYPE } from '../../../common/constants'; +import { isLegacyMap } from '../../legacy_visualizations/is_legacy_map'; +import type { FilterByMapExtentActionContext } from './types'; + +export function isCompatible({ embeddable }: FilterByMapExtentActionContext) { + return ( + (embeddable.type === MAP_SAVED_OBJECT_TYPE || isLegacyMap(embeddable)) && + !embeddable.getInput().disableTriggers + ); +} diff --git a/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent_modal.tsx b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/modal.tsx similarity index 78% rename from x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent_modal.tsx rename to x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/modal.tsx index 206f754ae65bb..9e5127f9329ba 100644 --- a/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent_modal.tsx +++ b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/modal.tsx @@ -14,14 +14,23 @@ import { EuiSwitch, EuiSwitchEvent, } from '@elastic/eui'; -import { mapEmbeddablesSingleton } from '../embeddable/map_embeddables_singleton'; +import { createReactOverlays } from '@kbn/kibana-react-plugin/public'; +import { mapEmbeddablesSingleton } from '../../embeddable/map_embeddables_singleton'; +import { getCore } from '../../kibana_services'; + +export function openModal(title: string) { + const { openModal: reactOverlaysOpenModal } = createReactOverlays(getCore()); + const modalSession = reactOverlaysOpenModal( + modalSession.close()} title={title} /> + ); +} interface Props { onClose: () => void; title: string; } -export class FilterByMapExtentModal extends Component { +class FilterByMapExtentModal extends Component { _renderSwitches() { return mapEmbeddablesSingleton.getMapPanels().map((mapPanel) => { return ( diff --git a/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/types.ts b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/types.ts new file mode 100644 index 0000000000000..5587588b60730 --- /dev/null +++ b/x-pack/plugins/maps/public/trigger_actions/filter_by_map_extent/types.ts @@ -0,0 +1,16 @@ +/* + * 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 type { Embeddable, EmbeddableInput } from '@kbn/embeddable-plugin/public'; + +export interface FilterByMapExtentInput extends EmbeddableInput { + filterByMapExtent: boolean; +} + +export interface FilterByMapExtentActionContext { + embeddable: Embeddable; +} diff --git a/x-pack/plugins/maps/public/trigger_actions/get_maps_link.ts b/x-pack/plugins/maps/public/trigger_actions/get_maps_link.ts new file mode 100644 index 0000000000000..da0e8bac59235 --- /dev/null +++ b/x-pack/plugins/maps/public/trigger_actions/get_maps_link.ts @@ -0,0 +1,50 @@ +/* + * 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 { v4 as uuidv4 } from 'uuid'; +import type { Query } from '@kbn/es-query'; +import type { SerializableRecord } from '@kbn/utility-types'; +import type { VisualizeFieldContext } from '@kbn/ui-actions-plugin/public'; +import { getIndexPatternService, getData, getShareService } from '../kibana_services'; +import { LAYER_TYPE, SOURCE_TYPES, SCALING_TYPES } from '../../common/constants'; +import type { LayerDescriptor } from '../../common/descriptor_types'; +import type { MapsAppLocator } from '../locators/map_locator/types'; +import { MAPS_APP_LOCATOR } from '../locators/map_locator/locator_definition'; + +export const getMapsLink = async (context: VisualizeFieldContext) => { + const dataView = await getIndexPatternService().get(context.dataViewSpec.id!); + // create initial layer descriptor + const hasTooltips = + context?.contextualFields?.length && context?.contextualFields[0] !== '_source'; + const initialLayers = [ + { + id: uuidv4(), + visible: true, + type: LAYER_TYPE.MVT_VECTOR, + sourceDescriptor: { + id: uuidv4(), + type: SOURCE_TYPES.ES_SEARCH, + tooltipProperties: hasTooltips ? context.contextualFields : [], + label: dataView.getIndexPattern(), + indexPatternId: context.dataViewSpec.id, + geoField: context.fieldName, + scalingType: SCALING_TYPES.MVT, + }, + }, + ]; + + const locator = getShareService().url.locators.get(MAPS_APP_LOCATOR) as MapsAppLocator; + const location = await locator.getLocation({ + filters: getData().query.filterManager.getFilters(), + query: getData().query.queryString.getQuery() as Query, + initialLayers: initialLayers as unknown as LayerDescriptor[] & SerializableRecord, + timeRange: getData().query.timefilter.timefilter.getTime(), + dataViewSpec: context.dataViewSpec, + }); + + return location; +}; diff --git a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/action.ts b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/action.ts new file mode 100644 index 0000000000000..3a3fd78072865 --- /dev/null +++ b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/action.ts @@ -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 { i18n } from '@kbn/i18n'; +import { createAction } from '@kbn/ui-actions-plugin/public'; +import type { SynchronizeMovementActionContext } from './types'; + +export const SYNCHRONIZE_MOVEMENT_ACTION = 'SYNCHRONIZE_MOVEMENT_ACTION'; + +export const synchronizeMovementAction = createAction({ + id: SYNCHRONIZE_MOVEMENT_ACTION, + type: SYNCHRONIZE_MOVEMENT_ACTION, + order: 21, + getDisplayName: ({ embeddable }: SynchronizeMovementActionContext) => { + return i18n.translate('xpack.maps.synchronizeMovementAction.title', { + defaultMessage: 'Synchronize map movement', + }); + }, + getDisplayNameTooltip: () => { + return i18n.translate('xpack.maps.synchronizeMovementAction.tooltipContent', { + defaultMessage: + 'Synchronize maps, so that if you zoom and pan in one map, the movement is reflected in other maps', + }); + }, + getIconType: () => { + return 'crosshairs'; + }, + isCompatible: async (context: SynchronizeMovementActionContext) => { + const { isCompatible } = await import('./is_compatible'); + return isCompatible(context); + }, + execute: async (context: SynchronizeMovementActionContext) => { + const { openModal } = await import('./modal'); + openModal(); + }, +}); diff --git a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/is_compatible.ts b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/is_compatible.ts new file mode 100644 index 0000000000000..ef73f8bb23d11 --- /dev/null +++ b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/is_compatible.ts @@ -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 type { Embeddable as LensEmbeddable } from '@kbn/lens-plugin/public'; +import { MAP_SAVED_OBJECT_TYPE } from '../../../common/constants'; +import { isLegacyMap } from '../../legacy_visualizations/is_legacy_map'; +import { mapEmbeddablesSingleton } from '../../embeddable/map_embeddables_singleton'; +import type { SynchronizeMovementActionContext } from './types'; + +export function isCompatible({ embeddable }: SynchronizeMovementActionContext) { + if (!mapEmbeddablesSingleton.hasMultipleMaps()) { + return false; + } + + if ( + embeddable.type === 'lens' && + typeof (embeddable as LensEmbeddable).getSavedVis === 'function' && + (embeddable as LensEmbeddable).getSavedVis()?.visualizationType === 'lnsChoropleth' + ) { + return true; + } + + if (isLegacyMap(embeddable)) { + return true; + } + + return embeddable.type === MAP_SAVED_OBJECT_TYPE; +} diff --git a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement_modal.tsx b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/modal.tsx similarity index 84% rename from x-pack/plugins/maps/public/trigger_actions/synchronize_movement_modal.tsx rename to x-pack/plugins/maps/public/trigger_actions/synchronize_movement/modal.tsx index c6a1dae7eb36b..fa3ad5bfa8031 100644 --- a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement_modal.tsx +++ b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/modal.tsx @@ -15,13 +15,22 @@ import { EuiSwitch, EuiSwitchEvent, } from '@elastic/eui'; -import { mapEmbeddablesSingleton } from '../embeddable/map_embeddables_singleton'; +import { createReactOverlays } from '@kbn/kibana-react-plugin/public'; +import { mapEmbeddablesSingleton } from '../../embeddable/map_embeddables_singleton'; +import { getCore } from '../../kibana_services'; + +export function openModal() { + const { openModal: reactOverlaysOpenModal } = createReactOverlays(getCore()); + const modalSession = reactOverlaysOpenModal( + modalSession.close()} /> + ); +} interface Props { onClose: () => void; } -export class SynchronizeMovementModal extends Component { +class SynchronizeMovementModal extends Component { _renderSwitches() { const mapPanels = mapEmbeddablesSingleton.getMapPanels(); diff --git a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/types.ts b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/types.ts new file mode 100644 index 0000000000000..8b0060ab1efe6 --- /dev/null +++ b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement/types.ts @@ -0,0 +1,12 @@ +/* + * 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 type { Embeddable, EmbeddableInput } from '@kbn/embeddable-plugin/public'; + +export interface SynchronizeMovementActionContext { + embeddable: Embeddable; +} diff --git a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement_action.tsx b/x-pack/plugins/maps/public/trigger_actions/synchronize_movement_action.tsx deleted file mode 100644 index 7116e55fd521d..0000000000000 --- a/x-pack/plugins/maps/public/trigger_actions/synchronize_movement_action.tsx +++ /dev/null @@ -1,69 +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 { i18n } from '@kbn/i18n'; -import { createReactOverlays } from '@kbn/kibana-react-plugin/public'; -import { Embeddable, EmbeddableInput } from '@kbn/embeddable-plugin/public'; -import { createAction } from '@kbn/ui-actions-plugin/public'; -import type { Embeddable as LensEmbeddable } from '@kbn/lens-plugin/public'; -import { isLegacyMap } from '../legacy_visualizations'; -import { MAP_SAVED_OBJECT_TYPE } from '../../common/constants'; -import { getCore } from '../kibana_services'; - -export const SYNCHRONIZE_MOVEMENT_ACTION = 'SYNCHRONIZE_MOVEMENT_ACTION'; - -interface SynchronizeMovementActionContext { - embeddable: Embeddable; -} - -export const synchronizeMovementAction = createAction({ - id: SYNCHRONIZE_MOVEMENT_ACTION, - type: SYNCHRONIZE_MOVEMENT_ACTION, - order: 21, - getDisplayName: ({ embeddable }: SynchronizeMovementActionContext) => { - return i18n.translate('xpack.maps.synchronizeMovementAction.title', { - defaultMessage: 'Synchronize map movement', - }); - }, - getDisplayNameTooltip: () => { - return i18n.translate('xpack.maps.synchronizeMovementAction.tooltipContent', { - defaultMessage: - 'Synchronize maps, so that if you zoom and pan in one map, the movement is reflected in other maps', - }); - }, - getIconType: () => { - return 'crosshairs'; - }, - isCompatible: async ({ embeddable }: SynchronizeMovementActionContext) => { - const { mapEmbeddablesSingleton } = await import('../embeddable/map_embeddables_singleton'); - if (!mapEmbeddablesSingleton.hasMultipleMaps()) { - return false; - } - - if ( - embeddable.type === 'lens' && - typeof (embeddable as LensEmbeddable).getSavedVis === 'function' && - (embeddable as LensEmbeddable).getSavedVis()?.visualizationType === 'lnsChoropleth' - ) { - return true; - } - - if (isLegacyMap(embeddable)) { - return true; - } - - return embeddable.type === MAP_SAVED_OBJECT_TYPE; - }, - execute: async ({ embeddable }: SynchronizeMovementActionContext) => { - const { SynchronizeMovementModal } = await import('./synchronize_movement_modal'); - const { openModal } = createReactOverlays(getCore()); - const modalSession = openModal( - modalSession.close()} /> - ); - }, -}); diff --git a/x-pack/plugins/maps/public/trigger_actions/visualize_geo_field_action.ts b/x-pack/plugins/maps/public/trigger_actions/visualize_geo_field_action.ts index c1194fec094a3..417ff0d0bf1fe 100644 --- a/x-pack/plugins/maps/public/trigger_actions/visualize_geo_field_action.ts +++ b/x-pack/plugins/maps/public/trigger_actions/visualize_geo_field_action.ts @@ -5,10 +5,7 @@ * 2.0. */ -import { v4 as uuidv4 } from 'uuid'; import { i18n } from '@kbn/i18n'; -import type { Query } from '@kbn/es-query'; -import type { SerializableRecord } from '@kbn/utility-types'; import { METRIC_TYPE } from '@kbn/analytics'; import { createAction, @@ -18,16 +15,7 @@ import { import { getUsageCollection } from '../kibana_services'; import { APP_ID } from '../../common/constants'; -import { - getVisualizeCapabilities, - getIndexPatternService, - getData, - getShareService, - getCore, -} from '../kibana_services'; -import { MapsAppLocator, MAPS_APP_LOCATOR } from '../locators'; -import { LAYER_TYPE, SOURCE_TYPES, SCALING_TYPES } from '../../common/constants'; -import { LayerDescriptor } from '../../common/descriptor_types'; +import { getVisualizeCapabilities, getCore } from '../kibana_services'; export const visualizeGeoFieldAction = createAction({ id: ACTION_VISUALIZE_GEO_FIELD, @@ -38,6 +26,7 @@ export const visualizeGeoFieldAction = createAction({ }), isCompatible: async () => !!getVisualizeCapabilities().show, getHref: async (context) => { + const { getMapsLink } = await import('./get_maps_link'); const { app, path } = await getMapsLink(context); return getCore().application.getUrlForApp(app, { @@ -46,6 +35,7 @@ export const visualizeGeoFieldAction = createAction({ }); }, execute: async (context) => { + const { getMapsLink } = await import('./get_maps_link'); const { app, path, state } = await getMapsLink(context); const usageCollection = getUsageCollection(); @@ -61,37 +51,3 @@ export const visualizeGeoFieldAction = createAction({ }); }, }); - -const getMapsLink = async (context: VisualizeFieldContext) => { - const dataView = await getIndexPatternService().get(context.dataViewSpec.id!); - // create initial layer descriptor - const hasTooltips = - context?.contextualFields?.length && context?.contextualFields[0] !== '_source'; - const initialLayers = [ - { - id: uuidv4(), - visible: true, - type: LAYER_TYPE.MVT_VECTOR, - sourceDescriptor: { - id: uuidv4(), - type: SOURCE_TYPES.ES_SEARCH, - tooltipProperties: hasTooltips ? context.contextualFields : [], - label: dataView.getIndexPattern(), - indexPatternId: context.dataViewSpec.id, - geoField: context.fieldName, - scalingType: SCALING_TYPES.MVT, - }, - }, - ]; - - const locator = getShareService().url.locators.get(MAPS_APP_LOCATOR) as MapsAppLocator; - const location = await locator.getLocation({ - filters: getData().query.filterManager.getFilters(), - query: getData().query.queryString.getQuery() as Query, - initialLayers: initialLayers as unknown as LayerDescriptor[] & SerializableRecord, - timeRange: getData().query.timefilter.timefilter.getTime(), - dataViewSpec: context.dataViewSpec, - }); - - return location; -}; diff --git a/x-pack/plugins/maps/public/util.ts b/x-pack/plugins/maps/public/util.ts index 364f72c0b564e..bed83da7e8335 100644 --- a/x-pack/plugins/maps/public/util.ts +++ b/x-pack/plugins/maps/public/util.ts @@ -6,11 +6,12 @@ */ import { EMSClient, FileLayer, TMSService } from '@elastic/ems-client'; -import { getTilemap, getEMSSettings, getMapsEmsStart } from './kibana_services'; +import { getEMSSettings, getMapsEmsStart } from './kibana_services'; import { getLicenseId } from './licensed_features'; export function getKibanaTileMap(): unknown { - return getTilemap(); + const mapsEms = getMapsEmsStart(); + return mapsEms.config.tilemap ? mapsEms.config.tilemap : {}; } export async function getEmsFileLayers(): Promise { diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 3756275f49b70..21137b5344e2e 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -20422,7 +20422,6 @@ "xpack.maps.addLayerPanel.changeDataSourceButtonLabel": "Changer de calque", "xpack.maps.addLayerPanel.footer.cancelButtonLabel": "Annuler", "xpack.maps.aggs.defaultCountLabel": "compte", - "xpack.maps.appTitle": "Cartes", "xpack.maps.attribution.addBtnAriaLabel": "Ajouter une attribution", "xpack.maps.attribution.addBtnLabel": "Ajouter une attribution", "xpack.maps.attribution.applyBtnLabel": "Appliquer", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index f209a10ee17fa..74b4c94ef5d1c 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -20422,7 +20422,6 @@ "xpack.maps.addLayerPanel.changeDataSourceButtonLabel": "レイヤーを変更", "xpack.maps.addLayerPanel.footer.cancelButtonLabel": "キャンセル", "xpack.maps.aggs.defaultCountLabel": "カウント", - "xpack.maps.appTitle": "マップ", "xpack.maps.attribution.addBtnAriaLabel": "属性を追加", "xpack.maps.attribution.addBtnLabel": "属性を追加", "xpack.maps.attribution.applyBtnLabel": "適用", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 8543c48afec38..d78366da8b8c7 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -20422,7 +20422,6 @@ "xpack.maps.addLayerPanel.changeDataSourceButtonLabel": "更改图层", "xpack.maps.addLayerPanel.footer.cancelButtonLabel": "取消", "xpack.maps.aggs.defaultCountLabel": "计数", - "xpack.maps.appTitle": "Maps", "xpack.maps.attribution.addBtnAriaLabel": "添加归因", "xpack.maps.attribution.addBtnLabel": "添加归因", "xpack.maps.attribution.applyBtnLabel": "应用", From c76a68bd899508dc54e313bdf0c73a133c742d24 Mon Sep 17 00:00:00 2001 From: Ersin Erdal <92688503+ersin-erdal@users.noreply.github.com> Date: Tue, 18 Apr 2023 14:56:57 +0200 Subject: [PATCH 027/144] Make TaskManager health status error/warning reasons more visible (#154045) Resolves: #152289 With this PR we make some of the `debug` logs `warn` and return the message to the health API as reason to add in the status summary message. --- .../lib/calculate_health_status.mock.ts | 14 ----- .../server/lib/calculate_health_status.ts | 24 +++++--- .../server/lib/log_health_metrics.test.ts | 40 +++++++++---- .../server/lib/log_health_metrics.ts | 9 +-- .../server/monitoring/capacity_estimation.ts | 24 ++++---- .../monitoring/monitoring_stats_stream.ts | 1 + .../monitoring/task_run_statistics.test.ts | 12 ++-- .../server/monitoring/task_run_statistics.ts | 4 +- .../task_manager/server/routes/health.test.ts | 59 ++++++++++++------- .../task_manager/server/routes/health.ts | 24 +++++--- 10 files changed, 126 insertions(+), 85 deletions(-) delete mode 100644 x-pack/plugins/task_manager/server/lib/calculate_health_status.mock.ts diff --git a/x-pack/plugins/task_manager/server/lib/calculate_health_status.mock.ts b/x-pack/plugins/task_manager/server/lib/calculate_health_status.mock.ts deleted file mode 100644 index f34a26560133b..0000000000000 --- a/x-pack/plugins/task_manager/server/lib/calculate_health_status.mock.ts +++ /dev/null @@ -1,14 +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. - */ - -const createCalculateHealthStatusMock = () => { - return jest.fn(); -}; - -export const calculateHealthStatusMock = { - create: createCalculateHealthStatusMock, -}; diff --git a/x-pack/plugins/task_manager/server/lib/calculate_health_status.ts b/x-pack/plugins/task_manager/server/lib/calculate_health_status.ts index 8bd7f5de80810..d900e66360820 100644 --- a/x-pack/plugins/task_manager/server/lib/calculate_health_status.ts +++ b/x-pack/plugins/task_manager/server/lib/calculate_health_status.ts @@ -16,7 +16,7 @@ export function calculateHealthStatus( config: TaskManagerConfig, shouldRunTasks: boolean, logger: Logger -): HealthStatus { +): { status: HealthStatus; reason?: string } { const now = Date.now(); // if "hot" health stats are any more stale than monitored_stats_required_freshness @@ -28,27 +28,35 @@ export function calculateHealthStatus( const requiredColdStatsFreshness: number = config.monitored_aggregated_stats_refresh_rate * 1.5; if (hasStatus(summarizedStats.stats, HealthStatus.Error)) { - return HealthStatus.Error; + return { + status: HealthStatus.Error, + reason: summarizedStats.stats.capacity_estimation?.reason, + }; } // Hot timestamps look at runtime stats which are not available when tasks are not running if (shouldRunTasks) { if (hasExpiredHotTimestamps(summarizedStats, now, requiredHotStatsFreshness)) { - logger.debug('setting HealthStatus.Error because of expired hot timestamps'); - return HealthStatus.Error; + const reason = 'setting HealthStatus.Error because of expired hot timestamps'; + logger.warn(reason); + return { status: HealthStatus.Error, reason }; } } if (hasExpiredColdTimestamps(summarizedStats, now, requiredColdStatsFreshness)) { - logger.debug('setting HealthStatus.Error because of expired cold timestamps'); - return HealthStatus.Error; + const reason = 'setting HealthStatus.Error because of expired cold timestamps'; + logger.warn(reason); + return { status: HealthStatus.Error, reason }; } if (hasStatus(summarizedStats.stats, HealthStatus.Warning)) { - return HealthStatus.Warning; + return { + status: HealthStatus.Warning, + reason: summarizedStats.stats.capacity_estimation?.reason, + }; } - return HealthStatus.OK; + return { status: HealthStatus.OK }; } function hasStatus(stats: RawMonitoringStats['stats'], status: HealthStatus): boolean { diff --git a/x-pack/plugins/task_manager/server/lib/log_health_metrics.test.ts b/x-pack/plugins/task_manager/server/lib/log_health_metrics.test.ts index 152f0ae82543e..552648e407fa6 100644 --- a/x-pack/plugins/task_manager/server/lib/log_health_metrics.test.ts +++ b/x-pack/plugins/task_manager/server/lib/log_health_metrics.test.ts @@ -41,16 +41,30 @@ describe('logHealthMetrics', () => { const { calculateHealthStatus } = jest.requireMock('./calculate_health_status'); // We must change from OK to Warning - (calculateHealthStatus as jest.Mock).mockImplementation(() => HealthStatus.OK); + ( + calculateHealthStatus as jest.Mock<{ status: HealthStatus; reason?: string }> + ).mockImplementation(() => ({ + status: HealthStatus.OK, + })); logHealthMetrics(health, logger, config, true, docLinks); - (calculateHealthStatus as jest.Mock).mockImplementation( - () => HealthStatus.Warning - ); + ( + calculateHealthStatus as jest.Mock<{ status: HealthStatus; reason?: string }> + ).mockImplementation(() => ({ + status: HealthStatus.Warning, + })); logHealthMetrics(health, logger, config, true, docLinks); // We must change from OK to Error - (calculateHealthStatus as jest.Mock).mockImplementation(() => HealthStatus.OK); + ( + calculateHealthStatus as jest.Mock<{ status: HealthStatus; reason?: string }> + ).mockImplementation(() => ({ + status: HealthStatus.OK, + })); logHealthMetrics(health, logger, config, true, docLinks); - (calculateHealthStatus as jest.Mock).mockImplementation(() => HealthStatus.Error); + ( + calculateHealthStatus as jest.Mock<{ status: HealthStatus; reason?: string }> + ).mockImplementation(() => ({ + status: HealthStatus.Error, + })); logHealthMetrics(health, logger, config, true, docLinks); const debugCalls = (logger as jest.Mocked).debug.mock.calls; @@ -175,9 +189,11 @@ describe('logHealthMetrics', () => { }); const health = getMockMonitoredHealth(); const { calculateHealthStatus } = jest.requireMock('./calculate_health_status'); - (calculateHealthStatus as jest.Mock).mockImplementation( - () => HealthStatus.Warning - ); + ( + calculateHealthStatus as jest.Mock<{ status: HealthStatus; reason?: string }> + ).mockImplementation(() => ({ + status: HealthStatus.Warning, + })); logHealthMetrics(health, logger, config, true, docLinks); @@ -201,7 +217,11 @@ describe('logHealthMetrics', () => { }); const health = getMockMonitoredHealth(); const { calculateHealthStatus } = jest.requireMock('./calculate_health_status'); - (calculateHealthStatus as jest.Mock).mockImplementation(() => HealthStatus.Error); + ( + calculateHealthStatus as jest.Mock<{ status: HealthStatus; reason?: string }> + ).mockImplementation(() => ({ + status: HealthStatus.Error, + })); logHealthMetrics(health, logger, config, true, docLinks); diff --git a/x-pack/plugins/task_manager/server/lib/log_health_metrics.ts b/x-pack/plugins/task_manager/server/lib/log_health_metrics.ts index eff71b28f8abb..bddafb802b41b 100644 --- a/x-pack/plugins/task_manager/server/lib/log_health_metrics.ts +++ b/x-pack/plugins/task_manager/server/lib/log_health_metrics.ts @@ -40,12 +40,9 @@ export function logHealthMetrics( capacity_estimation: undefined, }, }; - const statusWithoutCapacity = calculateHealthStatus( - healthWithoutCapacity, - config, - shouldRunTasks, - logger - ); + const healthStatus = calculateHealthStatus(healthWithoutCapacity, config, shouldRunTasks, logger); + + const statusWithoutCapacity = healthStatus?.status; if (statusWithoutCapacity === HealthStatus.Warning) { logLevel = LogLevel.Warn; } else if (statusWithoutCapacity === HealthStatus.Error && !isEmpty(monitoredHealth.stats)) { diff --git a/x-pack/plugins/task_manager/server/monitoring/capacity_estimation.ts b/x-pack/plugins/task_manager/server/monitoring/capacity_estimation.ts index 88feea306050c..c710d304445e7 100644 --- a/x-pack/plugins/task_manager/server/monitoring/capacity_estimation.ts +++ b/x-pack/plugins/task_manager/server/monitoring/capacity_estimation.ts @@ -184,13 +184,14 @@ export function estimateCapacity( averageCapacityUsedByNonRecurringAndEphemeralTasksPerKibana + averageRecurringRequiredPerMinute / assumedKibanaInstances; - const status = getHealthStatus(logger, { + const { status, reason } = getHealthStatus(logger, { assumedRequiredThroughputPerMinutePerKibana, assumedAverageRecurringRequiredThroughputPerMinutePerKibana, capacityPerMinutePerKibana, }); return { status, + reason, timestamp: new Date().toISOString(), value: { observed: mapValues( @@ -231,27 +232,28 @@ interface GetHealthStatusParams { capacityPerMinutePerKibana: number; } -function getHealthStatus(logger: Logger, params: GetHealthStatusParams): HealthStatus { +function getHealthStatus( + logger: Logger, + params: GetHealthStatusParams +): { status: HealthStatus; reason?: string } { const { assumedRequiredThroughputPerMinutePerKibana, assumedAverageRecurringRequiredThroughputPerMinutePerKibana, capacityPerMinutePerKibana, } = params; if (assumedRequiredThroughputPerMinutePerKibana < capacityPerMinutePerKibana) { - return HealthStatus.OK; + return { status: HealthStatus.OK }; } if (assumedAverageRecurringRequiredThroughputPerMinutePerKibana < capacityPerMinutePerKibana) { - logger.debug( - `setting HealthStatus.Warning because assumedAverageRecurringRequiredThroughputPerMinutePerKibana (${assumedAverageRecurringRequiredThroughputPerMinutePerKibana}) < capacityPerMinutePerKibana (${capacityPerMinutePerKibana})` - ); - return HealthStatus.Warning; + const reason = `setting HealthStatus.Warning because assumedAverageRecurringRequiredThroughputPerMinutePerKibana (${assumedAverageRecurringRequiredThroughputPerMinutePerKibana}) < capacityPerMinutePerKibana (${capacityPerMinutePerKibana})`; + logger.warn(reason); + return { status: HealthStatus.Warning, reason }; } - logger.debug( - `setting HealthStatus.Error because assumedRequiredThroughputPerMinutePerKibana (${assumedRequiredThroughputPerMinutePerKibana}) >= capacityPerMinutePerKibana (${capacityPerMinutePerKibana}) AND assumedAverageRecurringRequiredThroughputPerMinutePerKibana (${assumedAverageRecurringRequiredThroughputPerMinutePerKibana}) >= capacityPerMinutePerKibana (${capacityPerMinutePerKibana})` - ); - return HealthStatus.Error; + const reason = `setting HealthStatus.Error because assumedRequiredThroughputPerMinutePerKibana (${assumedRequiredThroughputPerMinutePerKibana}) >= capacityPerMinutePerKibana (${capacityPerMinutePerKibana}) AND assumedAverageRecurringRequiredThroughputPerMinutePerKibana (${assumedAverageRecurringRequiredThroughputPerMinutePerKibana}) >= capacityPerMinutePerKibana (${capacityPerMinutePerKibana})`; + logger.warn(reason); + return { status: HealthStatus.Error, reason }; } export function withCapacityEstimate( diff --git a/x-pack/plugins/task_manager/server/monitoring/monitoring_stats_stream.ts b/x-pack/plugins/task_manager/server/monitoring/monitoring_stats_stream.ts index 19485e41c2ae2..e192a72f7092d 100644 --- a/x-pack/plugins/task_manager/server/monitoring/monitoring_stats_stream.ts +++ b/x-pack/plugins/task_manager/server/monitoring/monitoring_stats_stream.ts @@ -68,6 +68,7 @@ export interface MonitoredStat { } export type RawMonitoredStat = MonitoredStat & { status: HealthStatus; + reason?: string; }; export interface RawMonitoringStats { diff --git a/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.test.ts b/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.test.ts index 4d69b23b699b7..0555f75fda278 100644 --- a/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.test.ts +++ b/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.test.ts @@ -375,24 +375,24 @@ describe('Task Run Statistics', () => { { Success: 40, RetryScheduled: 40, Failed: 20, status: 'OK' }, ]); - expect(logger.debug).toHaveBeenCalledTimes(5); - expect(logger.debug).toHaveBeenNthCalledWith( + expect(logger.warn).toHaveBeenCalledTimes(5); + expect(logger.warn).toHaveBeenNthCalledWith( 1, 'Health Status warn threshold has been exceeded, resultFrequencySummary.Failed (40) is greater than warn_threshold (39)' ); - expect(logger.debug).toHaveBeenNthCalledWith( + expect(logger.warn).toHaveBeenNthCalledWith( 2, 'Health Status error threshold has been exceeded, resultFrequencySummary.Failed (60) is greater than error_threshold (59)' ); - expect(logger.debug).toHaveBeenNthCalledWith( + expect(logger.warn).toHaveBeenNthCalledWith( 3, 'Health Status error threshold has been exceeded, resultFrequencySummary.Failed (60) is greater than error_threshold (59)' ); - expect(logger.debug).toHaveBeenNthCalledWith( + expect(logger.warn).toHaveBeenNthCalledWith( 4, 'Health Status error threshold has been exceeded, resultFrequencySummary.Failed (60) is greater than error_threshold (59)' ); - expect(logger.debug).toHaveBeenNthCalledWith( + expect(logger.warn).toHaveBeenNthCalledWith( 5, 'Health Status warn threshold has been exceeded, resultFrequencySummary.Failed (40) is greater than warn_threshold (39)' ); diff --git a/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.ts b/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.ts index 0c6063af19286..8dca615f94190 100644 --- a/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.ts +++ b/x-pack/plugins/task_manager/server/monitoring/task_run_statistics.ts @@ -433,11 +433,11 @@ function getHealthStatus( ): HealthStatus { if (resultFrequencySummary.Failed > executionErrorThreshold.warn_threshold) { if (resultFrequencySummary.Failed > executionErrorThreshold.error_threshold) { - logger.debug( + logger.warn( `Health Status error threshold has been exceeded, resultFrequencySummary.Failed (${resultFrequencySummary.Failed}) is greater than error_threshold (${executionErrorThreshold.error_threshold})` ); } else { - logger.debug( + logger.warn( `Health Status warn threshold has been exceeded, resultFrequencySummary.Failed (${resultFrequencySummary.Failed}) is greater than warn_threshold (${executionErrorThreshold.warn_threshold})` ); } diff --git a/x-pack/plugins/task_manager/server/routes/health.test.ts b/x-pack/plugins/task_manager/server/routes/health.test.ts index 6105b7487163c..c5b9add0ce294 100644 --- a/x-pack/plugins/task_manager/server/routes/health.test.ts +++ b/x-pack/plugins/task_manager/server/routes/health.test.ts @@ -15,15 +15,9 @@ import { mockHandlerArguments } from './_mock_handler_arguments'; import { sleep } from '../test_utils'; import { elasticsearchServiceMock, loggingSystemMock } from '@kbn/core/server/mocks'; import { usageCountersServiceMock } from '@kbn/usage-collection-plugin/server/usage_counters/usage_counters_service.mock'; -import { - HealthStatus, - MonitoringStats, - RawMonitoringStats, - summarizeMonitoringStats, -} from '../monitoring'; +import { MonitoringStats, RawMonitoringStats, summarizeMonitoringStats } from '../monitoring'; import { ServiceStatusLevels, Logger } from '@kbn/core/server'; import { configSchema, TaskManagerConfig } from '../config'; -import { calculateHealthStatusMock } from '../lib/calculate_health_status.mock'; import { FillPoolResult } from '../lib/fill_pool'; jest.mock('../lib/log_health_metrics', () => ({ @@ -191,8 +185,6 @@ describe('healthRoute', () => { it('logs the Task Manager stats at a fixed interval', async () => { const router = httpServiceMock.createRouter(); - const calculateHealthStatus = calculateHealthStatusMock.create(); - calculateHealthStatus.mockImplementation(() => HealthStatus.OK); const { logHealthMetrics } = jest.requireMock('../lib/log_health_metrics'); const mockStat = mockHealthStats(); @@ -253,8 +245,6 @@ describe('healthRoute', () => { it(`logs at a warn level if the status is warning`, async () => { const router = httpServiceMock.createRouter(); - const calculateHealthStatus = calculateHealthStatusMock.create(); - calculateHealthStatus.mockImplementation(() => HealthStatus.Warning); const { logHealthMetrics } = jest.requireMock('../lib/log_health_metrics'); const warnRuntimeStat = mockHealthStats(); @@ -265,7 +255,7 @@ describe('healthRoute', () => { const stats$ = new Subject(); const id = uuidv4(); - healthRoute({ + const { serviceStatus$ } = healthRoute({ router, monitoringStats$: stats$, logger, @@ -287,6 +277,8 @@ describe('healthRoute', () => { docLinks, }); + const serviceStatus = getLatest(serviceStatus$); + stats$.next(warnRuntimeStat); await sleep(1001); stats$.next(warnConfigurationStat); @@ -295,6 +287,12 @@ describe('healthRoute', () => { await sleep(1001); stats$.next(warnEphemeralStat); + expect(await serviceStatus).toMatchObject({ + level: ServiceStatusLevels.degraded, + summary: + 'Task Manager is unhealthy - Reason: setting HealthStatus.Warning because assumedAverageRecurringRequiredThroughputPerMinutePerKibana (78.28472222222223) < capacityPerMinutePerKibana (200)', + }); + expect(logHealthMetrics).toBeCalledTimes(4); expect(logHealthMetrics.mock.calls[0][0]).toMatchObject({ id, @@ -332,8 +330,6 @@ describe('healthRoute', () => { it(`logs at an error level if the status is error`, async () => { const router = httpServiceMock.createRouter(); - const calculateHealthStatus = calculateHealthStatusMock.create(); - calculateHealthStatus.mockImplementation(() => HealthStatus.Error); const { logHealthMetrics } = jest.requireMock('../lib/log_health_metrics'); const errorRuntimeStat = mockHealthStats(); @@ -344,7 +340,7 @@ describe('healthRoute', () => { const stats$ = new Subject(); const id = uuidv4(); - healthRoute({ + const { serviceStatus$ } = healthRoute({ router, monitoringStats$: stats$, logger, @@ -366,6 +362,8 @@ describe('healthRoute', () => { docLinks, }); + const serviceStatus = getLatest(serviceStatus$); + stats$.next(errorRuntimeStat); await sleep(1001); stats$.next(errorConfigurationStat); @@ -374,6 +372,12 @@ describe('healthRoute', () => { await sleep(1001); stats$.next(errorEphemeralStat); + expect(await serviceStatus).toMatchObject({ + level: ServiceStatusLevels.degraded, + summary: + 'Task Manager is unhealthy - Reason: setting HealthStatus.Warning because assumedAverageRecurringRequiredThroughputPerMinutePerKibana (78.28472222222223) < capacityPerMinutePerKibana (200)', + }); + expect(logHealthMetrics).toBeCalledTimes(4); expect(logHealthMetrics.mock.calls[0][0]).toMatchObject({ id, @@ -481,12 +485,13 @@ describe('healthRoute', () => { expect(await serviceStatus).toMatchObject({ level: ServiceStatusLevels.degraded, - summary: 'Task Manager is unhealthy', + summary: + 'Task Manager is unhealthy - Reason: setting HealthStatus.Error because of expired hot timestamps', }); - const debugCalls = (logger as jest.Mocked).debug.mock.calls as string[][]; + const warnCalls = (logger as jest.Mocked).warn.mock.calls as string[][]; const warnMessage = /^setting HealthStatus.Warning because assumedAverageRecurringRequiredThroughputPerMinutePerKibana/; - const found = debugCalls + const found = warnCalls .map((arr) => arr[0]) .find((message) => message.match(warnMessage) != null); expect(found).toMatch(warnMessage); @@ -497,7 +502,7 @@ describe('healthRoute', () => { const stats$ = new Subject(); - healthRoute({ + const { serviceStatus$ } = healthRoute({ router, monitoringStats$: stats$, logger, @@ -514,6 +519,8 @@ describe('healthRoute', () => { docLinks, }); + const serviceStatus = getLatest(serviceStatus$); + await sleep(0); const lastUpdateOfWorkload = new Date(Date.now() - 120000).toISOString(); @@ -533,6 +540,11 @@ describe('healthRoute', () => { await sleep(2000); + expect(await serviceStatus).toMatchObject({ + level: ServiceStatusLevels.degraded, + summary: + 'Task Manager is unhealthy - Reason: setting HealthStatus.Error because of expired cold timestamps', + }); expect(await handler(context, req, res)).toMatchObject({ body: { status: 'error', @@ -572,7 +584,7 @@ describe('healthRoute', () => { const router = httpServiceMock.createRouter(); const stats$ = new Subject(); - healthRoute({ + const { serviceStatus$ } = healthRoute({ router, monitoringStats$: stats$, logger, @@ -588,7 +600,7 @@ describe('healthRoute', () => { shouldRunTasks: true, docLinks, }); - + const serviceStatus = getLatest(serviceStatus$); await sleep(0); // eslint-disable-next-line @typescript-eslint/naming-convention @@ -611,6 +623,11 @@ describe('healthRoute', () => { const [context, req, res] = mockHandlerArguments({}, {}, ['ok']); + expect(await serviceStatus).toMatchObject({ + level: ServiceStatusLevels.degraded, + summary: + 'Task Manager is unhealthy - Reason: setting HealthStatus.Error because of expired hot timestamps', + }); expect(await handler(context, req, res)).toMatchObject({ body: { status: 'error', diff --git a/x-pack/plugins/task_manager/server/routes/health.ts b/x-pack/plugins/task_manager/server/routes/health.ts index 9ae3cee2bdcf5..7a348147b0b76 100644 --- a/x-pack/plugins/task_manager/server/routes/health.ts +++ b/x-pack/plugins/task_manager/server/routes/health.ts @@ -30,6 +30,7 @@ import { calculateHealthStatus } from '../lib/calculate_health_status'; export type MonitoredHealth = RawMonitoringStats & { id: string; + reason?: string; status: HealthStatus; timestamp: string; }; @@ -87,10 +88,15 @@ export function healthRoute(params: HealthRouteParams): { function getHealthStatus(monitoredStats: MonitoringStats) { const summarizedStats = summarizeMonitoringStats(logger, monitoredStats, config); - const status = calculateHealthStatus(summarizedStats, config, shouldRunTasks, logger); + const { status, reason } = calculateHealthStatus( + summarizedStats, + config, + shouldRunTasks, + logger + ); const now = Date.now(); const timestamp = new Date(now).toISOString(); - return { id: taskManagerId, timestamp, status, ...summarizedStats }; + return { id: taskManagerId, timestamp, status, reason, ...summarizedStats }; } const serviceStatus$: Subject = new Subject(); @@ -106,7 +112,7 @@ export function healthRoute(params: HealthRouteParams): { tap((stats) => { lastMonitoredStats = stats; }), - // Only calculate the summerized stats (calculates all runnign averages and evaluates state) + // Only calculate the summarized stats (calculates all running averages and evaluates state) // when needed by throttling down to the requiredHotStatsFreshness map((stats) => withServiceStatus(getHealthStatus(stats))) ) @@ -174,15 +180,19 @@ export function healthRoute(params: HealthRouteParams): { export function withServiceStatus( monitoredHealth: MonitoredHealth ): [MonitoredHealth, TaskManagerServiceStatus] { + const { reason, status } = monitoredHealth; + const level = - monitoredHealth.status === HealthStatus.OK - ? ServiceStatusLevels.available - : ServiceStatusLevels.degraded; + status === HealthStatus.OK ? ServiceStatusLevels.available : ServiceStatusLevels.degraded; + + const defaultMessage = LEVEL_SUMMARY[level.toString()]; + const summary = reason ? `${defaultMessage} - Reason: ${reason}` : defaultMessage; + return [ monitoredHealth, { level, - summary: LEVEL_SUMMARY[level.toString()], + summary, }, ]; } From dfbb97f307e88c8f94b3c6c85edb0efc86754943 Mon Sep 17 00:00:00 2001 From: Stratoula Kalafateli Date: Tue, 18 Apr 2023 16:02:35 +0300 Subject: [PATCH 028/144] [Inspector] Improve the display when there are many columns (#155119) ## Summary Fixes https://github.com/elastic/kibana/issues/112176 Improves the way the inspector table is rendered when there are multiple columns. I just applied the eui team feedback **Now** image **Before** image --- .../__snapshots__/data_view.test.tsx.snap | 8 ++++---- .../components/data_table.tsx | 17 +++++++++++++++-- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/src/plugins/data/public/utils/table_inspector_view/components/__snapshots__/data_view.test.tsx.snap b/src/plugins/data/public/utils/table_inspector_view/components/__snapshots__/data_view.test.tsx.snap index f65b08fc632bc..0c60d3b0606be 100644 --- a/src/plugins/data/public/utils/table_inspector_view/components/__snapshots__/data_view.test.tsx.snap +++ b/src/plugins/data/public/utils/table_inspector_view/components/__snapshots__/data_view.test.tsx.snap @@ -204,7 +204,7 @@ Array [ class="euiSpacer euiSpacer--s emotion-euiSpacer-s" />,
@@ -255,7 +255,7 @@ Array [
@@ -546,7 +546,7 @@ Array [ class="euiSpacer euiSpacer--s emotion-euiSpacer-s" />,
@@ -597,7 +597,7 @@ Array [
diff --git a/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx b/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx index 307c074ce5c6f..3deee5fe0bda9 100644 --- a/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx +++ b/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx @@ -8,7 +8,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; - +import { css } from '@emotion/react'; import { EuiButtonIcon, EuiFlexGroup, @@ -192,12 +192,25 @@ export class DataTableFormat extends Component div:last-child { + position: sticky; + left: 0; + } + `} /> ); } From c9c31afd8d88d7f0c05831bcd8788a5629e2c1e0 Mon Sep 17 00:00:00 2001 From: Kevin Delemme Date: Tue, 18 Apr 2023 09:11:33 -0400 Subject: [PATCH 029/144] chore(slo): improve slo list summary alignment (#154932) --- .../observability/public/data/slo/common.ts | 16 ++++----- .../pages/slos/components/slo_sparkline.tsx | 20 ++++++++--- .../pages/slos/components/slo_summary.tsx | 35 ++++++++++++++----- .../kibana_react.storybook_decorator.tsx | 1 + 4 files changed, 51 insertions(+), 21 deletions(-) diff --git a/x-pack/plugins/observability/public/data/slo/common.ts b/x-pack/plugins/observability/public/data/slo/common.ts index 3c0e1b7e49408..ae25d150f350b 100644 --- a/x-pack/plugins/observability/public/data/slo/common.ts +++ b/x-pack/plugins/observability/public/data/slo/common.ts @@ -35,8 +35,8 @@ export const buildHealthySummary = ( sliValue: 0.99872, errorBudget: { initial: 0.02, - consumed: 0.064, - remaining: 0.936, + consumed: 0.0642, + remaining: 0.93623, isEstimated: false, }, ...params, @@ -48,11 +48,11 @@ export const buildViolatedSummary = ( ): SLOWithSummaryResponse['summary'] => { return { status: 'VIOLATED', - sliValue: 0.97, + sliValue: 0.81232, errorBudget: { initial: 0.02, consumed: 1, - remaining: 0, + remaining: -3.1234, isEstimated: false, }, ...params, @@ -80,11 +80,11 @@ export const buildDegradingSummary = ( ): SLOWithSummaryResponse['summary'] => { return { status: 'DEGRADING', - sliValue: 0.97, + sliValue: 0.97982, errorBudget: { - initial: 0.02, - consumed: 0.88, - remaining: 0.12, + initial: 0.01, + consumed: 0.8822, + remaining: 0.1244, isEstimated: true, }, ...params, diff --git a/x-pack/plugins/observability/public/pages/slos/components/slo_sparkline.tsx b/x-pack/plugins/observability/public/pages/slos/components/slo_sparkline.tsx index 4f34ea594ddee..8b3586554abf8 100644 --- a/x-pack/plugins/observability/public/pages/slos/components/slo_sparkline.tsx +++ b/x-pack/plugins/observability/public/pages/slos/components/slo_sparkline.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import { AreaSeries, Chart, Fit, LineSeries, ScaleType, Settings } from '@elastic/charts'; +import { AreaSeries, Axis, Chart, Fit, LineSeries, ScaleType, Settings } from '@elastic/charts'; import React from 'react'; import { EuiLoadingChart, useEuiTheme } from '@elastic/eui'; import { EUI_SPARKLINE_THEME_PARTIAL } from '@elastic/eui/dist/eui_charts_theme'; @@ -36,28 +36,38 @@ export function SloSparkline({ chart, data, id, isLoading, state }: Props) { const color = state === 'error' ? euiTheme.colors.danger : euiTheme.colors.success; const ChartComponent = chart === 'area' ? AreaSeries : LineSeries; + const LineAxisComponent = + chart === 'line' ? ( + + ) : null; if (isLoading) { return ; } return ( - + + {LineAxisComponent} - - - + + + + - - - + + + { if (setting === 'dateFormat') { From 5b1b15af7a9cd478652d996f5e1648ea5cfd4f43 Mon Sep 17 00:00:00 2001 From: Walter Rafelsberger Date: Tue, 18 Apr 2023 15:17:49 +0200 Subject: [PATCH 030/144] [ML] AIOps: Fix race condition where stale url state would reset search bar. (#154885) Fixes an issue there the global state `_g` and app state `_a` would get out of sync and overwrite each other. For example, a click on Refresh in the date picker (global state) could reset the search bar (app state) to empty. The issue was that in `x-pack/packages/ml/url_state/src/url_state.tsx` the `searchString` could become a stale value in `setUrlState`. This PR fixes it by using the approach already used in `usePageUrlState`: The `searchString` is passed on to be stored via `useRef` so that the `setUrlState` setter can always access the most recent value. --- .../ml/url_state/src/url_state.test.tsx | 118 +++++++++++++----- .../packages/ml/url_state/src/url_state.tsx | 15 ++- x-pack/plugins/aiops/public/hooks/use_data.ts | 52 ++++---- .../apps/aiops/explain_log_rate_spikes.ts | 50 +++++--- .../test/functional/apps/aiops/test_data.ts | 21 +++- x-pack/test/functional/apps/aiops/types.ts | 43 +++++-- .../aiops/explain_log_rate_spikes_page.ts | 32 ++++- 7 files changed, 236 insertions(+), 95 deletions(-) diff --git a/x-pack/packages/ml/url_state/src/url_state.test.tsx b/x-pack/packages/ml/url_state/src/url_state.test.tsx index 734c730dd91ba..033ecd77fadf4 100644 --- a/x-pack/packages/ml/url_state/src/url_state.test.tsx +++ b/x-pack/packages/ml/url_state/src/url_state.test.tsx @@ -5,29 +5,18 @@ * 2.0. */ -import React, { FC } from 'react'; +import React, { useEffect, type FC } from 'react'; import { render, act } from '@testing-library/react'; -import { parseUrlState, useUrlState, UrlStateProvider } from './url_state'; +import { MemoryRouter } from 'react-router-dom'; -const mockHistoryPush = jest.fn(); +import { parseUrlState, useUrlState, UrlStateProvider } from './url_state'; -jest.mock('react-router-dom', () => ({ - useHistory: () => ({ - push: mockHistoryPush, - }), - useLocation: () => ({ - search: - "?_a=(mlExplorerFilter:(),mlExplorerSwimlane:(viewByFieldName:action),query:(query_string:(analyze_wildcard:!t,query:'*')))&_g=(ml:(jobIds:!(dec-2)),refreshInterval:(display:Off,pause:!f,value:0),time:(from:'2019-01-01T00:03:40.000Z',mode:absolute,to:'2019-08-30T11:55:07.000Z'))&savedSearchId=571aaf70-4c88-11e8-b3d7-01146121b73d", - }), -})); +const mockHistoryInitialState = + "?_a=(mlExplorerFilter:(),mlExplorerSwimlane:(viewByFieldName:action),query:(query_string:(analyze_wildcard:!t,query:'*')))&_g=(ml:(jobIds:!(dec-2)),refreshInterval:(display:Off,pause:!f,value:0),time:(from:'2019-01-01T00:03:40.000Z',mode:absolute,to:'2019-08-30T11:55:07.000Z'))&savedSearchId=571aaf70-4c88-11e8-b3d7-01146121b73d"; describe('getUrlState', () => { test('properly decode url with _g and _a', () => { - expect( - parseUrlState( - "?_a=(mlExplorerFilter:(),mlExplorerSwimlane:(viewByFieldName:action),query:(query_string:(analyze_wildcard:!t,query:'*')))&_g=(ml:(jobIds:!(dec-2)),refreshInterval:(display:Off,pause:!t,value:0),time:(from:'2019-01-01T00:03:40.000Z',mode:absolute,to:'2019-08-30T11:55:07.000Z'))&savedSearchId=571aaf70-4c88-11e8-b3d7-01146121b73d" - ) - ).toEqual({ + expect(parseUrlState(mockHistoryInitialState)).toEqual({ _a: { mlExplorerFilter: {}, mlExplorerSwimlane: { @@ -46,7 +35,7 @@ describe('getUrlState', () => { }, refreshInterval: { display: 'Off', - pause: true, + pause: false, value: 0, }, time: { @@ -61,29 +50,96 @@ describe('getUrlState', () => { }); describe('useUrlState', () => { - beforeEach(() => { - mockHistoryPush.mockClear(); + it('pushes a properly encoded search string to history', () => { + const TestComponent: FC = () => { + const [appState, setAppState] = useUrlState('_a'); + + useEffect(() => { + setAppState(parseUrlState(mockHistoryInitialState)._a); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + return ( + <> + +
{JSON.stringify(appState?.query)}
+ + ); + }; + + const { getByText, getByTestId } = render( + + + + + + ); + + expect(getByTestId('appState').innerHTML).toBe( + '{"query_string":{"analyze_wildcard":true,"query":"*"}}' + ); + + act(() => { + getByText('ButtonText').click(); + }); + + expect(getByTestId('appState').innerHTML).toBe('"my-query"'); }); - test('pushes a properly encoded search string to history', () => { + it('updates both _g and _a state successfully', () => { const TestComponent: FC = () => { - const [, setUrlState] = useUrlState('_a'); - return ; + const [globalState, setGlobalState] = useUrlState('_g'); + const [appState, setAppState] = useUrlState('_a'); + + useEffect(() => { + setGlobalState({ time: 'initial time' }); + setAppState({ query: 'initial query' }); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + return ( + <> + + + +
{globalState?.time}
+
{appState?.query}
+ + ); }; - const { getByText } = render( - - - + const { getByText, getByTestId } = render( + + + + + ); + expect(getByTestId('globalState').innerHTML).toBe('initial time'); + expect(getByTestId('appState').innerHTML).toBe('initial query'); + act(() => { - getByText('ButtonText').click(); + getByText('GlobalStateButton1').click(); }); - expect(mockHistoryPush).toHaveBeenCalledWith({ - search: - '_a=%28mlExplorerFilter%3A%28%29%2CmlExplorerSwimlane%3A%28viewByFieldName%3Aaction%29%2Cquery%3A%28%29%29&_g=%28ml%3A%28jobIds%3A%21%28dec-2%29%29%2CrefreshInterval%3A%28display%3AOff%2Cpause%3A%21f%2Cvalue%3A0%29%2Ctime%3A%28from%3A%272019-01-01T00%3A03%3A40.000Z%27%2Cmode%3Aabsolute%2Cto%3A%272019-08-30T11%3A55%3A07.000Z%27%29%29&savedSearchId=571aaf70-4c88-11e8-b3d7-01146121b73d', + expect(getByTestId('globalState').innerHTML).toBe('now-15m'); + expect(getByTestId('appState').innerHTML).toBe('initial query'); + + act(() => { + getByText('AppStateButton').click(); + }); + + expect(getByTestId('globalState').innerHTML).toBe('now-15m'); + expect(getByTestId('appState').innerHTML).toBe('the updated query'); + + act(() => { + getByText('GlobalStateButton2').click(); }); + + expect(getByTestId('globalState').innerHTML).toBe('now-5y'); + expect(getByTestId('appState').innerHTML).toBe('the updated query'); }); }); diff --git a/x-pack/packages/ml/url_state/src/url_state.tsx b/x-pack/packages/ml/url_state/src/url_state.tsx index d643a22bde6e4..bd62e1f61029a 100644 --- a/x-pack/packages/ml/url_state/src/url_state.tsx +++ b/x-pack/packages/ml/url_state/src/url_state.tsx @@ -94,6 +94,12 @@ export const UrlStateProvider: FC = ({ children }) => { const history = useHistory(); const { search: searchString } = useLocation(); + const searchStringRef = useRef(searchString); + + useEffect(() => { + searchStringRef.current = searchString; + }, [searchString]); + const setUrlState: SetUrlState = useCallback( ( accessor: Accessor, @@ -101,7 +107,8 @@ export const UrlStateProvider: FC = ({ children }) => { value?: any, replaceState?: boolean ) => { - const prevSearchString = searchString; + const prevSearchString = searchStringRef.current; + const urlState = parseUrlState(prevSearchString); const parsedQueryString = parse(prevSearchString, { sort: false }); @@ -142,6 +149,10 @@ export const UrlStateProvider: FC = ({ children }) => { if (oldLocationSearchString !== newLocationSearchString) { const newSearchString = stringify(parsedQueryString, { sort: false }); + // Another `setUrlState` call could happen before the updated + // `searchString` gets propagated via `useLocation` therefore + // we update the ref right away too. + searchStringRef.current = newSearchString; if (replaceState) { history.replace({ search: newSearchString }); } else { @@ -154,7 +165,7 @@ export const UrlStateProvider: FC = ({ children }) => { } }, // eslint-disable-next-line react-hooks/exhaustive-deps - [searchString] + [] ); return {children}; diff --git a/x-pack/plugins/aiops/public/hooks/use_data.ts b/x-pack/plugins/aiops/public/hooks/use_data.ts index 3546cead3edab..82db675a94c4f 100644 --- a/x-pack/plugins/aiops/public/hooks/use_data.ts +++ b/x-pack/plugins/aiops/public/hooks/use_data.ts @@ -45,9 +45,6 @@ export const useData = ( } = useAiopsAppContext(); const [lastRefresh, setLastRefresh] = useState(0); - const [fieldStatsRequest, setFieldStatsRequest] = useState< - DocumentStatsSearchStrategyParams | undefined - >(); /** Prepare required params to pass to search strategy **/ const { searchQueryLanguage, searchString, searchQuery } = useMemo(() => { @@ -91,12 +88,30 @@ export const useData = ( ]); const _timeBuckets = useTimeBuckets(); - const timefilter = useTimefilter({ timeRangeSelector: selectedDataView?.timeFieldName !== undefined, autoRefreshSelector: true, }); + const fieldStatsRequest: DocumentStatsSearchStrategyParams | undefined = useMemo(() => { + const timefilterActiveBounds = timefilter.getActiveBounds(); + if (timefilterActiveBounds !== undefined) { + _timeBuckets.setInterval('auto'); + _timeBuckets.setBounds(timefilterActiveBounds); + _timeBuckets.setBarTarget(barTarget); + return { + earliest: timefilterActiveBounds.min?.valueOf(), + latest: timefilterActiveBounds.max?.valueOf(), + intervalMs: _timeBuckets.getInterval()?.asMilliseconds(), + index: selectedDataView.getIndexPattern(), + searchQuery, + timeFieldName: selectedDataView.timeFieldName, + runtimeFieldMap: selectedDataView.getRuntimeMappings(), + }; + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [lastRefresh, searchQuery]); + const overallStatsRequest = useMemo(() => { return fieldStatsRequest ? { @@ -125,25 +140,6 @@ export const useData = ( lastRefresh ); - function updateFieldStatsRequest() { - const timefilterActiveBounds = timefilter.getActiveBounds(); - if (timefilterActiveBounds !== undefined) { - _timeBuckets.setInterval('auto'); - _timeBuckets.setBounds(timefilterActiveBounds); - _timeBuckets.setBarTarget(barTarget); - setFieldStatsRequest({ - earliest: timefilterActiveBounds.min?.valueOf(), - latest: timefilterActiveBounds.max?.valueOf(), - intervalMs: _timeBuckets.getInterval()?.asMilliseconds(), - index: selectedDataView.getIndexPattern(), - searchQuery, - timeFieldName: selectedDataView.timeFieldName, - runtimeFieldMap: selectedDataView.getRuntimeMappings(), - }); - setLastRefresh(Date.now()); - } - } - useEffect(() => { const timefilterUpdateSubscription = merge( timefilter.getAutoRefreshFetch$(), @@ -156,13 +152,13 @@ export const useData = ( refreshInterval: timefilter.getRefreshInterval(), }); } - updateFieldStatsRequest(); + setLastRefresh(Date.now()); }); // This listens just for an initial update of the timefilter to be switched on. const timefilterEnabledSubscription = timefilter.getEnabledUpdated$().subscribe(() => { if (fieldStatsRequest === undefined) { - updateFieldStatsRequest(); + setLastRefresh(Date.now()); } }); @@ -173,12 +169,6 @@ export const useData = ( // eslint-disable-next-line react-hooks/exhaustive-deps }, []); - // Ensure request is updated when search changes - useEffect(() => { - updateFieldStatsRequest(); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [searchString, JSON.stringify(searchQuery)]); - return { documentStats, timefilter, diff --git a/x-pack/test/functional/apps/aiops/explain_log_rate_spikes.ts b/x-pack/test/functional/apps/aiops/explain_log_rate_spikes.ts index d34169b05a408..92320dad62087 100644 --- a/x-pack/test/functional/apps/aiops/explain_log_rate_spikes.ts +++ b/x-pack/test/functional/apps/aiops/explain_log_rate_spikes.ts @@ -10,7 +10,7 @@ import { orderBy } from 'lodash'; import expect from '@kbn/expect'; import type { FtrProviderContext } from '../../ftr_provider_context'; -import type { TestData } from './types'; +import { isTestDataExpectedWithSampleProbability, type TestData } from './types'; import { explainLogRateSpikesTestData } from './test_data'; export default function ({ getPageObject, getService }: FtrProviderContext) { @@ -43,9 +43,21 @@ export default function ({ getPageObject, getService }: FtrProviderContext) { await aiops.explainLogRateSpikesPage.assertTimeRangeSelectorSectionExists(); await ml.testExecution.logTestStep(`${testData.suiteTitle} loads data for full time range`); + if (testData.query) { + await aiops.explainLogRateSpikesPage.setQueryInput(testData.query); + } await aiops.explainLogRateSpikesPage.clickUseFullDataButton( testData.expected.totalDocCountFormatted ); + + if (isTestDataExpectedWithSampleProbability(testData.expected)) { + await aiops.explainLogRateSpikesPage.assertSamplingProbability( + testData.expected.sampleProbabilityFormatted + ); + } else { + await aiops.explainLogRateSpikesPage.assertSamplingProbabilityMissing(); + } + await headerPage.waitUntilLoadingHasFinished(); await ml.testExecution.logTestStep( @@ -147,21 +159,24 @@ export default function ({ getPageObject, getService }: FtrProviderContext) { await aiops.explainLogRateSpikesAnalysisGroupsTable.assertSpikeAnalysisTableExists(); - const analysisGroupsTable = - await aiops.explainLogRateSpikesAnalysisGroupsTable.parseAnalysisTable(); - - expect(orderBy(analysisGroupsTable, 'group')).to.be.eql( - orderBy(testData.expected.analysisGroupsTable, 'group') - ); + if (!isTestDataExpectedWithSampleProbability(testData.expected)) { + const analysisGroupsTable = + await aiops.explainLogRateSpikesAnalysisGroupsTable.parseAnalysisTable(); + expect(orderBy(analysisGroupsTable, 'group')).to.be.eql( + orderBy(testData.expected.analysisGroupsTable, 'group') + ); + } await ml.testExecution.logTestStep('expand table row'); await aiops.explainLogRateSpikesAnalysisGroupsTable.assertExpandRowButtonExists(); await aiops.explainLogRateSpikesAnalysisGroupsTable.expandRow(); - const analysisTable = await aiops.explainLogRateSpikesAnalysisTable.parseAnalysisTable(); - expect(orderBy(analysisTable, ['fieldName', 'fieldValue'])).to.be.eql( - orderBy(testData.expected.analysisTable, ['fieldName', 'fieldValue']) - ); + if (!isTestDataExpectedWithSampleProbability(testData.expected)) { + const analysisTable = await aiops.explainLogRateSpikesAnalysisTable.parseAnalysisTable(); + expect(orderBy(analysisTable, ['fieldName', 'fieldValue'])).to.be.eql( + orderBy(testData.expected.analysisTable, ['fieldName', 'fieldValue']) + ); + } // Assert the field selector that allows to costumize grouping await aiops.explainLogRateSpikesPage.assertFieldFilterPopoverButtonExists(false); @@ -182,11 +197,14 @@ export default function ({ getPageObject, getService }: FtrProviderContext) { if (testData.fieldSelectorApplyAvailable) { await aiops.explainLogRateSpikesPage.clickFieldFilterApplyButton(); - const filteredAnalysisGroupsTable = - await aiops.explainLogRateSpikesAnalysisGroupsTable.parseAnalysisTable(); - expect(orderBy(filteredAnalysisGroupsTable, 'group')).to.be.eql( - orderBy(testData.expected.filteredAnalysisGroupsTable, 'group') - ); + + if (!isTestDataExpectedWithSampleProbability(testData.expected)) { + const filteredAnalysisGroupsTable = + await aiops.explainLogRateSpikesAnalysisGroupsTable.parseAnalysisTable(); + expect(orderBy(filteredAnalysisGroupsTable, 'group')).to.be.eql( + orderBy(testData.expected.filteredAnalysisGroupsTable, 'group') + ); + } } }); } diff --git a/x-pack/test/functional/apps/aiops/test_data.ts b/x-pack/test/functional/apps/aiops/test_data.ts index 1ccc441618bdb..b6d3293aeba81 100644 --- a/x-pack/test/functional/apps/aiops/test_data.ts +++ b/x-pack/test/functional/apps/aiops/test_data.ts @@ -19,6 +19,24 @@ export const farequoteDataViewTestData: TestData = { fieldSelectorApplyAvailable: false, expected: { totalDocCountFormatted: '86,374', + sampleProbabilityFormatted: '0.5', + fieldSelectorPopover: ['airline', 'custom_field.keyword'], + }, +}; + +export const farequoteDataViewTestDataWithQuery: TestData = { + suiteTitle: 'farequote with spike', + dataGenerator: 'farequote_with_spike', + isSavedSearch: false, + sourceIndexOrSavedSearch: 'ft_farequote', + brushDeviationTargetTimestamp: 1455033600000, + brushIntervalFactor: 1, + chartClickCoordinates: [0, 0], + fieldSelectorSearch: 'airline', + fieldSelectorApplyAvailable: false, + query: 'NOT airline:("SWR" OR "ACA" OR "AWE" OR "BAW" OR "JAL" OR "JBU" OR "JZA" OR "KLM")', + expected: { + totalDocCountFormatted: '48,799', analysisGroupsTable: [ { docCount: '297', @@ -34,7 +52,7 @@ export const farequoteDataViewTestData: TestData = { fieldName: 'airline', fieldValue: 'AAL', logRate: 'Chart type:bar chart', - pValue: '4.66e-11', + pValue: '1.18e-8', impact: 'High', }, ], @@ -105,5 +123,6 @@ export const artificialLogDataViewTestData: TestData = { export const explainLogRateSpikesTestData: TestData[] = [ farequoteDataViewTestData, + farequoteDataViewTestDataWithQuery, artificialLogDataViewTestData, ]; diff --git a/x-pack/test/functional/apps/aiops/types.ts b/x-pack/test/functional/apps/aiops/types.ts index 7a758aa4a65ff..01733a8e1a2af 100644 --- a/x-pack/test/functional/apps/aiops/types.ts +++ b/x-pack/test/functional/apps/aiops/types.ts @@ -5,6 +5,34 @@ * 2.0. */ +import { isPopulatedObject } from '@kbn/ml-is-populated-object'; + +interface TestDataExpectedWithSampleProbability { + totalDocCountFormatted: string; + sampleProbabilityFormatted: string; + fieldSelectorPopover: string[]; +} + +export function isTestDataExpectedWithSampleProbability( + arg: unknown +): arg is TestDataExpectedWithSampleProbability { + return isPopulatedObject(arg, ['sampleProbabilityFormatted']); +} + +interface TestDataExpectedWithoutSampleProbability { + totalDocCountFormatted: string; + analysisGroupsTable: Array<{ group: string; docCount: string }>; + filteredAnalysisGroupsTable?: Array<{ group: string; docCount: string }>; + analysisTable: Array<{ + fieldName: string; + fieldValue: string; + logRate: string; + pValue: string; + impact: string; + }>; + fieldSelectorPopover: string[]; +} + export interface TestData { suiteTitle: string; dataGenerator: string; @@ -17,17 +45,6 @@ export interface TestData { chartClickCoordinates: [number, number]; fieldSelectorSearch: string; fieldSelectorApplyAvailable: boolean; - expected: { - totalDocCountFormatted: string; - analysisGroupsTable: Array<{ group: string; docCount: string }>; - filteredAnalysisGroupsTable?: Array<{ group: string; docCount: string }>; - analysisTable: Array<{ - fieldName: string; - fieldValue: string; - logRate: string; - pValue: string; - impact: string; - }>; - fieldSelectorPopover: string[]; - }; + query?: string; + expected: TestDataExpectedWithSampleProbability | TestDataExpectedWithoutSampleProbability; } diff --git a/x-pack/test/functional/services/aiops/explain_log_rate_spikes_page.ts b/x-pack/test/functional/services/aiops/explain_log_rate_spikes_page.ts index 3a921a74ee359..3da9ed7c760b7 100644 --- a/x-pack/test/functional/services/aiops/explain_log_rate_spikes_page.ts +++ b/x-pack/test/functional/services/aiops/explain_log_rate_spikes_page.ts @@ -9,12 +9,16 @@ import expect from '@kbn/expect'; import type { FtrProviderContext } from '../../ftr_provider_context'; -export function ExplainLogRateSpikesPageProvider({ getService }: FtrProviderContext) { +export function ExplainLogRateSpikesPageProvider({ + getService, + getPageObject, +}: FtrProviderContext) { const browser = getService('browser'); const elasticChart = getService('elasticChart'); const ml = getService('ml'); const testSubjects = getService('testSubjects'); const retry = getService('retry'); + const header = getPageObject('header'); return { async assertTimeRangeSelectorSectionExists() { @@ -31,6 +35,32 @@ export function ExplainLogRateSpikesPageProvider({ getService }: FtrProviderCont }); }, + async assertSamplingProbability(expectedFormattedSamplingProbability: string) { + await retry.tryForTime(5000, async () => { + const samplingProbability = await testSubjects.getVisibleText('aiopsSamplingProbability'); + expect(samplingProbability).to.eql( + expectedFormattedSamplingProbability, + `Expected total document count to be '${expectedFormattedSamplingProbability}' (got '${samplingProbability}')` + ); + }); + }, + + async setQueryInput(query: string) { + const aiopsQueryInput = await testSubjects.find('aiopsQueryInput'); + await aiopsQueryInput.type(query); + await aiopsQueryInput.pressKeys(browser.keys.ENTER); + await header.waitUntilLoadingHasFinished(); + const queryBarText = await aiopsQueryInput.getVisibleText(); + expect(queryBarText).to.eql( + query, + `Expected query bar text to be '${query}' (got '${queryBarText}')` + ); + }, + + async assertSamplingProbabilityMissing() { + await testSubjects.missingOrFail('aiopsSamplingProbability'); + }, + async clickUseFullDataButton(expectedFormattedTotalDocCount: string) { await retry.tryForTime(30 * 1000, async () => { await testSubjects.clickWhenNotDisabledWithoutRetry('mlDatePickerButtonUseFullData'); From ebe278490f43152e93f7bf300a1cf65878504891 Mon Sep 17 00:00:00 2001 From: Nathan Reese Date: Tue, 18 Apr 2023 07:33:15 -0600 Subject: [PATCH 031/144] [reporting] show loading state when creating a reporting job (#154939) Screen Shot 2023-04-13 at 12 04 26 PM ### Steps to test * Load your favorite sample data set and open its dashboard * Click "Share" and then click "PDF Reports" * Open browser devtools and open network tab. Turn on network throttling to better see loading state * Click "Generate PDF". Notice how button now gives feedback its clicked and something is happening. Before, button would not show loading state and users are confused into thinking nothing is happening. --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../reporting_panel_content.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/reporting/public/share_context_menu/reporting_panel_content/reporting_panel_content.tsx b/x-pack/plugins/reporting/public/share_context_menu/reporting_panel_content/reporting_panel_content.tsx index 9102802f5d79e..6ac0e374b3919 100644 --- a/x-pack/plugins/reporting/public/share_context_menu/reporting_panel_content/reporting_panel_content.tsx +++ b/x-pack/plugins/reporting/public/share_context_menu/reporting_panel_content/reporting_panel_content.tsx @@ -62,6 +62,7 @@ interface State { absoluteUrl: string; layoutId: string; objectType: string; + isCreatingReportJob: boolean; } class ReportingPanelContentUi extends Component { @@ -78,6 +79,7 @@ class ReportingPanelContentUi extends Component { absoluteUrl: this.getAbsoluteReportGenerationUrl(props), layoutId: '', objectType, + isCreatingReportJob: false, }; } @@ -227,12 +229,13 @@ class ReportingPanelContentUi extends Component { private renderGenerateReportButton = (isDisabled: boolean) => { return ( { this.props.getJobParams() ); + this.setState({ isCreatingReportJob: true }); + return this.props.apiClient .createReportingJob(this.props.reportType, decoratedJobParams) .then(() => { @@ -313,6 +318,9 @@ class ReportingPanelContentUi extends Component { if (this.props.onClose) { this.props.onClose(); } + if (this.mounted) { + this.setState({ isCreatingReportJob: false }); + } }) .catch((error) => { this.props.toasts.addError(error, { @@ -325,6 +333,9 @@ class ReportingPanelContentUi extends Component { ) as unknown as string, }); + if (this.mounted) { + this.setState({ isCreatingReportJob: false }); + } }); }; } From 55b9fd2353b487a3db3997d4313c564e3f3b9853 Mon Sep 17 00:00:00 2001 From: Jean-Louis Leysens Date: Tue, 18 Apr 2023 15:39:29 +0200 Subject: [PATCH 032/144] [Dev docs] Added final section to HTTP versioning tutorial (#154901) ## Summary Adds the final section to the HTTP versioning tutorial about using the route versioning specification. --- dev_docs/tutorials/versioning_http_apis.mdx | 117 ++++++++++++++++++-- 1 file changed, 110 insertions(+), 7 deletions(-) diff --git a/dev_docs/tutorials/versioning_http_apis.mdx b/dev_docs/tutorials/versioning_http_apis.mdx index c8a3625fb4977..81bfed4f4dc4e 100644 --- a/dev_docs/tutorials/versioning_http_apis.mdx +++ b/dev_docs/tutorials/versioning_http_apis.mdx @@ -41,7 +41,7 @@ router.get( ); ``` -#### Why is this problemetic for versioning? +#### Why is this problematic for versioning? Whenever we perform a data migration the body of this endpoint will change for all clients. This prevents us from being able to maintain past interfaces and gracefully introduce new ones. @@ -119,7 +119,7 @@ router.post( } ); ``` -#### Why is this problemetic for versioning? +#### Why is this problematic for versioning? This HTTP API currently accepts all numbers and strings as input which allows for unexpected inputs like negative numbers or non-URL friendly characters. This may break future migrations or integrations that assume your data will always be within certain parameters. @@ -141,7 +141,7 @@ This HTTP API currently accepts all numbers and strings as input which allows fo Adding this validation we negate the risk of unexpected values. It is not necessary to use `@kbn/config-schema`, as long as your validation mechanism provides finer grained controls than "number" or "string". -In summary: think about the acceptable paramaters for every input your HTTP API expects. +In summary: think about the acceptable parameters for every input your HTTP API expects. ### 3. Keep interfaces as "narrow" as possible @@ -170,7 +170,7 @@ router.get( The above code follows guidelines from steps 1 and 2, but it allows clients to specify ANY string by which to sort. This is a far "wider" API than we need for this endpoint. -#### Why is this problemetic for versioning? +#### Why is this problematic for versioning? Without telemetry it is impossible to know what values clients might be passing through — and what type of sort behaviour they are expecting. @@ -207,9 +207,112 @@ router.get( The changes are: -1. New input validation accepts a known set of values. This makes our HTTP API far _narrower_ and specific to our use case. It does not matter that our `sortSchema` has the same values as our persistence schema, what matters is that we created a **translation layer** between our HTTP API and our internal schema. This faclitates easily versioning this endpoint. +1. New input validation accepts a known set of values. This makes our HTTP API far _narrower_ and specific to our use case. It does not matter that our `sortSchema` has the same values as our persistence schema, what matters is that we created a **translation layer** between our HTTP API and our internal schema. This facilitates easily versioning this endpoint. 2. **Bonus point**: we use the `escapeKuery` utility to defend against KQL injection attacks. -### 4. Use the versioned API spec +### 4. Adhere to the HTTP versioning specification + +#### Choosing the right version + +##### Public endpoints +Public endpoints include any endpoint that is intended for users to directly integrate with via HTTP. + +Choose a date string in the format `YYYY-MM-DD`. This date should be the date that a (group) of APIs was made available. + +##### Internal endpoints +Internal endpoints are all non-public endpoints (see definition above). + +If you need to maintain backwards-compatibility for an internal endpoint use a single, larger-than-zero number. Ex. `1`. + + +#### Use the versioned router + +Core exposes a versioned router that ensures your endpoint's behaviour and formatting all conforms to the versioning specification. + +```typescript + router.versioned. + .post({ + access: 'public', // This endpoint is intended for a public audience + path: '/api/my-app/foo/{id?}', + options: { timeout: { payload: 60000 } }, + }) + .addVersion( + { + version: '2023-01-01', // The public version of this API + validate: { + request: { + query: schema.object({ + name: schema.maybe(schema.string({ minLength: 2, maxLength: 50 })), + }), + params: schema.object({ + id: schema.maybe(schema.string({ minLength: 10, maxLength: 13 })), + }), + body: schema.object({ foo: schema.string() }), + }, + response: { + 200: { // In development environments, this validation will run against 200 responses + body: schema.object({ foo: schema.string() }), + }, + }, + }, + }, + async (ctx, req, res) => { + await ctx.fooService.create(req.body.foo, req.params.id, req.query.name); + return res.ok({ body: { foo: req.body.foo } }); + } + ) + // BREAKING CHANGE: { foo: string } => { fooString: string } in response body + .addVersion( + { + version: '2023-02-01', + validate: { + request: { + query: schema.object({ + name: schema.maybe(schema.string({ minLength: 2, maxLength: 50 })), + }), + params: schema.object({ + id: schema.maybe(schema.string({ minLength: 10, maxLength: 13 })), + }), + body: schema.object({ fooString: schema.string() }), + }, + response: { + 200: { + body: schema.object({ fooName: schema.string() }), + }, + }, + }, + }, + async (ctx, req, res) => { + await ctx.fooService.create(req.body.fooString, req.params.id, req.query.name); + return res.ok({ body: { fooName: req.body.fooString } }); + } + ) + // BREAKING CHANGES: Enforce min/max length on fooString + .addVersion( + { + version: '2023-03-01', + validate: { + request: { + query: schema.object({ + name: schema.maybe(schema.string({ minLength: 2, maxLength: 50 })), + }), + params: schema.object({ + id: schema.maybe(schema.string({ minLength: 10, maxLength: 13 })), + }), + body: schema.object({ fooString: schema.string({ minLength: 0, maxLength: 1000 }) }), + }, + response: { + 200: { + body: schema.object({ fooName: schema.string() }), + }, + }, + }, + }, + async (ctx, req, res) => { + await ctx.fooService.create(req.body.fooString, req.params.id, req.query.name); + return res.ok({ body: { fooName: req.body.fooString } }); + } +``` -_Under construction, check back here soon!_ \ No newline at end of file +#### Additional reading +For a more details on the versioning specification see [this document](https://docs.google.com/document/d/1YpF6hXIHZaHvwNaQAxWFzexUF1nbqACTtH2IfDu0ldA/edit?usp=sharing). \ No newline at end of file From b81a2705dfae1b65fef7ad18c0cb470ad83fbf6b Mon Sep 17 00:00:00 2001 From: Shahzad Date: Tue, 18 Apr 2023 15:54:11 +0200 Subject: [PATCH 033/144] [Synthetics] Add tooltip for viewer user for edit actions (#155134) --- .../common/components/permissions.tsx | 2 +- .../management/monitor_list_table/columns.tsx | 48 ++++++++++++++----- .../monitor_list_table/monitor_list.tsx | 3 -- 3 files changed, 37 insertions(+), 16 deletions(-) diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx index 97a9ac3e62ce3..17580afbf2cf4 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/permissions.tsx @@ -100,7 +100,7 @@ const CANNOT_PERFORM_ACTION_FLEET = i18n.translate( } ); -const CANNOT_PERFORM_ACTION_SYNTHETICS = i18n.translate( +export const CANNOT_PERFORM_ACTION_SYNTHETICS = i18n.translate( 'xpack.synthetics.monitorManagement.noSyntheticsPermissions', { defaultMessage: 'You do not have sufficient permissions to perform this action.', diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/columns.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/columns.tsx index dd56da1e7e563..074695f26c148 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/columns.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/columns.tsx @@ -5,16 +5,20 @@ * 2.0. */ -import { EuiBasicTableColumn } from '@elastic/eui'; +import { EuiBasicTableColumn, EuiButtonIcon } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; import React from 'react'; import { useHistory } from 'react-router-dom'; import { FETCH_STATUS } from '@kbn/observability-plugin/public'; +import { useCanEditSynthetics } from '../../../../../../hooks/use_capabilities'; import { isStatusEnabled, toggleStatusAlert, } from '../../../../../../../common/runtime_types/monitor_management/alert_config'; -import { NoPermissionsTooltip } from '../../../common/components/permissions'; +import { + CANNOT_PERFORM_ACTION_SYNTHETICS, + NoPermissionsTooltip, +} from '../../../common/components/permissions'; import { TagsBadges } from '../../../common/components/tag_badges'; import { useMonitorAlertEnable } from '../../../../hooks/use_monitor_alert_enable'; import * as labels from './labels'; @@ -35,17 +39,16 @@ import { MonitorEnabled } from './monitor_enabled'; import { MonitorLocations } from './monitor_locations'; export function useMonitorListColumns({ - canEditSynthetics, loading, overviewStatus, setMonitorPendingDeletion, }: { - canEditSynthetics: boolean; loading: boolean; overviewStatus: OverviewStatusState | null; setMonitorPendingDeletion: (config: EncryptedSyntheticsSavedMonitor) => void; }): Array> { const history = useHistory(); + const canEditSynthetics = useCanEditSynthetics(); const { alertStatus, updateAlertEnabledState } = useMonitorAlertEnable(); const { canSaveIntegrations } = useFleetPermissions(); @@ -54,7 +57,7 @@ export function useMonitorListColumns({ return alertStatus(fields[ConfigKey.CONFIG_ID]) === FETCH_STATUS.LOADING; }; - return [ + const columns: Array> = [ { align: 'left' as const, field: ConfigKey.NAME as string, @@ -173,8 +176,8 @@ export function useMonitorListColumns({ ), description: labels.EDIT_LABEL, - icon: 'pencil', - type: 'icon', + icon: 'pencil' as const, + type: 'icon' as const, enabled: (fields) => canEditSynthetics && !isActionLoading(fields) && @@ -197,9 +200,9 @@ export function useMonitorListColumns({ ), description: labels.DELETE_LABEL, - icon: 'trash', - type: 'icon', - color: 'danger', + icon: 'trash' as const, + type: 'icon' as const, + color: 'danger' as const, enabled: (fields) => canEditSynthetics && !isActionLoading(fields) && @@ -216,8 +219,8 @@ export function useMonitorListColumns({ : labels.ENABLE_STATUS_ALERT, icon: (fields) => isStatusEnabled(fields[ConfigKey.ALERT_CONFIG]) ? 'bellSlash' : 'bell', - type: 'icon', - color: 'danger', + type: 'icon' as const, + color: 'danger' as const, enabled: (fields) => canEditSynthetics && !isActionLoading(fields), onClick: (fields) => { updateAlertEnabledState({ @@ -240,4 +243,25 @@ export function useMonitorListColumns({ ], }, ]; + + if (!canEditSynthetics) { + // replace last column with a tooltip + columns[columns.length - 1] = { + align: 'right' as const, + name: i18n.translate('xpack.synthetics.management.monitorList.actions', { + defaultMessage: 'Actions', + }), + render: () => ( + + + + ), + }; + } + + return columns; } diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/monitor_list.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/monitor_list.tsx index 2ac8c0f6129d6..55f2d7e80ee1a 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/monitor_list.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/monitor_list_table/monitor_list.tsx @@ -19,7 +19,6 @@ import { i18n } from '@kbn/i18n'; import { DeleteMonitor } from './delete_monitor'; import { IHttpSerializedFetchError } from '../../../../state/utils/http_error'; import { MonitorListPageState } from '../../../../state'; -import { useCanEditSynthetics } from '../../../../../../hooks/use_capabilities'; import { ConfigKey, EncryptedSyntheticsSavedMonitor, @@ -52,7 +51,6 @@ export const MonitorList = ({ }: Props) => { const { euiTheme } = useEuiTheme(); const isXl = useIsWithinMinBreakpoint('xxl'); - const canEditSynthetics = useCanEditSynthetics(); const [monitorPendingDeletion, setMonitorPendingDeletion] = useState(null); @@ -96,7 +94,6 @@ export const MonitorList = ({ }); const columns = useMonitorListColumns({ - canEditSynthetics, loading, overviewStatus, setMonitorPendingDeletion, From 0a38f85002d8f9096bcd35c073f0faebcff9617d Mon Sep 17 00:00:00 2001 From: Antonio Date: Tue, 18 Apr 2023 16:02:11 +0200 Subject: [PATCH 034/144] [Cases] Attaching files to cases (#154436) Fixes #151595 ## Summary In this PR we will be merging a feature branch into `main`. This feature branch is a collection of several different PRs with file functionality for cases. - https://github.com/elastic/kibana/pull/152941 - https://github.com/elastic/kibana/pull/153957 - https://github.com/elastic/kibana/pull/154432 - https://github.com/elastic/kibana/pull/153853 Most of the code was already reviewed so this will mainly be used for testing. - Files tab in the case detail view. - Attach files to a case. - View a list of all files attached to a case (with pagination). - Preview image files attached to a case. - Search for files attached to a case by file name. - Download files attached to a case. - Users are now able to see file activity in the case detail view. - Image files have a different icon and a clickable file name to preview. - Other files have a standard "document" icon and the name is not clickable. - The file can be downloaded by clicking the download icon. ## Release notes Support file attachments in Cases. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- packages/kbn-optimizer/limits.yml | 2 +- .../file/file_upload/impl/src/file_upload.tsx | 2 +- .../cases/common/api/cases/comment/files.ts | 16 +- .../cases/common/constants/mime_types.ts | 8 +- x-pack/plugins/cases/common/types.ts | 1 + x-pack/plugins/cases/public/application.tsx | 21 +- .../client/attachment_framework/types.ts | 28 +- .../ui/get_all_cases_selector_modal.tsx | 6 +- .../cases/public/client/ui/get_cases.tsx | 6 +- .../public/client/ui/get_cases_context.tsx | 12 +- .../client/ui/get_create_case_flyout.tsx | 6 +- .../public/client/ui/get_recent_cases.tsx | 6 +- .../public/common/mock/test_providers.tsx | 54 +++- .../public/common/use_cases_toast.test.tsx | 20 ++ .../cases/public/common/use_cases_toast.tsx | 3 + .../cases/public/components/app/index.tsx | 10 +- .../components/case_action_bar/actions.tsx | 4 + .../case_view/case_view_page.test.tsx | 3 +- .../components/case_view/case_view_page.tsx | 2 + .../case_view/case_view_tabs.test.tsx | 64 ++++- .../components/case_view/case_view_tabs.tsx | 42 ++- .../components/case_view_files.test.tsx | 114 +++++++++ .../case_view/components/case_view_files.tsx | 104 ++++++++ .../components/case_view/translations.ts | 4 + .../public/components/cases_context/index.tsx | 54 +++- .../public/components/files/add_file.test.tsx | 241 ++++++++++++++++++ .../public/components/files/add_file.tsx | 141 ++++++++++ .../files/file_delete_button.test.tsx | 155 +++++++++++ .../components/files/file_delete_button.tsx | 62 +++++ .../files/file_download_button.test.tsx | 57 +++++ .../components/files/file_download_button.tsx | 46 ++++ .../components/files/file_name_link.test.tsx | 58 +++++ .../components/files/file_name_link.tsx | 44 ++++ .../components/files/file_preview.test.tsx | 38 +++ .../public/components/files/file_preview.tsx | 56 ++++ .../components/files/file_type.test.tsx | 187 ++++++++++++++ .../public/components/files/file_type.tsx | 106 ++++++++ .../components/files/files_table.test.tsx | 233 +++++++++++++++++ .../public/components/files/files_table.tsx | 83 ++++++ .../files/files_utility_bar.test.tsx | 42 +++ .../components/files/files_utility_bar.tsx | 36 +++ .../public/components/files/translations.tsx | 115 +++++++++ .../cases/public/components/files/types.ts | 12 + .../files/use_file_preview.test.tsx | 54 ++++ .../components/files/use_file_preview.tsx | 17 ++ .../files/use_files_table_columns.test.tsx | 73 ++++++ .../files/use_files_table_columns.tsx | 71 ++++++ .../public/components/files/utils.test.tsx | 97 +++++++ .../cases/public/components/files/utils.tsx | 61 +++++ .../lens/use_lens_open_visualization.tsx | 3 + .../components/property_actions/index.tsx | 24 +- .../user_actions/comment/comment.test.tsx | 195 +++++++++++++- .../comment/registered_attachments.tsx | 52 ++-- .../alert_property_actions.tsx | 6 +- .../property_actions.test.tsx | 2 + .../property_actions/property_actions.tsx | 4 +- ...ered_attachments_property_actions.test.tsx | 19 +- ...egistered_attachments_property_actions.tsx | 11 +- .../user_comment_property_actions.tsx | 5 + .../cases/public/containers/__mocks__/api.ts | 10 + .../cases/public/containers/api.test.tsx | 27 ++ x-pack/plugins/cases/public/containers/api.ts | 17 ++ .../cases/public/containers/constants.ts | 4 + .../plugins/cases/public/containers/mock.ts | 15 ++ .../cases/public/containers/translations.ts | 8 + .../use_delete_file_attachment.test.tsx | 120 +++++++++ .../containers/use_delete_file_attachment.tsx | 43 ++++ .../use_get_case_file_stats.test.tsx | 64 +++++ .../containers/use_get_case_file_stats.tsx | 57 +++++ .../containers/use_get_case_files.test.tsx | 70 +++++ .../public/containers/use_get_case_files.tsx | 61 +++++ x-pack/plugins/cases/public/files/index.ts | 3 + .../public/internal_attachments/index.ts | 15 ++ x-pack/plugins/cases/public/plugin.ts | 7 + x-pack/plugins/cases/public/types.ts | 4 +- .../common/limiter_checker/test_utils.ts | 2 +- x-pack/plugins/cases/tsconfig.json | 4 + .../cases_api_integration/common/lib/mock.ts | 2 +- .../public/attachments/external_reference.tsx | 13 +- .../public/attachments/persistable_state.tsx | 11 +- 80 files changed, 3440 insertions(+), 115 deletions(-) create mode 100644 x-pack/plugins/cases/public/components/case_view/components/case_view_files.test.tsx create mode 100644 x-pack/plugins/cases/public/components/case_view/components/case_view_files.tsx create mode 100644 x-pack/plugins/cases/public/components/files/add_file.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/add_file.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_delete_button.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_delete_button.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_download_button.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_download_button.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_name_link.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_name_link.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_preview.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_preview.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_type.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/file_type.tsx create mode 100644 x-pack/plugins/cases/public/components/files/files_table.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/files_table.tsx create mode 100644 x-pack/plugins/cases/public/components/files/files_utility_bar.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/files_utility_bar.tsx create mode 100644 x-pack/plugins/cases/public/components/files/translations.tsx create mode 100644 x-pack/plugins/cases/public/components/files/types.ts create mode 100644 x-pack/plugins/cases/public/components/files/use_file_preview.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/use_file_preview.tsx create mode 100644 x-pack/plugins/cases/public/components/files/use_files_table_columns.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/use_files_table_columns.tsx create mode 100644 x-pack/plugins/cases/public/components/files/utils.test.tsx create mode 100644 x-pack/plugins/cases/public/components/files/utils.tsx create mode 100644 x-pack/plugins/cases/public/containers/use_delete_file_attachment.test.tsx create mode 100644 x-pack/plugins/cases/public/containers/use_delete_file_attachment.tsx create mode 100644 x-pack/plugins/cases/public/containers/use_get_case_file_stats.test.tsx create mode 100644 x-pack/plugins/cases/public/containers/use_get_case_file_stats.tsx create mode 100644 x-pack/plugins/cases/public/containers/use_get_case_files.test.tsx create mode 100644 x-pack/plugins/cases/public/containers/use_get_case_files.tsx create mode 100644 x-pack/plugins/cases/public/internal_attachments/index.ts diff --git a/packages/kbn-optimizer/limits.yml b/packages/kbn-optimizer/limits.yml index 74d7df9394153..93d5507c53a1e 100644 --- a/packages/kbn-optimizer/limits.yml +++ b/packages/kbn-optimizer/limits.yml @@ -7,7 +7,7 @@ pageLoadAssetSize: banners: 17946 bfetch: 22837 canvas: 1066647 - cases: 144442 + cases: 170000 charts: 55000 cloud: 21076 cloudChat: 19894 diff --git a/packages/shared-ux/file/file_upload/impl/src/file_upload.tsx b/packages/shared-ux/file/file_upload/impl/src/file_upload.tsx index 498a4a93b5fe4..45e74312e1e55 100644 --- a/packages/shared-ux/file/file_upload/impl/src/file_upload.tsx +++ b/packages/shared-ux/file/file_upload/impl/src/file_upload.tsx @@ -19,7 +19,7 @@ import { context } from './context'; /** * An object representing an uploaded file */ -interface UploadedFile { +export interface UploadedFile { /** * The ID that was generated for the uploaded file */ diff --git a/x-pack/plugins/cases/common/api/cases/comment/files.ts b/x-pack/plugins/cases/common/api/cases/comment/files.ts index 66555b1a584d9..af42a7a779e55 100644 --- a/x-pack/plugins/cases/common/api/cases/comment/files.ts +++ b/x-pack/plugins/cases/common/api/cases/comment/files.ts @@ -9,15 +9,15 @@ import * as rt from 'io-ts'; import { MAX_DELETE_FILES } from '../../../constants'; import { limitedArraySchema, NonEmptyString } from '../../../schema'; +export const SingleFileAttachmentMetadataRt = rt.type({ + name: rt.string, + extension: rt.string, + mimeType: rt.string, + created: rt.string, +}); + export const FileAttachmentMetadataRt = rt.type({ - files: rt.array( - rt.type({ - name: rt.string, - extension: rt.string, - mimeType: rt.string, - createdAt: rt.string, - }) - ), + files: rt.array(SingleFileAttachmentMetadataRt), }); export type FileAttachmentMetadata = rt.TypeOf; diff --git a/x-pack/plugins/cases/common/constants/mime_types.ts b/x-pack/plugins/cases/common/constants/mime_types.ts index 9f1f455513dab..c35e5ef674c81 100644 --- a/x-pack/plugins/cases/common/constants/mime_types.ts +++ b/x-pack/plugins/cases/common/constants/mime_types.ts @@ -8,7 +8,7 @@ /** * These were retrieved from https://www.iana.org/assignments/media-types/media-types.xhtml#image */ -const imageMimeTypes = [ +export const imageMimeTypes = [ 'image/aces', 'image/apng', 'image/avci', @@ -87,9 +87,9 @@ const imageMimeTypes = [ 'image/wmf', ]; -const textMimeTypes = ['text/plain', 'text/csv', 'text/json', 'application/json']; +export const textMimeTypes = ['text/plain', 'text/csv', 'text/json', 'application/json']; -const compressionMimeTypes = [ +export const compressionMimeTypes = [ 'application/zip', 'application/gzip', 'application/x-bzip', @@ -98,7 +98,7 @@ const compressionMimeTypes = [ 'application/x-tar', ]; -const pdfMimeTypes = ['application/pdf']; +export const pdfMimeTypes = ['application/pdf']; export const ALLOWED_MIME_TYPES = [ ...imageMimeTypes, diff --git a/x-pack/plugins/cases/common/types.ts b/x-pack/plugins/cases/common/types.ts index 3ff14b0905110..32d6b34b11c16 100644 --- a/x-pack/plugins/cases/common/types.ts +++ b/x-pack/plugins/cases/common/types.ts @@ -24,4 +24,5 @@ export type SnakeToCamelCase = T extends Record export enum CASE_VIEW_PAGE_TABS { ALERTS = 'alerts', ACTIVITY = 'activity', + FILES = 'files', } diff --git a/x-pack/plugins/cases/public/application.tsx b/x-pack/plugins/cases/public/application.tsx index bac423a9f8292..742f254472160 100644 --- a/x-pack/plugins/cases/public/application.tsx +++ b/x-pack/plugins/cases/public/application.tsx @@ -9,19 +9,21 @@ import React from 'react'; import ReactDOM from 'react-dom'; import { Router } from 'react-router-dom'; -import { I18nProvider } from '@kbn/i18n-react'; import { EuiErrorBoundary } from '@elastic/eui'; - +import { I18nProvider } from '@kbn/i18n-react'; +import { EuiThemeProvider as StyledComponentsThemeProvider } from '@kbn/kibana-react-plugin/common'; import { KibanaContextProvider, KibanaThemeProvider, useUiSetting$, } from '@kbn/kibana-react-plugin/public'; -import { EuiThemeProvider as StyledComponentsThemeProvider } from '@kbn/kibana-react-plugin/common'; -import type { RenderAppProps } from './types'; -import { CasesApp } from './components/app'; + +import type { ScopedFilesClient } from '@kbn/files-plugin/public'; import type { ExternalReferenceAttachmentTypeRegistry } from './client/attachment_framework/external_reference_registry'; import type { PersistableStateAttachmentTypeRegistry } from './client/attachment_framework/persistable_state_registry'; +import type { RenderAppProps } from './types'; + +import { CasesApp } from './components/app'; export const renderApp = (deps: RenderAppProps) => { const { mountParams } = deps; @@ -37,10 +39,15 @@ export const renderApp = (deps: RenderAppProps) => { interface CasesAppWithContextProps { externalReferenceAttachmentTypeRegistry: ExternalReferenceAttachmentTypeRegistry; persistableStateAttachmentTypeRegistry: PersistableStateAttachmentTypeRegistry; + getFilesClient: (scope: string) => ScopedFilesClient; } const CasesAppWithContext: React.FC = React.memo( - ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry }) => { + ({ + externalReferenceAttachmentTypeRegistry, + persistableStateAttachmentTypeRegistry, + getFilesClient, + }) => { const [darkMode] = useUiSetting$('theme:darkMode'); return ( @@ -48,6 +55,7 @@ const CasesAppWithContext: React.FC = React.memo( ); @@ -78,6 +86,7 @@ export const App: React.FC<{ deps: RenderAppProps }> = ({ deps }) => { deps.externalReferenceAttachmentTypeRegistry } persistableStateAttachmentTypeRegistry={deps.persistableStateAttachmentTypeRegistry} + getFilesClient={pluginsStart.files.filesClientFactory.asScoped} /> diff --git a/x-pack/plugins/cases/public/client/attachment_framework/types.ts b/x-pack/plugins/cases/public/client/attachment_framework/types.ts index 414b8a0086654..95a453b9d0a12 100644 --- a/x-pack/plugins/cases/public/client/attachment_framework/types.ts +++ b/x-pack/plugins/cases/public/client/attachment_framework/types.ts @@ -13,19 +13,38 @@ import type { } from '../../../common/api'; import type { Case } from '../../containers/types'; -export interface AttachmentAction { +export enum AttachmentActionType { + BUTTON = 'button', + CUSTOM = 'custom', +} + +interface BaseAttachmentAction { + type: AttachmentActionType; + label: string; + isPrimary?: boolean; + disabled?: boolean; +} + +interface ButtonAttachmentAction extends BaseAttachmentAction { + type: AttachmentActionType.BUTTON; onClick: () => void; iconType: string; - label: string; color?: EuiButtonProps['color']; - isPrimary?: boolean; } +interface CustomAttachmentAction extends BaseAttachmentAction { + type: AttachmentActionType.CUSTOM; + render: () => JSX.Element; +} + +export type AttachmentAction = ButtonAttachmentAction | CustomAttachmentAction; + export interface AttachmentViewObject { timelineAvatar?: EuiCommentProps['timelineAvatar']; getActions?: (props: Props) => AttachmentAction[]; event?: EuiCommentProps['event']; children?: React.LazyExoticComponent>; + hideDefaultActions?: boolean; } export interface CommonAttachmentViewProps { @@ -46,8 +65,9 @@ export interface AttachmentType { id: string; icon: IconType; displayName: string; - getAttachmentViewObject: () => AttachmentViewObject; + getAttachmentViewObject: (props: Props) => AttachmentViewObject; getAttachmentRemovalObject?: (props: Props) => Pick, 'event'>; + hideDefaultActions?: boolean; } export type ExternalReferenceAttachmentType = AttachmentType; diff --git a/x-pack/plugins/cases/public/client/ui/get_all_cases_selector_modal.tsx b/x-pack/plugins/cases/public/client/ui/get_all_cases_selector_modal.tsx index b0807b0509135..fc85e84639baa 100644 --- a/x-pack/plugins/cases/public/client/ui/get_all_cases_selector_modal.tsx +++ b/x-pack/plugins/cases/public/client/ui/get_all_cases_selector_modal.tsx @@ -14,7 +14,9 @@ import { CasesProvider } from '../../components/cases_context'; type GetAllCasesSelectorModalPropsInternal = AllCasesSelectorModalProps & CasesContextProps; export type GetAllCasesSelectorModalProps = Omit< GetAllCasesSelectorModalPropsInternal, - 'externalReferenceAttachmentTypeRegistry' | 'persistableStateAttachmentTypeRegistry' + | 'externalReferenceAttachmentTypeRegistry' + | 'persistableStateAttachmentTypeRegistry' + | 'getFilesClient' >; const AllCasesSelectorModalLazy: React.FC = lazy( @@ -23,6 +25,7 @@ const AllCasesSelectorModalLazy: React.FC = lazy( export const getAllCasesSelectorModalLazy = ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, hiddenStatuses, @@ -33,6 +36,7 @@ export const getAllCasesSelectorModalLazy = ({ value={{ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, }} diff --git a/x-pack/plugins/cases/public/client/ui/get_cases.tsx b/x-pack/plugins/cases/public/client/ui/get_cases.tsx index 45c9f30b984d2..36556523fc3a3 100644 --- a/x-pack/plugins/cases/public/client/ui/get_cases.tsx +++ b/x-pack/plugins/cases/public/client/ui/get_cases.tsx @@ -14,7 +14,9 @@ import { CasesProvider } from '../../components/cases_context'; type GetCasesPropsInternal = CasesProps & CasesContextProps; export type GetCasesProps = Omit< GetCasesPropsInternal, - 'externalReferenceAttachmentTypeRegistry' | 'persistableStateAttachmentTypeRegistry' + | 'externalReferenceAttachmentTypeRegistry' + | 'persistableStateAttachmentTypeRegistry' + | 'getFilesClient' >; const CasesRoutesLazy: React.FC = lazy(() => import('../../components/app/routes')); @@ -22,6 +24,7 @@ const CasesRoutesLazy: React.FC = lazy(() => import('../../component export const getCasesLazy = ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, basePath, @@ -39,6 +42,7 @@ export const getCasesLazy = ({ value={{ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, basePath, diff --git a/x-pack/plugins/cases/public/client/ui/get_cases_context.tsx b/x-pack/plugins/cases/public/client/ui/get_cases_context.tsx index 77e6ca3c87e24..9db49ef9776ba 100644 --- a/x-pack/plugins/cases/public/client/ui/get_cases_context.tsx +++ b/x-pack/plugins/cases/public/client/ui/get_cases_context.tsx @@ -13,7 +13,9 @@ import type { CasesContextProps } from '../../components/cases_context'; export type GetCasesContextPropsInternal = CasesContextProps; export type GetCasesContextProps = Omit< CasesContextProps, - 'externalReferenceAttachmentTypeRegistry' | 'persistableStateAttachmentTypeRegistry' + | 'externalReferenceAttachmentTypeRegistry' + | 'persistableStateAttachmentTypeRegistry' + | 'getFilesClient' >; const CasesProviderLazy: React.FC<{ value: GetCasesContextPropsInternal }> = lazy( @@ -28,6 +30,7 @@ const CasesProviderLazyWrapper = ({ features, children, releasePhase, + getFilesClient, }: GetCasesContextPropsInternal & { children: ReactNode }) => { return ( }> @@ -39,6 +42,7 @@ const CasesProviderLazyWrapper = ({ permissions, features, releasePhase, + getFilesClient, }} > {children} @@ -52,9 +56,12 @@ CasesProviderLazyWrapper.displayName = 'CasesProviderLazyWrapper'; export const getCasesContextLazy = ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, }: Pick< GetCasesContextPropsInternal, - 'externalReferenceAttachmentTypeRegistry' | 'persistableStateAttachmentTypeRegistry' + | 'externalReferenceAttachmentTypeRegistry' + | 'persistableStateAttachmentTypeRegistry' + | 'getFilesClient' >): (() => React.FC) => { const CasesProviderLazyWrapperWithRegistry: React.FC = ({ children, @@ -64,6 +71,7 @@ export const getCasesContextLazy = ({ {...props} externalReferenceAttachmentTypeRegistry={externalReferenceAttachmentTypeRegistry} persistableStateAttachmentTypeRegistry={persistableStateAttachmentTypeRegistry} + getFilesClient={getFilesClient} > {children} diff --git a/x-pack/plugins/cases/public/client/ui/get_create_case_flyout.tsx b/x-pack/plugins/cases/public/client/ui/get_create_case_flyout.tsx index af932b53e1dde..e52a14033a614 100644 --- a/x-pack/plugins/cases/public/client/ui/get_create_case_flyout.tsx +++ b/x-pack/plugins/cases/public/client/ui/get_create_case_flyout.tsx @@ -14,7 +14,9 @@ import { CasesProvider } from '../../components/cases_context'; type GetCreateCaseFlyoutPropsInternal = CreateCaseFlyoutProps & CasesContextProps; export type GetCreateCaseFlyoutProps = Omit< GetCreateCaseFlyoutPropsInternal, - 'externalReferenceAttachmentTypeRegistry' | 'persistableStateAttachmentTypeRegistry' + | 'externalReferenceAttachmentTypeRegistry' + | 'persistableStateAttachmentTypeRegistry' + | 'getFilesClient' >; export const CreateCaseFlyoutLazy: React.FC = lazy( @@ -23,6 +25,7 @@ export const CreateCaseFlyoutLazy: React.FC = lazy( export const getCreateCaseFlyoutLazy = ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, features, @@ -35,6 +38,7 @@ export const getCreateCaseFlyoutLazy = ({ value={{ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, features, diff --git a/x-pack/plugins/cases/public/client/ui/get_recent_cases.tsx b/x-pack/plugins/cases/public/client/ui/get_recent_cases.tsx index a047c106246da..7c41cc3842bf7 100644 --- a/x-pack/plugins/cases/public/client/ui/get_recent_cases.tsx +++ b/x-pack/plugins/cases/public/client/ui/get_recent_cases.tsx @@ -14,7 +14,9 @@ import type { RecentCasesProps } from '../../components/recent_cases'; type GetRecentCasesPropsInternal = RecentCasesProps & CasesContextProps; export type GetRecentCasesProps = Omit< GetRecentCasesPropsInternal, - 'externalReferenceAttachmentTypeRegistry' | 'persistableStateAttachmentTypeRegistry' + | 'externalReferenceAttachmentTypeRegistry' + | 'persistableStateAttachmentTypeRegistry' + | 'getFilesClient' >; const RecentCasesLazy: React.FC = lazy( @@ -23,6 +25,7 @@ const RecentCasesLazy: React.FC = lazy( export const getRecentCasesLazy = ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, maxCasesToShow, @@ -31,6 +34,7 @@ export const getRecentCasesLazy = ({ value={{ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner, permissions, }} diff --git a/x-pack/plugins/cases/public/common/mock/test_providers.tsx b/x-pack/plugins/cases/public/common/mock/test_providers.tsx index 2a5a75bf7a789..f0b2e71231bb1 100644 --- a/x-pack/plugins/cases/public/common/mock/test_providers.tsx +++ b/x-pack/plugins/cases/public/common/mock/test_providers.tsx @@ -9,22 +9,30 @@ import React from 'react'; import { MemoryRouter } from 'react-router-dom'; +import { ThemeProvider } from 'styled-components'; + +import type { RenderOptions, RenderResult } from '@testing-library/react'; +import type { ILicense } from '@kbn/licensing-plugin/public'; +import type { FieldHook } from '@kbn/es-ui-shared-plugin/static/forms/hook_form_lib'; +import type { ScopedFilesClient } from '@kbn/files-plugin/public'; + import { euiDarkVars } from '@kbn/ui-theme'; import { I18nProvider } from '@kbn/i18n-react'; -import { ThemeProvider } from 'styled-components'; +import { createMockFilesClient } from '@kbn/shared-ux-file-mocks'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; -import type { RenderOptions, RenderResult } from '@testing-library/react'; import { render as reactRender } from '@testing-library/react'; import { KibanaContextProvider } from '@kbn/kibana-react-plugin/public'; -import type { ILicense } from '@kbn/licensing-plugin/public'; -import type { FieldHook } from '@kbn/es-ui-shared-plugin/static/forms/hook_form_lib'; -import { SECURITY_SOLUTION_OWNER } from '../../../common/constants'; +import { FilesContext } from '@kbn/shared-ux-file-context'; + +import type { DeeplyMockedKeys } from '@kbn/utility-types-jest'; import type { CasesFeatures, CasesPermissions } from '../../../common/ui/types'; -import { CasesProvider } from '../../components/cases_context'; -import { createStartServicesMock } from '../lib/kibana/kibana_react.mock'; import type { StartServices } from '../../types'; import type { ReleasePhase } from '../../components/types'; + +import { SECURITY_SOLUTION_OWNER } from '../../../common/constants'; +import { CasesProvider } from '../../components/cases_context'; +import { createStartServicesMock } from '../lib/kibana/kibana_react.mock'; import { ExternalReferenceAttachmentTypeRegistry } from '../../client/attachment_framework/external_reference_registry'; import { PersistableStateAttachmentTypeRegistry } from '../../client/attachment_framework/persistable_state_registry'; import { allCasesPermissions } from './permissions'; @@ -43,17 +51,35 @@ type UiRender = (ui: React.ReactElement, options?: RenderOptions) => RenderResul window.scrollTo = jest.fn(); +const mockGetFilesClient = () => { + const mockedFilesClient = createMockFilesClient() as unknown as DeeplyMockedKeys< + ScopedFilesClient + >; + + mockedFilesClient.getFileKind.mockImplementation(() => ({ + id: 'test', + maxSizeBytes: 10000, + http: {}, + })); + + return () => mockedFilesClient; +}; + +export const mockedTestProvidersOwner = [SECURITY_SOLUTION_OWNER]; + /** A utility for wrapping children in the providers required to run most tests */ const TestProvidersComponent: React.FC = ({ children, features, - owner = [SECURITY_SOLUTION_OWNER], + owner = mockedTestProvidersOwner, permissions = allCasesPermissions(), releasePhase = 'ga', externalReferenceAttachmentTypeRegistry = new ExternalReferenceAttachmentTypeRegistry(), persistableStateAttachmentTypeRegistry = new PersistableStateAttachmentTypeRegistry(), license, }) => { + const services = createStartServicesMock({ license }); + const queryClient = new QueryClient({ defaultOptions: { queries: { @@ -67,7 +93,7 @@ const TestProvidersComponent: React.FC = ({ }, }); - const services = createStartServicesMock({ license }); + const getFilesClient = mockGetFilesClient(); return ( @@ -82,9 +108,10 @@ const TestProvidersComponent: React.FC = ({ features, owner, permissions, + getFilesClient, }} > - {children} + {children} @@ -104,6 +131,7 @@ export interface AppMockRenderer { coreStart: StartServices; queryClient: QueryClient; AppWrapper: React.FC<{ children: React.ReactElement }>; + getFilesClient: () => ScopedFilesClient; } export const testQueryClient = new QueryClient({ @@ -125,7 +153,7 @@ export const testQueryClient = new QueryClient({ export const createAppMockRenderer = ({ features, - owner = [SECURITY_SOLUTION_OWNER], + owner = mockedTestProvidersOwner, permissions = allCasesPermissions(), releasePhase = 'ga', externalReferenceAttachmentTypeRegistry = new ExternalReferenceAttachmentTypeRegistry(), @@ -147,6 +175,8 @@ export const createAppMockRenderer = ({ }, }); + const getFilesClient = mockGetFilesClient(); + const AppWrapper: React.FC<{ children: React.ReactElement }> = ({ children }) => ( @@ -161,6 +191,7 @@ export const createAppMockRenderer = ({ owner, permissions, releasePhase, + getFilesClient, }} > {children} @@ -188,6 +219,7 @@ export const createAppMockRenderer = ({ AppWrapper, externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, }; }; diff --git a/x-pack/plugins/cases/public/common/use_cases_toast.test.tsx b/x-pack/plugins/cases/public/common/use_cases_toast.test.tsx index 6c33c86d29d51..d6597e31362e7 100644 --- a/x-pack/plugins/cases/public/common/use_cases_toast.test.tsx +++ b/x-pack/plugins/cases/public/common/use_cases_toast.test.tsx @@ -25,6 +25,7 @@ const useKibanaMock = useKibana as jest.Mocked; describe('Use cases toast hook', () => { const successMock = jest.fn(); const errorMock = jest.fn(); + const dangerMock = jest.fn(); const getUrlForApp = jest.fn().mockReturnValue(`/app/cases/${mockCase.id}`); const navigateToUrl = jest.fn(); @@ -54,6 +55,7 @@ describe('Use cases toast hook', () => { return { addSuccess: successMock, addError: errorMock, + addDanger: dangerMock, }; }); @@ -352,4 +354,22 @@ describe('Use cases toast hook', () => { }); }); }); + + describe('showDangerToast', () => { + it('should show a danger toast', () => { + const { result } = renderHook( + () => { + return useCasesToast(); + }, + { wrapper: TestProviders } + ); + + result.current.showDangerToast('my danger toast'); + + expect(dangerMock).toHaveBeenCalledWith({ + className: 'eui-textBreakWord', + title: 'my danger toast', + }); + }); + }); }); diff --git a/x-pack/plugins/cases/public/common/use_cases_toast.tsx b/x-pack/plugins/cases/public/common/use_cases_toast.tsx index fd143345e2deb..26027905f8f0e 100644 --- a/x-pack/plugins/cases/public/common/use_cases_toast.tsx +++ b/x-pack/plugins/cases/public/common/use_cases_toast.tsx @@ -169,6 +169,9 @@ export const useCasesToast = () => { showSuccessToast: (title: string) => { toasts.addSuccess({ title, className: 'eui-textBreakWord' }); }, + showDangerToast: (title: string) => { + toasts.addDanger({ title, className: 'eui-textBreakWord' }); + }, showInfoToast: (title: string, text?: string) => { toasts.addInfo({ title, diff --git a/x-pack/plugins/cases/public/components/app/index.tsx b/x-pack/plugins/cases/public/components/app/index.tsx index 42ef9b658fea7..f53e7edf9356a 100644 --- a/x-pack/plugins/cases/public/components/app/index.tsx +++ b/x-pack/plugins/cases/public/components/app/index.tsx @@ -6,12 +6,15 @@ */ import React from 'react'; -import { APP_OWNER } from '../../../common/constants'; + +import type { ScopedFilesClient } from '@kbn/files-plugin/public'; + import type { ExternalReferenceAttachmentTypeRegistry } from '../../client/attachment_framework/external_reference_registry'; import type { PersistableStateAttachmentTypeRegistry } from '../../client/attachment_framework/persistable_state_registry'; + +import { APP_OWNER } from '../../../common/constants'; import { getCasesLazy } from '../../client/ui/get_cases'; import { useApplicationCapabilities } from '../../common/lib/kibana'; - import { Wrapper } from '../wrappers'; import type { CasesRoutesProps } from './types'; @@ -20,11 +23,13 @@ export type CasesProps = CasesRoutesProps; interface CasesAppProps { externalReferenceAttachmentTypeRegistry: ExternalReferenceAttachmentTypeRegistry; persistableStateAttachmentTypeRegistry: PersistableStateAttachmentTypeRegistry; + getFilesClient: (scope: string) => ScopedFilesClient; } const CasesAppComponent: React.FC = ({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, }) => { const userCapabilities = useApplicationCapabilities(); @@ -33,6 +38,7 @@ const CasesAppComponent: React.FC = ({ {getCasesLazy({ externalReferenceAttachmentTypeRegistry, persistableStateAttachmentTypeRegistry, + getFilesClient, owner: [APP_OWNER], useFetchAlertData: () => [false, {}], permissions: userCapabilities.generalCases, diff --git a/x-pack/plugins/cases/public/components/case_action_bar/actions.tsx b/x-pack/plugins/cases/public/components/case_action_bar/actions.tsx index 87cd1fc732a30..b80cd5c2dbe74 100644 --- a/x-pack/plugins/cases/public/components/case_action_bar/actions.tsx +++ b/x-pack/plugins/cases/public/components/case_action_bar/actions.tsx @@ -16,6 +16,7 @@ import type { Case } from '../../../common/ui/types'; import { useAllCasesNavigation } from '../../common/navigation'; import { useCasesContext } from '../cases_context/use_cases_context'; import { useCasesToast } from '../../common/use_cases_toast'; +import { AttachmentActionType } from '../../client/attachment_framework/types'; interface CaseViewActions { caseData: Case; @@ -40,6 +41,7 @@ const ActionsComponent: React.FC = ({ caseData, currentExternal const propertyActions = useMemo( () => [ { + type: AttachmentActionType.BUTTON as const, iconType: 'copyClipboard', label: i18n.COPY_ID_ACTION_LABEL, onClick: () => { @@ -50,6 +52,7 @@ const ActionsComponent: React.FC = ({ caseData, currentExternal ...(currentExternalIncident != null && !isEmpty(currentExternalIncident?.externalUrl) ? [ { + type: AttachmentActionType.BUTTON as const, iconType: 'popout', label: i18n.VIEW_INCIDENT(currentExternalIncident?.externalTitle ?? ''), onClick: () => window.open(currentExternalIncident?.externalUrl, '_blank'), @@ -59,6 +62,7 @@ const ActionsComponent: React.FC = ({ caseData, currentExternal ...(permissions.delete ? [ { + type: AttachmentActionType.BUTTON as const, iconType: 'trash', label: i18n.DELETE_CASE(), color: 'danger' as const, diff --git a/x-pack/plugins/cases/public/components/case_view/case_view_page.test.tsx b/x-pack/plugins/cases/public/components/case_view/case_view_page.test.tsx index bf348124e4616..f247945c7c700 100644 --- a/x-pack/plugins/cases/public/components/case_view/case_view_page.test.tsx +++ b/x-pack/plugins/cases/public/components/case_view/case_view_page.test.tsx @@ -493,8 +493,9 @@ describe('CaseViewPage', () => { it('renders tabs correctly', async () => { const result = appMockRenderer.render(); await act(async () => { - expect(result.getByTestId('case-view-tab-title-alerts')).toBeTruthy(); expect(result.getByTestId('case-view-tab-title-activity')).toBeTruthy(); + expect(result.getByTestId('case-view-tab-title-alerts')).toBeTruthy(); + expect(result.getByTestId('case-view-tab-title-files')).toBeTruthy(); }); }); diff --git a/x-pack/plugins/cases/public/components/case_view/case_view_page.tsx b/x-pack/plugins/cases/public/components/case_view/case_view_page.tsx index a26793e501897..55245de4b22b2 100644 --- a/x-pack/plugins/cases/public/components/case_view/case_view_page.tsx +++ b/x-pack/plugins/cases/public/components/case_view/case_view_page.tsx @@ -18,6 +18,7 @@ import { useCasesTitleBreadcrumbs } from '../use_breadcrumbs'; import { WhitePageWrapperNoBorder } from '../wrappers'; import { CaseViewActivity } from './components/case_view_activity'; import { CaseViewAlerts } from './components/case_view_alerts'; +import { CaseViewFiles } from './components/case_view_files'; import { CaseViewMetrics } from './metrics'; import type { CaseViewPageProps } from './types'; import { useRefreshCaseViewPage } from './use_on_refresh_case_view_page'; @@ -140,6 +141,7 @@ export const CaseViewPage = React.memo( {activeTabId === CASE_VIEW_PAGE_TABS.ALERTS && features.alerts.enabled && ( )} + {activeTabId === CASE_VIEW_PAGE_TABS.FILES && }
{timelineUi?.renderTimelineDetailsPanel ? timelineUi.renderTimelineDetailsPanel() : null} diff --git a/x-pack/plugins/cases/public/components/case_view/case_view_tabs.test.tsx b/x-pack/plugins/cases/public/components/case_view/case_view_tabs.test.tsx index a3da7d90267cf..bd532d95ba58b 100644 --- a/x-pack/plugins/cases/public/components/case_view/case_view_tabs.test.tsx +++ b/x-pack/plugins/cases/public/components/case_view/case_view_tabs.test.tsx @@ -8,23 +8,28 @@ import React from 'react'; import { screen, waitFor } from '@testing-library/react'; import userEvent from '@testing-library/user-event'; + import type { AppMockRenderer } from '../../common/mock'; -import { createAppMockRenderer } from '../../common/mock'; +import type { UseGetCase } from '../../containers/use_get_case'; +import type { CaseViewTabsProps } from './case_view_tabs'; + +import { CASE_VIEW_PAGE_TABS } from '../../../common/types'; import '../../common/mock/match_media'; +import { createAppMockRenderer } from '../../common/mock'; import { useCaseViewNavigation } from '../../common/navigation/hooks'; -import type { UseGetCase } from '../../containers/use_get_case'; import { useGetCase } from '../../containers/use_get_case'; import { CaseViewTabs } from './case_view_tabs'; import { caseData, defaultGetCase } from './mocks'; -import type { CaseViewTabsProps } from './case_view_tabs'; -import { CASE_VIEW_PAGE_TABS } from '../../../common/types'; +import { useGetCaseFileStats } from '../../containers/use_get_case_file_stats'; jest.mock('../../containers/use_get_case'); jest.mock('../../common/navigation/hooks'); jest.mock('../../common/hooks'); +jest.mock('../../containers/use_get_case_file_stats'); const useFetchCaseMock = useGetCase as jest.Mock; const useCaseViewNavigationMock = useCaseViewNavigation as jest.Mock; +const useGetCaseFileStatsMock = useGetCaseFileStats as jest.Mock; const mockGetCase = (props: Partial = {}) => { const data = { @@ -45,8 +50,10 @@ export const caseProps: CaseViewTabsProps = { describe('CaseViewTabs', () => { let appMockRenderer: AppMockRenderer; + const data = { total: 3 }; beforeEach(() => { + useGetCaseFileStatsMock.mockReturnValue({ data }); mockGetCase(); appMockRenderer = createAppMockRenderer(); @@ -62,6 +69,7 @@ describe('CaseViewTabs', () => { expect(await screen.findByTestId('case-view-tab-title-activity')).toBeInTheDocument(); expect(await screen.findByTestId('case-view-tab-title-alerts')).toBeInTheDocument(); + expect(await screen.findByTestId('case-view-tab-title-files')).toBeInTheDocument(); }); it('renders the activity tab by default', async () => { @@ -82,6 +90,40 @@ describe('CaseViewTabs', () => { ); }); + it('shows the files tab as active', async () => { + appMockRenderer.render(); + + expect(await screen.findByTestId('case-view-tab-title-files')).toHaveAttribute( + 'aria-selected', + 'true' + ); + }); + + it('shows the files tab with the correct count and colour', async () => { + appMockRenderer.render(); + + const badge = await screen.findByTestId('case-view-files-stats-badge'); + + expect(badge.getAttribute('class')).toMatch(/accent/); + expect(badge).toHaveTextContent('3'); + }); + + it('do not show count on the files tab if the call isLoading', async () => { + useGetCaseFileStatsMock.mockReturnValue({ isLoading: true, data }); + + appMockRenderer.render(); + + expect(screen.queryByTestId('case-view-files-stats-badge')).not.toBeInTheDocument(); + }); + + it('the files tab count has a different colour if the tab is not active', async () => { + appMockRenderer.render(); + + expect( + (await screen.findByTestId('case-view-files-stats-badge')).getAttribute('class') + ).not.toMatch(/accent/); + }); + it('navigates to the activity tab when the activity tab is clicked', async () => { const navigateToCaseViewMock = useCaseViewNavigationMock().navigateToCaseView; appMockRenderer.render(); @@ -109,4 +151,18 @@ describe('CaseViewTabs', () => { }); }); }); + + it('navigates to the files tab when the files tab is clicked', async () => { + const navigateToCaseViewMock = useCaseViewNavigationMock().navigateToCaseView; + appMockRenderer.render(); + + userEvent.click(await screen.findByTestId('case-view-tab-title-files')); + + await waitFor(() => { + expect(navigateToCaseViewMock).toHaveBeenCalledWith({ + detailName: caseData.id, + tabId: CASE_VIEW_PAGE_TABS.FILES, + }); + }); + }); }); diff --git a/x-pack/plugins/cases/public/components/case_view/case_view_tabs.tsx b/x-pack/plugins/cases/public/components/case_view/case_view_tabs.tsx index 746311051f147..630248bf79d52 100644 --- a/x-pack/plugins/cases/public/components/case_view/case_view_tabs.tsx +++ b/x-pack/plugins/cases/public/components/case_view/case_view_tabs.tsx @@ -5,20 +5,49 @@ * 2.0. */ -import { EuiBetaBadge, EuiSpacer, EuiTab, EuiTabs } from '@elastic/eui'; +import { EuiBetaBadge, EuiNotificationBadge, EuiSpacer, EuiTab, EuiTabs } from '@elastic/eui'; import React, { useCallback, useMemo } from 'react'; import styled from 'styled-components'; import { CASE_VIEW_PAGE_TABS } from '../../../common/types'; import { useCaseViewNavigation } from '../../common/navigation'; import { useCasesContext } from '../cases_context/use_cases_context'; import { EXPERIMENTAL_DESC, EXPERIMENTAL_LABEL } from '../header_page/translations'; -import { ACTIVITY_TAB, ALERTS_TAB } from './translations'; +import { ACTIVITY_TAB, ALERTS_TAB, FILES_TAB } from './translations'; import type { Case } from '../../../common'; +import { useGetCaseFileStats } from '../../containers/use_get_case_file_stats'; const ExperimentalBadge = styled(EuiBetaBadge)` margin-left: 5px; `; +const StyledNotificationBadge = styled(EuiNotificationBadge)` + margin-left: 5px; +`; + +const FilesTab = ({ + activeTab, + fileStatsData, + isLoading, +}: { + activeTab: string; + fileStatsData: { total: number } | undefined; + isLoading: boolean; +}) => ( + <> + {FILES_TAB} + {!isLoading && fileStatsData && ( + + {fileStatsData.total > 0 ? fileStatsData.total : 0} + + )} + +); + +FilesTab.displayName = 'FilesTab'; + export interface CaseViewTabsProps { caseData: Case; activeTab: CASE_VIEW_PAGE_TABS; @@ -27,6 +56,7 @@ export interface CaseViewTabsProps { export const CaseViewTabs = React.memo(({ caseData, activeTab }) => { const { features } = useCasesContext(); const { navigateToCaseView } = useCaseViewNavigation(); + const { data: fileStatsData, isLoading } = useGetCaseFileStats({ caseId: caseData.id }); const tabs = useMemo( () => [ @@ -56,8 +86,14 @@ export const CaseViewTabs = React.memo(({ caseData, activeTab }, ] : []), + { + id: CASE_VIEW_PAGE_TABS.FILES, + name: ( + + ), + }, ], - [features.alerts.enabled, features.alerts.isExperimental] + [activeTab, features.alerts.enabled, features.alerts.isExperimental, fileStatsData, isLoading] ); const renderTabs = useCallback(() => { diff --git a/x-pack/plugins/cases/public/components/case_view/components/case_view_files.test.tsx b/x-pack/plugins/cases/public/components/case_view/components/case_view_files.test.tsx new file mode 100644 index 0000000000000..dc5b937bd8781 --- /dev/null +++ b/x-pack/plugins/cases/public/components/case_view/components/case_view_files.test.tsx @@ -0,0 +1,114 @@ +/* + * 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 { screen, waitFor } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; + +import type { Case } from '../../../../common'; +import type { AppMockRenderer } from '../../../common/mock'; + +import { createAppMockRenderer } from '../../../common/mock'; +import { alertCommentWithIndices, basicCase } from '../../../containers/mock'; +import { useGetCaseFiles } from '../../../containers/use_get_case_files'; +import { CaseViewFiles, DEFAULT_CASE_FILES_FILTERING_OPTIONS } from './case_view_files'; + +jest.mock('../../../containers/use_get_case_files'); + +const useGetCaseFilesMock = useGetCaseFiles as jest.Mock; + +const caseData: Case = { + ...basicCase, + comments: [...basicCase.comments, alertCommentWithIndices], +}; + +describe('Case View Page files tab', () => { + let appMockRender: AppMockRenderer; + + useGetCaseFilesMock.mockReturnValue({ + data: { files: [], total: 11 }, + isLoading: false, + }); + + beforeEach(() => { + appMockRender = createAppMockRenderer(); + }); + + afterEach(() => { + jest.clearAllMocks(); + }); + + it('should render the utility bar for the files table', async () => { + appMockRender.render(); + + expect((await screen.findAllByTestId('cases-files-add')).length).toBe(2); + expect(await screen.findByTestId('cases-files-search')).toBeInTheDocument(); + }); + + it('should render the files table', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table')).toBeInTheDocument(); + }); + + it('clicking table pagination triggers calls to useGetCaseFiles', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('pagination-button-next')); + + await waitFor(() => + expect(useGetCaseFilesMock).toHaveBeenCalledWith({ + caseId: basicCase.id, + page: DEFAULT_CASE_FILES_FILTERING_OPTIONS.page + 1, + perPage: DEFAULT_CASE_FILES_FILTERING_OPTIONS.perPage, + }) + ); + }); + + it('changing perPage value triggers calls to useGetCaseFiles', async () => { + const targetPagination = 50; + + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table')).toBeInTheDocument(); + + userEvent.click(screen.getByTestId('tablePaginationPopoverButton')); + + const pageSizeOption = screen.getByTestId('tablePagination-50-rows'); + + pageSizeOption.style.pointerEvents = 'all'; + + userEvent.click(pageSizeOption); + + await waitFor(() => + expect(useGetCaseFilesMock).toHaveBeenCalledWith({ + caseId: basicCase.id, + page: DEFAULT_CASE_FILES_FILTERING_OPTIONS.page, + perPage: targetPagination, + }) + ); + }); + + it('search by word triggers calls to useGetCaseFiles', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table')).toBeInTheDocument(); + + await userEvent.type(screen.getByTestId('cases-files-search'), 'Foobar{enter}'); + + await waitFor(() => + expect(useGetCaseFilesMock).toHaveBeenCalledWith({ + caseId: basicCase.id, + page: DEFAULT_CASE_FILES_FILTERING_OPTIONS.page, + perPage: DEFAULT_CASE_FILES_FILTERING_OPTIONS.perPage, + searchTerm: 'Foobar', + }) + ); + }); +}); diff --git a/x-pack/plugins/cases/public/components/case_view/components/case_view_files.tsx b/x-pack/plugins/cases/public/components/case_view/components/case_view_files.tsx new file mode 100644 index 0000000000000..54693acfa2390 --- /dev/null +++ b/x-pack/plugins/cases/public/components/case_view/components/case_view_files.tsx @@ -0,0 +1,104 @@ +/* + * 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 { isEqual } from 'lodash/fp'; +import React, { useCallback, useMemo, useState } from 'react'; + +import type { Criteria } from '@elastic/eui'; +import type { FileJSON } from '@kbn/shared-ux-file-types'; + +import { EuiFlexItem, EuiFlexGroup } from '@elastic/eui'; + +import type { Case } from '../../../../common/ui/types'; +import type { CaseFilesFilteringOptions } from '../../../containers/use_get_case_files'; + +import { CASE_VIEW_PAGE_TABS } from '../../../../common/types'; +import { useGetCaseFiles } from '../../../containers/use_get_case_files'; +import { FilesTable } from '../../files/files_table'; +import { CaseViewTabs } from '../case_view_tabs'; +import { FilesUtilityBar } from '../../files/files_utility_bar'; + +interface CaseViewFilesProps { + caseData: Case; +} + +export const DEFAULT_CASE_FILES_FILTERING_OPTIONS = { + page: 0, + perPage: 10, +}; + +export const CaseViewFiles = ({ caseData }: CaseViewFilesProps) => { + const [filteringOptions, setFilteringOptions] = useState( + DEFAULT_CASE_FILES_FILTERING_OPTIONS + ); + const { + data: caseFiles, + isLoading, + isPreviousData, + } = useGetCaseFiles({ + ...filteringOptions, + caseId: caseData.id, + }); + + const onTableChange = useCallback( + ({ page }: Criteria) => { + if (page && !isPreviousData) { + setFilteringOptions({ + ...filteringOptions, + page: page.index, + perPage: page.size, + }); + } + }, + [filteringOptions, isPreviousData] + ); + + const onSearchChange = useCallback( + (newSearch) => { + const trimSearch = newSearch.trim(); + if (!isEqual(trimSearch, filteringOptions.searchTerm)) { + setFilteringOptions({ + ...filteringOptions, + searchTerm: trimSearch, + }); + } + }, + [filteringOptions] + ); + + const pagination = useMemo( + () => ({ + pageIndex: filteringOptions.page, + pageSize: filteringOptions.perPage, + totalItemCount: caseFiles?.total ?? 0, + pageSizeOptions: [10, 25, 50], + showPerPageOptions: true, + }), + [filteringOptions.page, filteringOptions.perPage, caseFiles?.total] + ); + + return ( + + + + + + + + + + + + ); +}; + +CaseViewFiles.displayName = 'CaseViewFiles'; diff --git a/x-pack/plugins/cases/public/components/case_view/translations.ts b/x-pack/plugins/cases/public/components/case_view/translations.ts index d71c56fc97fca..8fc80c1a0aba3 100644 --- a/x-pack/plugins/cases/public/components/case_view/translations.ts +++ b/x-pack/plugins/cases/public/components/case_view/translations.ts @@ -165,6 +165,10 @@ export const ALERTS_TAB = i18n.translate('xpack.cases.caseView.tabs.alerts', { defaultMessage: 'Alerts', }); +export const FILES_TAB = i18n.translate('xpack.cases.caseView.tabs.files', { + defaultMessage: 'Files', +}); + export const ALERTS_EMPTY_DESCRIPTION = i18n.translate( 'xpack.cases.caseView.tabs.alerts.emptyDescription', { diff --git a/x-pack/plugins/cases/public/components/cases_context/index.tsx b/x-pack/plugins/cases/public/components/cases_context/index.tsx index 4e31fffdd7701..dc7eac6381b4d 100644 --- a/x-pack/plugins/cases/public/components/cases_context/index.tsx +++ b/x-pack/plugins/cases/public/components/cases_context/index.tsx @@ -5,25 +5,34 @@ * 2.0. */ -import type { Dispatch } from 'react'; -import React, { useState, useEffect, useReducer } from 'react'; +import type { Dispatch, ReactNode } from 'react'; + import { merge } from 'lodash'; +import React, { useCallback, useEffect, useState, useReducer } from 'react'; import useDeepCompareEffect from 'react-use/lib/useDeepCompareEffect'; -import { DEFAULT_FEATURES } from '../../../common/constants'; -import { DEFAULT_BASE_PATH } from '../../common/navigation'; -import { useApplication } from './use_application'; + +import type { ScopedFilesClient } from '@kbn/files-plugin/public'; + +import { FilesContext } from '@kbn/shared-ux-file-context'; + import type { CasesContextStoreAction } from './cases_context_reducer'; -import { casesContextReducer, getInitialCasesContextState } from './cases_context_reducer'; import type { CasesFeaturesAllRequired, CasesFeatures, CasesPermissions, } from '../../containers/types'; -import { CasesGlobalComponents } from './cases_global_components'; import type { ReleasePhase } from '../types'; import type { ExternalReferenceAttachmentTypeRegistry } from '../../client/attachment_framework/external_reference_registry'; import type { PersistableStateAttachmentTypeRegistry } from '../../client/attachment_framework/persistable_state_registry'; +import { CasesGlobalComponents } from './cases_global_components'; +import { DEFAULT_FEATURES } from '../../../common/constants'; +import { constructFileKindIdByOwner } from '../../../common/files'; +import { DEFAULT_BASE_PATH } from '../../common/navigation'; +import { useApplication } from './use_application'; +import { casesContextReducer, getInitialCasesContextState } from './cases_context_reducer'; +import { isRegisteredOwner } from '../../files'; + export type CasesContextValueDispatch = Dispatch; export interface CasesContextValue { @@ -50,6 +59,7 @@ export interface CasesContextProps basePath?: string; features?: CasesFeatures; releasePhase?: ReleasePhase; + getFilesClient: (scope: string) => ScopedFilesClient; } export const CasesContext = React.createContext(undefined); @@ -69,6 +79,7 @@ export const CasesProvider: React.FC<{ value: CasesContextProps }> = ({ basePath = DEFAULT_BASE_PATH, features = {}, releasePhase = 'ga', + getFilesClient, }, }) => { const { appId, appTitle } = useApplication(); @@ -114,10 +125,35 @@ export const CasesProvider: React.FC<{ value: CasesContextProps }> = ({ } }, [appTitle, appId]); + const applyFilesContext = useCallback( + (contextChildren: ReactNode) => { + if (owner.length === 0) { + return contextChildren; + } + + if (isRegisteredOwner(owner[0])) { + return ( + + {contextChildren} + + ); + } else { + throw new Error( + 'Invalid owner provided to cases context. See https://github.com/elastic/kibana/blob/main/x-pack/plugins/cases/README.md#casescontext-setup' + ); + } + }, + [getFilesClient, owner] + ); + return isCasesContextValue(value) ? ( - - {children} + {applyFilesContext( + <> + + {children} + + )} ) : null; }; diff --git a/x-pack/plugins/cases/public/components/files/add_file.test.tsx b/x-pack/plugins/cases/public/components/files/add_file.test.tsx new file mode 100644 index 0000000000000..911f8a4df538d --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/add_file.test.tsx @@ -0,0 +1,241 @@ +/* + * 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 type { FileUploadProps } from '@kbn/shared-ux-file-upload'; + +import { screen, waitFor } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; + +import type { AppMockRenderer } from '../../common/mock'; + +import * as api from '../../containers/api'; +import { + buildCasesPermissions, + createAppMockRenderer, + mockedTestProvidersOwner, +} from '../../common/mock'; +import { AddFile } from './add_file'; +import { useToasts } from '../../common/lib/kibana'; + +import { useCreateAttachments } from '../../containers/use_create_attachments'; +import { basicCaseId, basicFileMock } from '../../containers/mock'; + +jest.mock('../../containers/api'); +jest.mock('../../containers/use_create_attachments'); +jest.mock('../../common/lib/kibana'); + +const useToastsMock = useToasts as jest.Mock; +const useCreateAttachmentsMock = useCreateAttachments as jest.Mock; + +const mockedExternalReferenceId = 'externalReferenceId'; +const validateMetadata = jest.fn(); +const mockFileUpload = jest + .fn() + .mockImplementation( + ({ + kind, + onDone, + onError, + meta, + }: Required>) => ( + <> + + + + + ) + ); + +jest.mock('@kbn/shared-ux-file-upload', () => { + const original = jest.requireActual('@kbn/shared-ux-file-upload'); + return { + ...original, + FileUpload: (props: unknown) => mockFileUpload(props), + }; +}); + +describe('AddFile', () => { + let appMockRender: AppMockRenderer; + + const successMock = jest.fn(); + const errorMock = jest.fn(); + + useToastsMock.mockImplementation(() => { + return { + addSuccess: successMock, + addError: errorMock, + }; + }); + + const createAttachmentsMock = jest.fn(); + + useCreateAttachmentsMock.mockReturnValue({ + isLoading: false, + createAttachments: createAttachmentsMock, + }); + + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders correctly', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-add')).toBeInTheDocument(); + }); + + it('AddFile is not rendered if user has no create permission', async () => { + appMockRender = createAppMockRenderer({ + permissions: buildCasesPermissions({ create: false }), + }); + + appMockRender.render(); + + expect(screen.queryByTestId('cases-files-add')).not.toBeInTheDocument(); + }); + + it('AddFile is not rendered if user has no update permission', async () => { + appMockRender = createAppMockRenderer({ + permissions: buildCasesPermissions({ update: false }), + }); + + appMockRender.render(); + + expect(screen.queryByTestId('cases-files-add')).not.toBeInTheDocument(); + }); + + it('clicking button renders modal', async () => { + appMockRender.render(); + + userEvent.click(await screen.findByTestId('cases-files-add')); + + expect(await screen.findByTestId('cases-files-add-modal')).toBeInTheDocument(); + }); + + it('createAttachments called with right parameters', async () => { + appMockRender.render(); + + userEvent.click(await screen.findByTestId('cases-files-add')); + + expect(await screen.findByTestId('cases-files-add-modal')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('testOnDone')); + + await waitFor(() => + expect(createAttachmentsMock).toBeCalledWith({ + caseId: 'foobar', + caseOwner: mockedTestProvidersOwner[0], + data: [ + { + externalReferenceAttachmentTypeId: '.files', + externalReferenceId: mockedExternalReferenceId, + externalReferenceMetadata: { + files: [ + { + created: '2020-02-19T23:06:33.798Z', + extension: 'png', + mimeType: 'image/png', + name: 'my-super-cool-screenshot', + }, + ], + }, + externalReferenceStorage: { soType: 'file', type: 'savedObject' }, + type: 'externalReference', + }, + ], + throwOnError: true, + updateCase: expect.any(Function), + }) + ); + + await waitFor(() => + expect(successMock).toHaveBeenCalledWith({ + className: 'eui-textBreakWord', + title: `File ${basicFileMock.name} uploaded successfully`, + }) + ); + }); + + it('failed upload displays error toast', async () => { + appMockRender.render(); + + userEvent.click(await screen.findByTestId('cases-files-add')); + + expect(await screen.findByTestId('cases-files-add-modal')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('testOnError')); + + expect(errorMock).toHaveBeenCalledWith( + { name: 'upload error name', message: 'upload error message' }, + { + title: 'Failed to upload file', + } + ); + }); + + it('correct metadata is passed to FileUpload component', async () => { + const caseId = 'foobar'; + + appMockRender.render(); + + userEvent.click(await screen.findByTestId('cases-files-add')); + + expect(await screen.findByTestId('cases-files-add-modal')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('testMetadata')); + + await waitFor(() => + expect(validateMetadata).toHaveBeenCalledWith({ + caseIds: [caseId], + owner: [mockedTestProvidersOwner[0]], + }) + ); + }); + + it('deleteFileAttachments is called correctly if createAttachments fails', async () => { + const spyOnDeleteFileAttachments = jest.spyOn(api, 'deleteFileAttachments'); + + createAttachmentsMock.mockImplementation(() => { + throw new Error(); + }); + + appMockRender.render(); + + userEvent.click(await screen.findByTestId('cases-files-add')); + + expect(await screen.findByTestId('cases-files-add-modal')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('testOnDone')); + + expect(spyOnDeleteFileAttachments).toHaveBeenCalledWith({ + caseId: basicCaseId, + fileIds: [mockedExternalReferenceId], + signal: expect.any(AbortSignal), + }); + + createAttachmentsMock.mockRestore(); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/add_file.tsx b/x-pack/plugins/cases/public/components/files/add_file.tsx new file mode 100644 index 0000000000000..a3c9fba1188ea --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/add_file.tsx @@ -0,0 +1,141 @@ +/* + * 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 { + EuiButton, + EuiFlexItem, + EuiModal, + EuiModalBody, + EuiModalHeader, + EuiModalHeaderTitle, +} from '@elastic/eui'; +import React, { useCallback, useState } from 'react'; + +import type { UploadedFile } from '@kbn/shared-ux-file-upload/src/file_upload'; + +import { FILE_SO_TYPE } from '@kbn/files-plugin/common'; +import { FileUpload } from '@kbn/shared-ux-file-upload'; + +import { constructFileKindIdByOwner } from '../../../common/files'; +import type { Owner } from '../../../common/constants/types'; + +import { CommentType, ExternalReferenceStorageType } from '../../../common'; +import { FILE_ATTACHMENT_TYPE } from '../../../common/api'; +import { useCasesToast } from '../../common/use_cases_toast'; +import { useCreateAttachments } from '../../containers/use_create_attachments'; +import { useCasesContext } from '../cases_context/use_cases_context'; +import * as i18n from './translations'; +import { useRefreshCaseViewPage } from '../case_view/use_on_refresh_case_view_page'; +import { deleteFileAttachments } from '../../containers/api'; + +interface AddFileProps { + caseId: string; +} + +const AddFileComponent: React.FC = ({ caseId }) => { + const { owner, permissions } = useCasesContext(); + const { showDangerToast, showErrorToast, showSuccessToast } = useCasesToast(); + const { isLoading, createAttachments } = useCreateAttachments(); + const refreshAttachmentsTable = useRefreshCaseViewPage(); + const [isModalVisible, setIsModalVisible] = useState(false); + + const closeModal = () => setIsModalVisible(false); + const showModal = () => setIsModalVisible(true); + + const onError = useCallback( + (error) => { + showErrorToast(error, { + title: i18n.FAILED_UPLOAD, + }); + }, + [showErrorToast] + ); + + const onUploadDone = useCallback( + async (chosenFiles: UploadedFile[]) => { + if (chosenFiles.length === 0) { + showDangerToast(i18n.FAILED_UPLOAD); + return; + } + + const file = chosenFiles[0]; + + try { + await createAttachments({ + caseId, + caseOwner: owner[0], + data: [ + { + type: CommentType.externalReference, + externalReferenceId: file.id, + externalReferenceStorage: { + type: ExternalReferenceStorageType.savedObject, + soType: FILE_SO_TYPE, + }, + externalReferenceAttachmentTypeId: FILE_ATTACHMENT_TYPE, + externalReferenceMetadata: { + files: [ + { + name: file.fileJSON.name, + extension: file.fileJSON.extension ?? '', + mimeType: file.fileJSON.mimeType ?? '', + created: file.fileJSON.created, + }, + ], + }, + }, + ], + updateCase: refreshAttachmentsTable, + throwOnError: true, + }); + + showSuccessToast(i18n.SUCCESSFUL_UPLOAD_FILE_NAME(file.fileJSON.name)); + } catch (error) { + // error toast is handled inside createAttachments + + // we need to delete the file if attachment creation failed + const abortCtrlRef = new AbortController(); + return deleteFileAttachments({ caseId, fileIds: [file.id], signal: abortCtrlRef.signal }); + } + + closeModal(); + }, + [caseId, createAttachments, owner, refreshAttachmentsTable, showDangerToast, showSuccessToast] + ); + + return permissions.create && permissions.update ? ( + + + {i18n.ADD_FILE} + + {isModalVisible && ( + + + {i18n.ADD_FILE} + + + + + + )} + + ) : null; +}; +AddFileComponent.displayName = 'AddFile'; + +export const AddFile = React.memo(AddFileComponent); diff --git a/x-pack/plugins/cases/public/components/files/file_delete_button.test.tsx b/x-pack/plugins/cases/public/components/files/file_delete_button.test.tsx new file mode 100644 index 0000000000000..38ed8a20eab40 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_delete_button.test.tsx @@ -0,0 +1,155 @@ +/* + * 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 { screen, waitFor } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; + +import type { AppMockRenderer } from '../../common/mock'; + +import { buildCasesPermissions, createAppMockRenderer } from '../../common/mock'; +import { basicCaseId, basicFileMock } from '../../containers/mock'; +import { useDeleteFileAttachment } from '../../containers/use_delete_file_attachment'; +import { FileDeleteButton } from './file_delete_button'; + +jest.mock('../../containers/use_delete_file_attachment'); + +const useDeleteFileAttachmentMock = useDeleteFileAttachment as jest.Mock; + +describe('FileDeleteButton', () => { + let appMockRender: AppMockRenderer; + const mutate = jest.fn(); + + useDeleteFileAttachmentMock.mockReturnValue({ isLoading: false, mutate }); + + describe('isIcon', () => { + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders delete button correctly', async () => { + appMockRender.render( + + ); + + expect(await screen.findByTestId('cases-files-delete-button')).toBeInTheDocument(); + + expect(useDeleteFileAttachmentMock).toBeCalledTimes(1); + }); + + it('clicking delete button opens the confirmation modal', async () => { + appMockRender.render( + + ); + + const deleteButton = await screen.findByTestId('cases-files-delete-button'); + + expect(deleteButton).toBeInTheDocument(); + + userEvent.click(deleteButton); + + expect(await screen.findByTestId('property-actions-confirm-modal')).toBeInTheDocument(); + }); + + it('clicking delete button in the confirmation modal calls deleteFileAttachment with proper params', async () => { + appMockRender.render( + + ); + + const deleteButton = await screen.findByTestId('cases-files-delete-button'); + + expect(deleteButton).toBeInTheDocument(); + + userEvent.click(deleteButton); + + expect(await screen.findByTestId('property-actions-confirm-modal')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('confirmModalConfirmButton')); + + await waitFor(() => { + expect(mutate).toHaveBeenCalledTimes(1); + expect(mutate).toHaveBeenCalledWith({ + caseId: basicCaseId, + fileId: basicFileMock.id, + }); + }); + }); + + it('delete button is not rendered if user has no delete permission', async () => { + appMockRender = createAppMockRenderer({ + permissions: buildCasesPermissions({ delete: false }), + }); + + appMockRender.render( + + ); + + expect(screen.queryByTestId('cases-files-delete-button')).not.toBeInTheDocument(); + }); + }); + + describe('not isIcon', () => { + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders delete button correctly', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-delete-button')).toBeInTheDocument(); + + expect(useDeleteFileAttachmentMock).toBeCalledTimes(1); + }); + + it('clicking delete button opens the confirmation modal', async () => { + appMockRender.render(); + + const deleteButton = await screen.findByTestId('cases-files-delete-button'); + + expect(deleteButton).toBeInTheDocument(); + + userEvent.click(deleteButton); + + expect(await screen.findByTestId('property-actions-confirm-modal')).toBeInTheDocument(); + }); + + it('clicking delete button in the confirmation modal calls deleteFileAttachment with proper params', async () => { + appMockRender.render(); + + const deleteButton = await screen.findByTestId('cases-files-delete-button'); + + expect(deleteButton).toBeInTheDocument(); + + userEvent.click(deleteButton); + + expect(await screen.findByTestId('property-actions-confirm-modal')).toBeInTheDocument(); + + userEvent.click(await screen.findByTestId('confirmModalConfirmButton')); + + await waitFor(() => { + expect(mutate).toHaveBeenCalledTimes(1); + expect(mutate).toHaveBeenCalledWith({ + caseId: basicCaseId, + fileId: basicFileMock.id, + }); + }); + }); + + it('delete button is not rendered if user has no delete permission', async () => { + appMockRender = createAppMockRenderer({ + permissions: buildCasesPermissions({ delete: false }), + }); + + appMockRender.render(); + + expect(screen.queryByTestId('cases-files-delete-button')).not.toBeInTheDocument(); + }); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/file_delete_button.tsx b/x-pack/plugins/cases/public/components/files/file_delete_button.tsx new file mode 100644 index 0000000000000..f344b942aa2c2 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_delete_button.tsx @@ -0,0 +1,62 @@ +/* + * 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 { EuiButtonEmpty, EuiButtonIcon } from '@elastic/eui'; +import * as i18n from './translations'; +import { useDeleteFileAttachment } from '../../containers/use_delete_file_attachment'; +import { useDeletePropertyAction } from '../user_actions/property_actions/use_delete_property_action'; +import { DeleteAttachmentConfirmationModal } from '../user_actions/delete_attachment_confirmation_modal'; +import { useCasesContext } from '../cases_context/use_cases_context'; + +interface FileDeleteButtonProps { + caseId: string; + fileId: string; + isIcon?: boolean; +} + +const FileDeleteButtonComponent: React.FC = ({ caseId, fileId, isIcon }) => { + const { permissions } = useCasesContext(); + const { isLoading, mutate: deleteFileAttachment } = useDeleteFileAttachment(); + + const { showDeletionModal, onModalOpen, onConfirm, onCancel } = useDeletePropertyAction({ + onDelete: () => deleteFileAttachment({ caseId, fileId }), + }); + + const buttonProps = { + iconType: 'trash', + 'aria-label': i18n.DELETE_FILE, + color: 'danger' as const, + isDisabled: isLoading, + onClick: onModalOpen, + 'data-test-subj': 'cases-files-delete-button', + }; + + return permissions.delete ? ( + <> + {isIcon ? ( + + ) : ( + {i18n.DELETE_FILE} + )} + {showDeletionModal ? ( + + ) : null} + + ) : ( + <> + ); +}; +FileDeleteButtonComponent.displayName = 'FileDeleteButton'; + +export const FileDeleteButton = React.memo(FileDeleteButtonComponent); diff --git a/x-pack/plugins/cases/public/components/files/file_download_button.test.tsx b/x-pack/plugins/cases/public/components/files/file_download_button.test.tsx new file mode 100644 index 0000000000000..0c729900a9ea6 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_download_button.test.tsx @@ -0,0 +1,57 @@ +/* + * 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 { screen } from '@testing-library/react'; + +import type { AppMockRenderer } from '../../common/mock'; +import { createAppMockRenderer, mockedTestProvidersOwner } from '../../common/mock'; +import { FileDownloadButton } from './file_download_button'; +import { basicFileMock } from '../../containers/mock'; +import { constructFileKindIdByOwner } from '../../../common/files'; + +describe('FileDownloadButton', () => { + let appMockRender: AppMockRenderer; + + describe('isIcon', () => { + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders download button with correct href', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-download-button')).toBeInTheDocument(); + + expect(appMockRender.getFilesClient().getDownloadHref).toBeCalledTimes(1); + expect(appMockRender.getFilesClient().getDownloadHref).toHaveBeenCalledWith({ + fileKind: constructFileKindIdByOwner(mockedTestProvidersOwner[0]), + id: basicFileMock.id, + }); + }); + }); + + describe('not isIcon', () => { + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders download button with correct href', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-download-button')).toBeInTheDocument(); + + expect(appMockRender.getFilesClient().getDownloadHref).toBeCalledTimes(1); + expect(appMockRender.getFilesClient().getDownloadHref).toHaveBeenCalledWith({ + fileKind: constructFileKindIdByOwner(mockedTestProvidersOwner[0]), + id: basicFileMock.id, + }); + }); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/file_download_button.tsx b/x-pack/plugins/cases/public/components/files/file_download_button.tsx new file mode 100644 index 0000000000000..856c7000ba9d5 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_download_button.tsx @@ -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 React from 'react'; + +import { EuiButtonEmpty, EuiButtonIcon } from '@elastic/eui'; +import { useFilesContext } from '@kbn/shared-ux-file-context'; + +import type { Owner } from '../../../common/constants/types'; + +import { constructFileKindIdByOwner } from '../../../common/files'; +import { useCasesContext } from '../cases_context/use_cases_context'; +import * as i18n from './translations'; + +interface FileDownloadButtonProps { + fileId: string; + isIcon?: boolean; +} + +const FileDownloadButtonComponent: React.FC = ({ fileId, isIcon }) => { + const { owner } = useCasesContext(); + const { client: filesClient } = useFilesContext(); + + const buttonProps = { + iconType: 'download', + 'aria-label': i18n.DOWNLOAD_FILE, + href: filesClient.getDownloadHref({ + fileKind: constructFileKindIdByOwner(owner[0] as Owner), + id: fileId, + }), + 'data-test-subj': 'cases-files-download-button', + }; + + return isIcon ? ( + + ) : ( + {i18n.DOWNLOAD_FILE} + ); +}; +FileDownloadButtonComponent.displayName = 'FileDownloadButton'; + +export const FileDownloadButton = React.memo(FileDownloadButtonComponent); diff --git a/x-pack/plugins/cases/public/components/files/file_name_link.test.tsx b/x-pack/plugins/cases/public/components/files/file_name_link.test.tsx new file mode 100644 index 0000000000000..39c62322dedeb --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_name_link.test.tsx @@ -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 React from 'react'; +import { screen } from '@testing-library/react'; + +import type { AppMockRenderer } from '../../common/mock'; +import { createAppMockRenderer } from '../../common/mock'; +import userEvent from '@testing-library/user-event'; +import { FileNameLink } from './file_name_link'; +import { basicFileMock } from '../../containers/mock'; + +describe('FileNameLink', () => { + let appMockRender: AppMockRenderer; + + const defaultProps = { + file: basicFileMock, + showPreview: jest.fn(), + }; + + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders clickable name if file is image', async () => { + appMockRender.render(); + + const nameLink = await screen.findByTestId('cases-files-name-link'); + + expect(nameLink).toBeInTheDocument(); + + userEvent.click(nameLink); + + expect(defaultProps.showPreview).toHaveBeenCalled(); + }); + + it('renders simple text name if file is not image', async () => { + appMockRender.render( + + ); + + const nameLink = await screen.findByTestId('cases-files-name-text'); + + expect(nameLink).toBeInTheDocument(); + + userEvent.click(nameLink); + + expect(defaultProps.showPreview).not.toHaveBeenCalled(); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/file_name_link.tsx b/x-pack/plugins/cases/public/components/files/file_name_link.tsx new file mode 100644 index 0000000000000..4c9aedc3ad85b --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_name_link.tsx @@ -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 React from 'react'; + +import { EuiLink } from '@elastic/eui'; + +import type { FileJSON } from '@kbn/shared-ux-file-types'; +import * as i18n from './translations'; +import { isImage } from './utils'; + +interface FileNameLinkProps { + file: Pick; + showPreview: () => void; +} + +const FileNameLinkComponent: React.FC = ({ file, showPreview }) => { + let fileName = file.name; + + if (typeof file.extension !== 'undefined') { + fileName += `.${file.extension}`; + } + + if (isImage(file)) { + return ( + + {fileName} + + ); + } else { + return ( + + {fileName} + + ); + } +}; +FileNameLinkComponent.displayName = 'FileNameLink'; + +export const FileNameLink = React.memo(FileNameLinkComponent); diff --git a/x-pack/plugins/cases/public/components/files/file_preview.test.tsx b/x-pack/plugins/cases/public/components/files/file_preview.test.tsx new file mode 100644 index 0000000000000..b02df3a82228f --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_preview.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 { screen, waitFor } from '@testing-library/react'; + +import type { AppMockRenderer } from '../../common/mock'; + +import { constructFileKindIdByOwner } from '../../../common/files'; +import { createAppMockRenderer, mockedTestProvidersOwner } from '../../common/mock'; +import { basicFileMock } from '../../containers/mock'; +import { FilePreview } from './file_preview'; + +describe('FilePreview', () => { + let appMockRender: AppMockRenderer; + + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('FilePreview rendered correctly', async () => { + appMockRender.render(); + + await waitFor(() => + expect(appMockRender.getFilesClient().getDownloadHref).toHaveBeenCalledWith({ + id: basicFileMock.id, + fileKind: constructFileKindIdByOwner(mockedTestProvidersOwner[0]), + }) + ); + + expect(await screen.findByTestId('cases-files-image-preview')).toBeInTheDocument(); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/file_preview.tsx b/x-pack/plugins/cases/public/components/files/file_preview.tsx new file mode 100644 index 0000000000000..1bb91c5b53ff7 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_preview.tsx @@ -0,0 +1,56 @@ +/* + * 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 type { FileJSON } from '@kbn/shared-ux-file-types'; + +import { EuiOverlayMask, EuiFocusTrap, EuiImage } from '@elastic/eui'; +import { useFilesContext } from '@kbn/shared-ux-file-context'; + +import type { Owner } from '../../../common/constants/types'; + +import { constructFileKindIdByOwner } from '../../../common/files'; +import { useCasesContext } from '../cases_context/use_cases_context'; + +interface FilePreviewProps { + closePreview: () => void; + selectedFile: Pick; +} + +const StyledOverlayMask = styled(EuiOverlayMask)` + padding-block-end: 0vh !important; + + img { + max-height: 85vh; + max-width: 85vw; + object-fit: contain; + } +`; + +export const FilePreview = ({ closePreview, selectedFile }: FilePreviewProps) => { + const { client: filesClient } = useFilesContext(); + const { owner } = useCasesContext(); + + return ( + + + + + + ); +}; + +FilePreview.displayName = 'FilePreview'; diff --git a/x-pack/plugins/cases/public/components/files/file_type.test.tsx b/x-pack/plugins/cases/public/components/files/file_type.test.tsx new file mode 100644 index 0000000000000..8d4fd4c0eabde --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_type.test.tsx @@ -0,0 +1,187 @@ +/* + * 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 type { JsonValue } from '@kbn/utility-types'; + +import { screen } from '@testing-library/react'; + +import type { ExternalReferenceAttachmentViewProps } from '../../client/attachment_framework/types'; +import type { AppMockRenderer } from '../../common/mock'; + +import { AttachmentActionType } from '../../client/attachment_framework/types'; +import { FILE_ATTACHMENT_TYPE } from '../../../common/api'; +import { createAppMockRenderer } from '../../common/mock'; +import { basicCase, basicFileMock } from '../../containers/mock'; +import { getFileType } from './file_type'; +import userEvent from '@testing-library/user-event'; + +describe('getFileType', () => { + const fileType = getFileType(); + + it('invalid props return blank FileAttachmentViewObject', () => { + expect(fileType).toStrictEqual({ + id: FILE_ATTACHMENT_TYPE, + icon: 'document', + displayName: 'File Attachment Type', + getAttachmentViewObject: expect.any(Function), + }); + }); + + describe('getFileAttachmentViewObject', () => { + let appMockRender: AppMockRenderer; + + const attachmentViewProps = { + externalReferenceId: basicFileMock.id, + externalReferenceMetadata: { files: [basicFileMock] }, + caseData: { title: basicCase.title, id: basicCase.id }, + } as unknown as ExternalReferenceAttachmentViewProps; + + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('event renders a clickable name if the file is an image', async () => { + appMockRender = createAppMockRenderer(); + + // @ts-ignore + appMockRender.render(fileType.getAttachmentViewObject({ ...attachmentViewProps }).event); + + expect(await screen.findByText('my-super-cool-screenshot.png')).toBeInTheDocument(); + expect(screen.queryByTestId('cases-files-image-preview')).not.toBeInTheDocument(); + }); + + it('clicking the name rendered in event opens the file preview', async () => { + appMockRender = createAppMockRenderer(); + + // @ts-ignore + appMockRender.render(fileType.getAttachmentViewObject({ ...attachmentViewProps }).event); + + userEvent.click(await screen.findByText('my-super-cool-screenshot.png')); + expect(await screen.findByTestId('cases-files-image-preview')).toBeInTheDocument(); + }); + + it('getActions renders a download button', async () => { + appMockRender = createAppMockRenderer(); + + const attachmentViewObject = fileType.getAttachmentViewObject({ ...attachmentViewProps }); + + expect(attachmentViewObject).not.toBeUndefined(); + + // @ts-ignore + const actions = attachmentViewObject.getActions(); + + expect(actions.length).toBe(2); + expect(actions[0]).toStrictEqual({ + type: AttachmentActionType.CUSTOM, + isPrimary: false, + label: 'Download File', + render: expect.any(Function), + }); + + // @ts-ignore + appMockRender.render(actions[0].render()); + + expect(await screen.findByTestId('cases-files-download-button')).toBeInTheDocument(); + }); + + it('getActions renders a delete button', async () => { + appMockRender = createAppMockRenderer(); + + const attachmentViewObject = fileType.getAttachmentViewObject({ ...attachmentViewProps }); + + expect(attachmentViewObject).not.toBeUndefined(); + + // @ts-ignore + const actions = attachmentViewObject.getActions(); + + expect(actions.length).toBe(2); + expect(actions[1]).toStrictEqual({ + type: AttachmentActionType.CUSTOM, + isPrimary: false, + label: 'Delete File', + render: expect.any(Function), + }); + + // @ts-ignore + appMockRender.render(actions[1].render()); + + expect(await screen.findByTestId('cases-files-delete-button')).toBeInTheDocument(); + }); + + it('clicking the delete button in actions opens deletion modal', async () => { + appMockRender = createAppMockRenderer(); + + const attachmentViewObject = fileType.getAttachmentViewObject({ ...attachmentViewProps }); + + expect(attachmentViewObject).not.toBeUndefined(); + + // @ts-ignore + const actions = attachmentViewObject.getActions(); + + expect(actions.length).toBe(2); + expect(actions[1]).toStrictEqual({ + type: AttachmentActionType.CUSTOM, + isPrimary: false, + label: 'Delete File', + render: expect.any(Function), + }); + + // @ts-ignore + appMockRender.render(actions[1].render()); + + const deleteButton = await screen.findByTestId('cases-files-delete-button'); + + expect(deleteButton).toBeInTheDocument(); + + userEvent.click(deleteButton); + + expect(await screen.findByTestId('property-actions-confirm-modal')).toBeInTheDocument(); + }); + + it('empty externalReferenceMetadata returns blank FileAttachmentViewObject', () => { + expect( + fileType.getAttachmentViewObject({ ...attachmentViewProps, externalReferenceMetadata: {} }) + ).toEqual({ + event: 'added an unknown file', + hideDefaultActions: true, + timelineAvatar: 'document', + type: 'regular', + getActions: expect.any(Function), + }); + }); + + it('timelineAvatar is image if file is an image', () => { + expect(fileType.getAttachmentViewObject(attachmentViewProps)).toEqual( + expect.objectContaining({ + timelineAvatar: 'image', + }) + ); + }); + + it('timelineAvatar is document if file is not an image', () => { + expect( + fileType.getAttachmentViewObject({ + ...attachmentViewProps, + externalReferenceMetadata: { + files: [{ ...basicFileMock, mimeType: 'text/csv' } as JsonValue], + }, + }) + ).toEqual( + expect.objectContaining({ + timelineAvatar: 'document', + }) + ); + }); + + it('default actions should be hidden', () => { + expect(fileType.getAttachmentViewObject(attachmentViewProps)).toEqual( + expect.objectContaining({ + hideDefaultActions: true, + }) + ); + }); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/file_type.tsx b/x-pack/plugins/cases/public/components/files/file_type.tsx new file mode 100644 index 0000000000000..271bf3008e70e --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/file_type.tsx @@ -0,0 +1,106 @@ +/* + * 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 type { + ExternalReferenceAttachmentType, + ExternalReferenceAttachmentViewProps, +} from '../../client/attachment_framework/types'; +import type { DownloadableFile } from './types'; + +import { AttachmentActionType } from '../../client/attachment_framework/types'; +import { FILE_ATTACHMENT_TYPE } from '../../../common/api'; +import { FileDownloadButton } from './file_download_button'; +import { FileNameLink } from './file_name_link'; +import { FilePreview } from './file_preview'; +import * as i18n from './translations'; +import { isImage, isValidFileExternalReferenceMetadata } from './utils'; +import { useFilePreview } from './use_file_preview'; +import { FileDeleteButton } from './file_delete_button'; + +interface FileAttachmentEventProps { + file: DownloadableFile; +} + +const FileAttachmentEvent = ({ file }: FileAttachmentEventProps) => { + const { isPreviewVisible, showPreview, closePreview } = useFilePreview(); + + return ( + <> + {i18n.ADDED} + + {isPreviewVisible && } + + ); +}; + +FileAttachmentEvent.displayName = 'FileAttachmentEvent'; + +function getFileDownloadButton(fileId: string) { + return ; +} + +function getFileDeleteButton(caseId: string, fileId: string) { + return ; +} + +const getFileAttachmentActions = ({ caseId, fileId }: { caseId: string; fileId: string }) => [ + { + type: AttachmentActionType.CUSTOM as const, + render: () => getFileDownloadButton(fileId), + label: i18n.DOWNLOAD_FILE, + isPrimary: false, + }, + { + type: AttachmentActionType.CUSTOM as const, + render: () => getFileDeleteButton(caseId, fileId), + label: i18n.DELETE_FILE, + isPrimary: false, + }, +]; + +const getFileAttachmentViewObject = (props: ExternalReferenceAttachmentViewProps) => { + const caseId = props.caseData.id; + const fileId = props.externalReferenceId; + + if (!isValidFileExternalReferenceMetadata(props.externalReferenceMetadata)) { + return { + type: 'regular', + event: i18n.ADDED_UNKNOWN_FILE, + timelineAvatar: 'document', + getActions: () => [ + { + type: AttachmentActionType.CUSTOM as const, + render: () => getFileDeleteButton(caseId, fileId), + label: i18n.DELETE_FILE, + isPrimary: false, + }, + ], + hideDefaultActions: true, + }; + } + + const fileMetadata = props.externalReferenceMetadata.files[0]; + const file = { + id: fileId, + ...fileMetadata, + }; + + return { + event: , + timelineAvatar: isImage(file) ? 'image' : 'document', + getActions: () => getFileAttachmentActions({ caseId, fileId }), + hideDefaultActions: true, + }; +}; + +export const getFileType = (): ExternalReferenceAttachmentType => ({ + id: FILE_ATTACHMENT_TYPE, + icon: 'document', + displayName: 'File Attachment Type', + getAttachmentViewObject: getFileAttachmentViewObject, +}); diff --git a/x-pack/plugins/cases/public/components/files/files_table.test.tsx b/x-pack/plugins/cases/public/components/files/files_table.test.tsx new file mode 100644 index 0000000000000..651f86e76b462 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/files_table.test.tsx @@ -0,0 +1,233 @@ +/* + * 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 { screen, waitFor, within } from '@testing-library/react'; + +import { basicFileMock } from '../../containers/mock'; +import type { AppMockRenderer } from '../../common/mock'; + +import { constructFileKindIdByOwner } from '../../../common/files'; +import { createAppMockRenderer, mockedTestProvidersOwner } from '../../common/mock'; +import { FilesTable } from './files_table'; +import userEvent from '@testing-library/user-event'; + +describe('FilesTable', () => { + const onTableChange = jest.fn(); + const defaultProps = { + caseId: 'foobar', + items: [basicFileMock], + pagination: { pageIndex: 0, pageSize: 10, totalItemCount: 1 }, + isLoading: false, + onChange: onTableChange, + }; + + let appMockRender: AppMockRenderer; + + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders correctly', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table-results-count')).toBeInTheDocument(); + expect(await screen.findByTestId('cases-files-table-filename')).toBeInTheDocument(); + expect(await screen.findByTestId('cases-files-table-filetype')).toBeInTheDocument(); + expect(await screen.findByTestId('cases-files-table-date-added')).toBeInTheDocument(); + expect(await screen.findByTestId('cases-files-download-button')).toBeInTheDocument(); + expect(await screen.findByTestId('cases-files-delete-button')).toBeInTheDocument(); + }); + + it('renders loading state', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table-loading')).toBeInTheDocument(); + }); + + it('renders empty table', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table-empty')).toBeInTheDocument(); + }); + + it('FileAdd in empty table is clickable', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table-empty')).toBeInTheDocument(); + + const addFileButton = await screen.findByTestId('cases-files-add'); + + expect(addFileButton).toBeInTheDocument(); + + userEvent.click(addFileButton); + + expect(await screen.findByTestId('cases-files-add-modal')).toBeInTheDocument(); + }); + + it('renders single result count properly', async () => { + const mockPagination = { pageIndex: 0, pageSize: 10, totalItemCount: 1 }; + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-table-results-count')).toHaveTextContent( + `Showing ${defaultProps.items.length} file` + ); + }); + + it('non image rows dont open file preview', async () => { + const nonImageFileMock = { ...basicFileMock, mimeType: 'something/else' }; + + appMockRender.render(); + + userEvent.click( + await within(await screen.findByTestId('cases-files-table-filename')).findByTitle( + 'No preview available' + ) + ); + + expect(await screen.queryByTestId('cases-files-image-preview')).not.toBeInTheDocument(); + }); + + it('image rows open file preview', async () => { + appMockRender.render(); + + userEvent.click( + await screen.findByRole('button', { + name: `${basicFileMock.name}.${basicFileMock.extension}`, + }) + ); + + expect(await screen.findByTestId('cases-files-image-preview')).toBeInTheDocument(); + }); + + it('different mimeTypes are displayed correctly', async () => { + const mockPagination = { pageIndex: 0, pageSize: 10, totalItemCount: 7 }; + appMockRender.render( + + ); + + expect((await screen.findAllByText('Unknown')).length).toBe(4); + expect(await screen.findByText('Compressed')).toBeInTheDocument(); + expect(await screen.findByText('Text')).toBeInTheDocument(); + expect(await screen.findByText('Image')).toBeInTheDocument(); + }); + + it('download button renders correctly', async () => { + appMockRender.render(); + + expect(appMockRender.getFilesClient().getDownloadHref).toBeCalledTimes(1); + expect(appMockRender.getFilesClient().getDownloadHref).toHaveBeenCalledWith({ + fileKind: constructFileKindIdByOwner(mockedTestProvidersOwner[0]), + id: basicFileMock.id, + }); + + expect(await screen.findByTestId('cases-files-download-button')).toBeInTheDocument(); + }); + + it('delete button renders correctly', async () => { + appMockRender.render(); + + expect(appMockRender.getFilesClient().getDownloadHref).toBeCalledTimes(1); + expect(appMockRender.getFilesClient().getDownloadHref).toHaveBeenCalledWith({ + fileKind: constructFileKindIdByOwner(mockedTestProvidersOwner[0]), + id: basicFileMock.id, + }); + + expect(await screen.findByTestId('cases-files-delete-button')).toBeInTheDocument(); + }); + + it('clicking delete button opens deletion modal', async () => { + appMockRender.render(); + + expect(appMockRender.getFilesClient().getDownloadHref).toBeCalledTimes(1); + expect(appMockRender.getFilesClient().getDownloadHref).toHaveBeenCalledWith({ + fileKind: constructFileKindIdByOwner(mockedTestProvidersOwner[0]), + id: basicFileMock.id, + }); + + const deleteButton = await screen.findByTestId('cases-files-delete-button'); + + expect(deleteButton).toBeInTheDocument(); + + userEvent.click(deleteButton); + + expect(await screen.findByTestId('property-actions-confirm-modal')).toBeInTheDocument(); + }); + + it('go to next page calls onTableChange with correct values', async () => { + const mockPagination = { pageIndex: 0, pageSize: 1, totalItemCount: 2 }; + + appMockRender.render( + + ); + + userEvent.click(await screen.findByTestId('pagination-button-next')); + + await waitFor(() => + expect(onTableChange).toHaveBeenCalledWith({ + page: { index: mockPagination.pageIndex + 1, size: mockPagination.pageSize }, + }) + ); + }); + + it('go to previous page calls onTableChange with correct values', async () => { + const mockPagination = { pageIndex: 1, pageSize: 1, totalItemCount: 2 }; + + appMockRender.render( + + ); + + userEvent.click(await screen.findByTestId('pagination-button-previous')); + + await waitFor(() => + expect(onTableChange).toHaveBeenCalledWith({ + page: { index: mockPagination.pageIndex - 1, size: mockPagination.pageSize }, + }) + ); + }); + + it('changing perPage calls onTableChange with correct values', async () => { + appMockRender.render( + + ); + + userEvent.click(screen.getByTestId('tablePaginationPopoverButton')); + + const pageSizeOption = screen.getByTestId('tablePagination-50-rows'); + + pageSizeOption.style.pointerEvents = 'all'; + + userEvent.click(pageSizeOption); + + await waitFor(() => + expect(onTableChange).toHaveBeenCalledWith({ + page: { index: 0, size: 50 }, + }) + ); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/files_table.tsx b/x-pack/plugins/cases/public/components/files/files_table.tsx new file mode 100644 index 0000000000000..6433d90a91d44 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/files_table.tsx @@ -0,0 +1,83 @@ +/* + * 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, { useState } from 'react'; + +import type { Pagination, EuiBasicTableProps } from '@elastic/eui'; +import type { FileJSON } from '@kbn/shared-ux-file-types'; + +import { EuiBasicTable, EuiLoadingContent, EuiSpacer, EuiText, EuiEmptyPrompt } from '@elastic/eui'; + +import * as i18n from './translations'; +import { useFilesTableColumns } from './use_files_table_columns'; +import { FilePreview } from './file_preview'; +import { AddFile } from './add_file'; +import { useFilePreview } from './use_file_preview'; + +const EmptyFilesTable = ({ caseId }: { caseId: string }) => ( + {i18n.NO_FILES}} + data-test-subj="cases-files-table-empty" + titleSize="xs" + actions={} + /> +); + +EmptyFilesTable.displayName = 'EmptyFilesTable'; + +interface FilesTableProps { + caseId: string; + isLoading: boolean; + items: FileJSON[]; + onChange: EuiBasicTableProps['onChange']; + pagination: Pagination; +} + +export const FilesTable = ({ caseId, items, pagination, onChange, isLoading }: FilesTableProps) => { + const { isPreviewVisible, showPreview, closePreview } = useFilePreview(); + + const [selectedFile, setSelectedFile] = useState(); + + const displayPreview = (file: FileJSON) => { + setSelectedFile(file); + showPreview(); + }; + + const columns = useFilesTableColumns({ caseId, showPreview: displayPreview }); + + return isLoading ? ( + <> + + + + ) : ( + <> + {pagination.totalItemCount > 0 && ( + <> + + + {i18n.SHOWING_FILES(items.length)} + + + )} + + } + /> + {isPreviewVisible && selectedFile !== undefined && ( + + )} + + ); +}; + +FilesTable.displayName = 'FilesTable'; diff --git a/x-pack/plugins/cases/public/components/files/files_utility_bar.test.tsx b/x-pack/plugins/cases/public/components/files/files_utility_bar.test.tsx new file mode 100644 index 0000000000000..bfac1998a857a --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/files_utility_bar.test.tsx @@ -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 React from 'react'; +import { screen } from '@testing-library/react'; + +import type { AppMockRenderer } from '../../common/mock'; +import { createAppMockRenderer } from '../../common/mock'; +import userEvent from '@testing-library/user-event'; +import { FilesUtilityBar } from './files_utility_bar'; + +const defaultProps = { + caseId: 'foobar', + onSearch: jest.fn(), +}; + +describe('FilesUtilityBar', () => { + let appMockRender: AppMockRenderer; + + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('renders correctly', async () => { + appMockRender.render(); + + expect(await screen.findByTestId('cases-files-add')).toBeInTheDocument(); + expect(await screen.findByTestId('cases-files-search')).toBeInTheDocument(); + }); + + it('search text passed correctly to callback', async () => { + appMockRender.render(); + + await userEvent.type(screen.getByTestId('cases-files-search'), 'My search{enter}'); + expect(defaultProps.onSearch).toBeCalledWith('My search'); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/files_utility_bar.tsx b/x-pack/plugins/cases/public/components/files/files_utility_bar.tsx new file mode 100644 index 0000000000000..71b1ef503fc63 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/files_utility_bar.tsx @@ -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 React from 'react'; + +import { EuiFlexGroup, EuiFlexItem, EuiFieldSearch } from '@elastic/eui'; +import { AddFile } from './add_file'; + +import * as i18n from './translations'; + +interface FilesUtilityBarProps { + caseId: string; + onSearch: (newSearch: string) => void; +} + +export const FilesUtilityBar = ({ caseId, onSearch }: FilesUtilityBarProps) => { + return ( + + + + + + + ); +}; + +FilesUtilityBar.displayName = 'FilesUtilityBar'; diff --git a/x-pack/plugins/cases/public/components/files/translations.tsx b/x-pack/plugins/cases/public/components/files/translations.tsx new file mode 100644 index 0000000000000..4023c5b18cea8 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/translations.tsx @@ -0,0 +1,115 @@ +/* + * 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 { i18n } from '@kbn/i18n'; + +export const ACTIONS = i18n.translate('xpack.cases.caseView.files.actions', { + defaultMessage: 'Actions', +}); + +export const ADD_FILE = i18n.translate('xpack.cases.caseView.files.addFile', { + defaultMessage: 'Add File', +}); + +export const CLOSE_MODAL = i18n.translate('xpack.cases.caseView.files.closeModal', { + defaultMessage: 'Close', +}); + +export const DATE_ADDED = i18n.translate('xpack.cases.caseView.files.dateAdded', { + defaultMessage: 'Date Added', +}); + +export const DELETE_FILE = i18n.translate('xpack.cases.caseView.files.deleteFile', { + defaultMessage: 'Delete File', +}); + +export const DOWNLOAD_FILE = i18n.translate('xpack.cases.caseView.files.downloadFile', { + defaultMessage: 'Download File', +}); + +export const FILES_TABLE = i18n.translate('xpack.cases.caseView.files.filesTable', { + defaultMessage: 'Files table', +}); + +export const NAME = i18n.translate('xpack.cases.caseView.files.name', { + defaultMessage: 'Name', +}); + +export const NO_FILES = i18n.translate('xpack.cases.caseView.files.noFilesAvailable', { + defaultMessage: 'No files available', +}); + +export const NO_PREVIEW = i18n.translate('xpack.cases.caseView.files.noPreviewAvailable', { + defaultMessage: 'No preview available', +}); + +export const RESULTS_COUNT = i18n.translate('xpack.cases.caseView.files.resultsCount', { + defaultMessage: 'Showing', +}); + +export const TYPE = i18n.translate('xpack.cases.caseView.files.type', { + defaultMessage: 'Type', +}); + +export const SEARCH_PLACEHOLDER = i18n.translate('xpack.cases.caseView.files.searchPlaceholder', { + defaultMessage: 'Search files', +}); + +export const FAILED_UPLOAD = i18n.translate('xpack.cases.caseView.files.failedUpload', { + defaultMessage: 'Failed to upload file', +}); + +export const UNKNOWN_MIME_TYPE = i18n.translate('xpack.cases.caseView.files.unknownMimeType', { + defaultMessage: 'Unknown', +}); + +export const IMAGE_MIME_TYPE = i18n.translate('xpack.cases.caseView.files.imageMimeType', { + defaultMessage: 'Image', +}); + +export const TEXT_MIME_TYPE = i18n.translate('xpack.cases.caseView.files.textMimeType', { + defaultMessage: 'Text', +}); + +export const COMPRESSED_MIME_TYPE = i18n.translate( + 'xpack.cases.caseView.files.compressedMimeType', + { + defaultMessage: 'Compressed', + } +); + +export const PDF_MIME_TYPE = i18n.translate('xpack.cases.caseView.files.pdfMimeType', { + defaultMessage: 'PDF', +}); + +export const SUCCESSFUL_UPLOAD_FILE_NAME = (fileName: string) => + i18n.translate('xpack.cases.caseView.files.successfulUploadFileName', { + defaultMessage: 'File {fileName} uploaded successfully', + values: { fileName }, + }); + +export const SHOWING_FILES = (totalFiles: number) => + i18n.translate('xpack.cases.caseView.files.showingFilesTitle', { + values: { totalFiles }, + defaultMessage: 'Showing {totalFiles} {totalFiles, plural, =1 {file} other {files}}', + }); + +export const ADDED = i18n.translate('xpack.cases.caseView.files.added', { + defaultMessage: 'added ', +}); + +export const ADDED_UNKNOWN_FILE = i18n.translate('xpack.cases.caseView.files.addedUnknownFile', { + defaultMessage: 'added an unknown file', +}); + +export const DELETE = i18n.translate('xpack.cases.caseView.files.delete', { + defaultMessage: 'Delete', +}); + +export const DELETE_FILE_TITLE = i18n.translate('xpack.cases.caseView.files.deleteThisFile', { + defaultMessage: 'Delete this file?', +}); diff --git a/x-pack/plugins/cases/public/components/files/types.ts b/x-pack/plugins/cases/public/components/files/types.ts new file mode 100644 index 0000000000000..a211b5ac4053d --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/types.ts @@ -0,0 +1,12 @@ +/* + * 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 type * as rt from 'io-ts'; + +import type { SingleFileAttachmentMetadataRt } from '../../../common/api'; + +export type DownloadableFile = rt.TypeOf & { id: string }; diff --git a/x-pack/plugins/cases/public/components/files/use_file_preview.test.tsx b/x-pack/plugins/cases/public/components/files/use_file_preview.test.tsx new file mode 100644 index 0000000000000..49e18fb818cd9 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/use_file_preview.test.tsx @@ -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 { act, renderHook } from '@testing-library/react-hooks'; + +import { useFilePreview } from './use_file_preview'; + +describe('useFilePreview', () => { + it('isPreviewVisible is false by default', () => { + const { result } = renderHook(() => { + return useFilePreview(); + }); + + expect(result.current.isPreviewVisible).toBeFalsy(); + }); + + it('showPreview sets isPreviewVisible to true', () => { + const { result } = renderHook(() => { + return useFilePreview(); + }); + + expect(result.current.isPreviewVisible).toBeFalsy(); + + act(() => { + result.current.showPreview(); + }); + + expect(result.current.isPreviewVisible).toBeTruthy(); + }); + + it('closePreview sets isPreviewVisible to false', () => { + const { result } = renderHook(() => { + return useFilePreview(); + }); + + expect(result.current.isPreviewVisible).toBeFalsy(); + + act(() => { + result.current.showPreview(); + }); + + expect(result.current.isPreviewVisible).toBeTruthy(); + + act(() => { + result.current.closePreview(); + }); + + expect(result.current.isPreviewVisible).toBeFalsy(); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/use_file_preview.tsx b/x-pack/plugins/cases/public/components/files/use_file_preview.tsx new file mode 100644 index 0000000000000..c802aa38fc688 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/use_file_preview.tsx @@ -0,0 +1,17 @@ +/* + * 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 { useState } from 'react'; + +export const useFilePreview = () => { + const [isPreviewVisible, setIsPreviewVisible] = useState(false); + + const closePreview = () => setIsPreviewVisible(false); + const showPreview = () => setIsPreviewVisible(true); + + return { isPreviewVisible, showPreview, closePreview }; +}; diff --git a/x-pack/plugins/cases/public/components/files/use_files_table_columns.test.tsx b/x-pack/plugins/cases/public/components/files/use_files_table_columns.test.tsx new file mode 100644 index 0000000000000..77070da0dbc57 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/use_files_table_columns.test.tsx @@ -0,0 +1,73 @@ +/* + * 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 type { FilesTableColumnsProps } from './use_files_table_columns'; +import { useFilesTableColumns } from './use_files_table_columns'; +import type { AppMockRenderer } from '../../common/mock'; +import { createAppMockRenderer } from '../../common/mock'; +import { renderHook } from '@testing-library/react-hooks'; +import { basicCase } from '../../containers/mock'; + +describe('useFilesTableColumns', () => { + let appMockRender: AppMockRenderer; + + const useFilesTableColumnsProps: FilesTableColumnsProps = { + caseId: basicCase.id, + showPreview: () => {}, + }; + + beforeEach(() => { + jest.clearAllMocks(); + appMockRender = createAppMockRenderer(); + }); + + it('return all files table columns correctly', async () => { + const { result } = renderHook(() => useFilesTableColumns(useFilesTableColumnsProps), { + wrapper: appMockRender.AppWrapper, + }); + + expect(result.current).toMatchInlineSnapshot(` + Array [ + Object { + "data-test-subj": "cases-files-table-filename", + "name": "Name", + "render": [Function], + "width": "60%", + }, + Object { + "data-test-subj": "cases-files-table-filetype", + "name": "Type", + "render": [Function], + }, + Object { + "data-test-subj": "cases-files-table-date-added", + "dataType": "date", + "field": "created", + "name": "Date Added", + }, + Object { + "actions": Array [ + Object { + "description": "Download File", + "isPrimary": true, + "name": "Download", + "render": [Function], + }, + Object { + "description": "Delete File", + "isPrimary": true, + "name": "Delete", + "render": [Function], + }, + ], + "name": "Actions", + "width": "120px", + }, + ] + `); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/use_files_table_columns.tsx b/x-pack/plugins/cases/public/components/files/use_files_table_columns.tsx new file mode 100644 index 0000000000000..80568189afb58 --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/use_files_table_columns.tsx @@ -0,0 +1,71 @@ +/* + * 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 type { EuiBasicTableColumn } from '@elastic/eui'; +import type { FileJSON } from '@kbn/shared-ux-file-types'; + +import * as i18n from './translations'; +import { parseMimeType } from './utils'; +import { FileNameLink } from './file_name_link'; +import { FileDownloadButton } from './file_download_button'; +import { FileDeleteButton } from './file_delete_button'; + +export interface FilesTableColumnsProps { + caseId: string; + showPreview: (file: FileJSON) => void; +} + +export const useFilesTableColumns = ({ + caseId, + showPreview, +}: FilesTableColumnsProps): Array> => { + return [ + { + name: i18n.NAME, + 'data-test-subj': 'cases-files-table-filename', + render: (file: FileJSON) => ( + showPreview(file)} /> + ), + width: '60%', + }, + { + name: i18n.TYPE, + 'data-test-subj': 'cases-files-table-filetype', + render: (attachment: FileJSON) => { + return {parseMimeType(attachment.mimeType)}; + }, + }, + { + name: i18n.DATE_ADDED, + field: 'created', + 'data-test-subj': 'cases-files-table-date-added', + dataType: 'date', + }, + { + name: i18n.ACTIONS, + width: '120px', + actions: [ + { + name: 'Download', + isPrimary: true, + description: i18n.DOWNLOAD_FILE, + render: (file: FileJSON) => , + }, + { + name: 'Delete', + isPrimary: true, + description: i18n.DELETE_FILE, + render: (file: FileJSON) => ( + + ), + }, + ], + }, + ]; +}; diff --git a/x-pack/plugins/cases/public/components/files/utils.test.tsx b/x-pack/plugins/cases/public/components/files/utils.test.tsx new file mode 100644 index 0000000000000..411492d1a2bab --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/utils.test.tsx @@ -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 type { JsonValue } from '@kbn/utility-types'; + +import { + compressionMimeTypes, + imageMimeTypes, + pdfMimeTypes, + textMimeTypes, +} from '../../../common/constants/mime_types'; +import { basicFileMock } from '../../containers/mock'; +import { isImage, isValidFileExternalReferenceMetadata, parseMimeType } from './utils'; + +describe('isImage', () => { + it.each(imageMimeTypes)('should return true for image mime type: %s', (mimeType) => { + expect(isImage({ mimeType })).toBeTruthy(); + }); + + it.each(textMimeTypes)('should return false for text mime type: %s', (mimeType) => { + expect(isImage({ mimeType })).toBeFalsy(); + }); +}); + +describe('parseMimeType', () => { + it('should return Unknown for empty strings', () => { + expect(parseMimeType('')).toBe('Unknown'); + }); + + it('should return Unknown for undefined', () => { + expect(parseMimeType(undefined)).toBe('Unknown'); + }); + + it('should return Unknown for strings starting with forward slash', () => { + expect(parseMimeType('/start')).toBe('Unknown'); + }); + + it('should return Unknown for strings with no forward slash', () => { + expect(parseMimeType('no-slash')).toBe('Unknown'); + }); + + it('should return capitalize first letter for valid strings', () => { + expect(parseMimeType('foo/bar')).toBe('Foo'); + }); + + it.each(imageMimeTypes)('should return "Image" for image mime type: %s', (mimeType) => { + expect(parseMimeType(mimeType)).toBe('Image'); + }); + + it.each(textMimeTypes)('should return "Text" for text mime type: %s', (mimeType) => { + expect(parseMimeType(mimeType)).toBe('Text'); + }); + + it.each(compressionMimeTypes)( + 'should return "Compressed" for image mime type: %s', + (mimeType) => { + expect(parseMimeType(mimeType)).toBe('Compressed'); + } + ); + + it.each(pdfMimeTypes)('should return "Pdf" for text mime type: %s', (mimeType) => { + expect(parseMimeType(mimeType)).toBe('PDF'); + }); +}); + +describe('isValidFileExternalReferenceMetadata', () => { + it('should return false for empty objects', () => { + expect(isValidFileExternalReferenceMetadata({})).toBeFalsy(); + }); + + it('should return false if the files property is missing', () => { + expect(isValidFileExternalReferenceMetadata({ foo: 'bar' })).toBeFalsy(); + }); + + it('should return false if the files property is not an array', () => { + expect(isValidFileExternalReferenceMetadata({ files: 'bar' })).toBeFalsy(); + }); + + it('should return false if files is not an array of file metadata', () => { + expect(isValidFileExternalReferenceMetadata({ files: [3] })).toBeFalsy(); + }); + + it('should return false if files is not an array of file metadata 2', () => { + expect( + isValidFileExternalReferenceMetadata({ files: [{ name: 'foo', mimeType: 'bar' }] }) + ).toBeFalsy(); + }); + + it('should return true if the metadata is as expected', () => { + expect( + isValidFileExternalReferenceMetadata({ files: [basicFileMock as unknown as JsonValue] }) + ).toBeTruthy(); + }); +}); diff --git a/x-pack/plugins/cases/public/components/files/utils.tsx b/x-pack/plugins/cases/public/components/files/utils.tsx new file mode 100644 index 0000000000000..b870c733eb10e --- /dev/null +++ b/x-pack/plugins/cases/public/components/files/utils.tsx @@ -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 type { + CommentRequestExternalReferenceType, + FileAttachmentMetadata, +} from '../../../common/api'; + +import { + compressionMimeTypes, + imageMimeTypes, + textMimeTypes, + pdfMimeTypes, +} from '../../../common/constants/mime_types'; +import { FileAttachmentMetadataRt } from '../../../common/api'; +import * as i18n from './translations'; + +export const isImage = (file: { mimeType?: string }) => file.mimeType?.startsWith('image/'); + +export const parseMimeType = (mimeType: string | undefined) => { + if (typeof mimeType === 'undefined') { + return i18n.UNKNOWN_MIME_TYPE; + } + + if (imageMimeTypes.includes(mimeType)) { + return i18n.IMAGE_MIME_TYPE; + } + + if (textMimeTypes.includes(mimeType)) { + return i18n.TEXT_MIME_TYPE; + } + + if (compressionMimeTypes.includes(mimeType)) { + return i18n.COMPRESSED_MIME_TYPE; + } + + if (pdfMimeTypes.includes(mimeType)) { + return i18n.PDF_MIME_TYPE; + } + + const result = mimeType.split('/'); + + if (result.length <= 1 || result[0] === '') { + return i18n.UNKNOWN_MIME_TYPE; + } + + return result[0].charAt(0).toUpperCase() + result[0].slice(1); +}; + +export const isValidFileExternalReferenceMetadata = ( + externalReferenceMetadata: CommentRequestExternalReferenceType['externalReferenceMetadata'] +): externalReferenceMetadata is FileAttachmentMetadata => { + return ( + FileAttachmentMetadataRt.is(externalReferenceMetadata) && + externalReferenceMetadata?.files?.length >= 1 + ); +}; diff --git a/x-pack/plugins/cases/public/components/markdown_editor/plugins/lens/use_lens_open_visualization.tsx b/x-pack/plugins/cases/public/components/markdown_editor/plugins/lens/use_lens_open_visualization.tsx index 1d6a5ec8ca11a..84dddd64ba61b 100644 --- a/x-pack/plugins/cases/public/components/markdown_editor/plugins/lens/use_lens_open_visualization.tsx +++ b/x-pack/plugins/cases/public/components/markdown_editor/plugins/lens/use_lens_open_visualization.tsx @@ -9,6 +9,8 @@ import { useCallback } from 'react'; import { i18n } from '@kbn/i18n'; import type { TypedLensByValueInput } from '@kbn/lens-plugin/public'; + +import { AttachmentActionType } from '../../../../client/attachment_framework/types'; import { useKibana } from '../../../../common/lib/kibana'; import { parseCommentString, @@ -42,6 +44,7 @@ export const useLensOpenVisualization = ({ comment }: { comment: string }) => { actionConfig: !lensVisualization.length ? null : { + type: AttachmentActionType.BUTTON as const, iconType: 'lensApp', label: i18n.translate( 'xpack.cases.markdownEditor.plugins.lens.openVisualizationButtonLabel', diff --git a/x-pack/plugins/cases/public/components/property_actions/index.tsx b/x-pack/plugins/cases/public/components/property_actions/index.tsx index 4de52d551bf2f..833ace8333d2b 100644 --- a/x-pack/plugins/cases/public/components/property_actions/index.tsx +++ b/x-pack/plugins/cases/public/components/property_actions/index.tsx @@ -9,6 +9,9 @@ import React, { useCallback, useState } from 'react'; import type { EuiButtonProps } from '@elastic/eui'; import { EuiFlexGroup, EuiFlexItem, EuiPopover, EuiButtonIcon, EuiButtonEmpty } from '@elastic/eui'; +import type { AttachmentAction } from '../../client/attachment_framework/types'; + +import { AttachmentActionType } from '../../client/attachment_framework/types'; import * as i18n from './translations'; export interface PropertyActionButtonProps { @@ -45,7 +48,7 @@ const PropertyActionButton = React.memo( PropertyActionButton.displayName = 'PropertyActionButton'; export interface PropertyActionsProps { - propertyActions: PropertyActionButtonProps[]; + propertyActions: AttachmentAction[]; customDataTestSubj?: string; } @@ -93,14 +96,17 @@ export const PropertyActions = React.memo( {propertyActions.map((action, key) => ( - onClosePopover(action.onClick)} - customDataTestSubj={customDataTestSubj} - /> + {(action.type === AttachmentActionType.BUTTON && ( + onClosePopover(action.onClick)} + customDataTestSubj={customDataTestSubj} + /> + )) || + (action.type === AttachmentActionType.CUSTOM && action.render())} ))} diff --git a/x-pack/plugins/cases/public/components/user_actions/comment/comment.test.tsx b/x-pack/plugins/cases/public/components/user_actions/comment/comment.test.tsx index db21c2f2100c6..4cf6c9844e948 100644 --- a/x-pack/plugins/cases/public/components/user_actions/comment/comment.test.tsx +++ b/x-pack/plugins/cases/public/components/user_actions/comment/comment.test.tsx @@ -36,6 +36,7 @@ import { useCaseViewNavigation, useCaseViewParams } from '../../../common/naviga import { ExternalReferenceAttachmentTypeRegistry } from '../../../client/attachment_framework/external_reference_registry'; import { PersistableStateAttachmentTypeRegistry } from '../../../client/attachment_framework/persistable_state_registry'; import { userProfiles } from '../../../containers/user_profiles/api.mock'; +import { AttachmentActionType } from '../../../client/attachment_framework/types'; jest.mock('../../../common/lib/kibana'); jest.mock('../../../common/navigation/hooks'); @@ -849,9 +850,27 @@ describe('createCommentUserActionBuilder', () => { const attachment = getExternalReferenceAttachment({ getActions: () => [ - { label: 'My primary button', isPrimary: true, iconType: 'danger', onClick }, - { label: 'My primary 2 button', isPrimary: true, iconType: 'danger', onClick }, - { label: 'My primary 3 button', isPrimary: true, iconType: 'danger', onClick }, + { + type: AttachmentActionType.BUTTON as const, + label: 'My primary button', + isPrimary: true, + iconType: 'danger', + onClick, + }, + { + type: AttachmentActionType.BUTTON as const, + label: 'My primary 2 button', + isPrimary: true, + iconType: 'danger', + onClick, + }, + { + type: AttachmentActionType.BUTTON as const, + label: 'My primary 3 button', + isPrimary: true, + iconType: 'danger', + onClick, + }, ], }); @@ -888,14 +907,75 @@ describe('createCommentUserActionBuilder', () => { expect(onClick).toHaveBeenCalledTimes(2); }); + it('shows correctly a custom action', async () => { + const onClick = jest.fn(); + + const attachment = getExternalReferenceAttachment({ + getActions: () => [ + { + type: AttachmentActionType.CUSTOM as const, + isPrimary: true, + label: 'Test button', + render: () => ( + , style: { - height: 0, + minHeight: 0, width: 0, }, }, @@ -1100,12 +1100,12 @@ describe('DragDrop', () => { expect( component.find('[data-test-subj="testDragDrop-translatableDrop"]').at(0).prop('style') ).toEqual({ - transform: 'translateY(-8px)', + transform: 'translateY(-4px)', }); expect( component.find('[data-test-subj="testDragDrop-translatableDrop"]').at(1).prop('style') ).toEqual({ - transform: 'translateY(-8px)', + transform: 'translateY(-4px)', }); component @@ -1258,12 +1258,12 @@ describe('DragDrop', () => { expect( component.find('[data-test-subj="testDragDrop-reorderableDrag"]').at(0).prop('style') ).toEqual({ - transform: 'translateY(+8px)', + transform: 'translateY(+4px)', }); expect( component.find('[data-test-subj="testDragDrop-translatableDrop"]').at(0).prop('style') ).toEqual({ - transform: 'translateY(-40px)', + transform: 'translateY(-32px)', }); expect( component.find('[data-test-subj="testDragDrop-translatableDrop"]').at(1).prop('style') diff --git a/packages/kbn-dom-drag-drop/src/drag_drop.tsx b/packages/kbn-dom-drag-drop/src/drag_drop.tsx index 47909a818cea9..ce3d6147d813f 100644 --- a/packages/kbn-dom-drag-drop/src/drag_drop.tsx +++ b/packages/kbn-dom-drag-drop/src/drag_drop.tsx @@ -24,6 +24,7 @@ import { Ghost, } from './providers'; import { DropType } from './types'; +import { REORDER_ITEM_MARGIN } from './constants'; import './sass/drag_drop.scss'; /** @@ -71,11 +72,15 @@ interface BaseProps { * The React element which will be passed the draggable handlers */ children: ReactElement; + + /** + * Disable any drag & drop behaviour + */ + isDisabled?: boolean; /** * Indicates whether or not this component is draggable. */ draggable?: boolean; - /** * Additional class names to apply when another element is over the drop target */ @@ -152,7 +157,7 @@ interface DropsInnerProps extends BaseProps { isNotDroppable: boolean; } -const lnsLayerPanelDimensionMargin = 8; +const REORDER_OFFSET = REORDER_ITEM_MARGIN / 2; /** * DragDrop component @@ -174,6 +179,10 @@ export const DragDrop = (props: BaseProps) => { onTrackUICounterEvent, } = useContext(DragContext); + if (props.isDisabled) { + return props.children; + } + const { value, draggable, dropTypes, reorderableGroup } = props; const isDragging = !!(draggable && value.id === dragging?.id); @@ -358,7 +367,7 @@ const DragInner = memo(function DragInner({ ghost: keyboardModeOn ? { children, - style: { width: currentTarget.offsetWidth, height: currentTarget.offsetHeight }, + style: { width: currentTarget.offsetWidth, minHeight: currentTarget?.offsetHeight }, } : undefined, }); @@ -417,12 +426,14 @@ const DragInner = memo(function DragInner({ keyboardMode && activeDropTarget && activeDropTarget.dropType !== 'reorder'; + return (
@@ -772,7 +783,7 @@ const ReorderableDrag = memo(function ReorderableDrag( | KeyboardEvent['currentTarget'] ) => { if (currentTarget) { - const height = currentTarget.offsetHeight + lnsLayerPanelDimensionMargin; + const height = currentTarget.offsetHeight + REORDER_OFFSET; setReorderState((s: ReorderState) => ({ ...s, draggingHeight: height, @@ -875,7 +886,7 @@ const ReorderableDrag = memo(function ReorderableDrag( areItemsReordered ? { transform: `translateY(${direction === '+' ? '-' : '+'}${reorderedItems.reduce( - (acc, cur) => acc + Number(cur.height || 0) + lnsLayerPanelDimensionMargin, + (acc, cur) => acc + Number(cur.height || 0) + REORDER_OFFSET, 0 )}px)`, } diff --git a/packages/kbn-dom-drag-drop/src/drop_overlay_wrapper.tsx b/packages/kbn-dom-drag-drop/src/drop_overlay_wrapper.tsx new file mode 100644 index 0000000000000..590106157f304 --- /dev/null +++ b/packages/kbn-dom-drag-drop/src/drop_overlay_wrapper.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 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import React from 'react'; +import classnames from 'classnames'; + +/** + * DropOverlayWrapper Props + */ +export interface DropOverlayWrapperProps { + isVisible: boolean; + className?: string; + overlayProps?: object; +} + +/** + * This prevents the in-place droppable styles (under children) and allows to rather show an overlay with droppable styles (on top of children) + * @param isVisible + * @param children + * @param overlayProps + * @param className + * @param otherProps + * @constructor + */ +export const DropOverlayWrapper: React.FC = ({ + isVisible, + children, + overlayProps, + className, + ...otherProps +}) => { + return ( +
+ {children} + {isVisible && ( +
+ )} +
+ ); +}; diff --git a/packages/kbn-dom-drag-drop/src/index.ts b/packages/kbn-dom-drag-drop/src/index.ts index 340dba349612c..9fa4f37103522 100644 --- a/packages/kbn-dom-drag-drop/src/index.ts +++ b/packages/kbn-dom-drag-drop/src/index.ts @@ -9,3 +9,4 @@ export * from './types'; export * from './providers'; export * from './drag_drop'; +export { DropOverlayWrapper, type DropOverlayWrapperProps } from './drop_overlay_wrapper'; diff --git a/packages/kbn-dom-drag-drop/src/providers/reorder_provider.tsx b/packages/kbn-dom-drag-drop/src/providers/reorder_provider.tsx index 5dc83dbce915f..c2aa11eb8bc8d 100644 --- a/packages/kbn-dom-drag-drop/src/providers/reorder_provider.tsx +++ b/packages/kbn-dom-drag-drop/src/providers/reorder_provider.tsx @@ -8,7 +8,7 @@ import React, { useState, useMemo } from 'react'; import classNames from 'classnames'; -import { DEFAULT_DATA_TEST_SUBJ } from '../constants'; +import { DEFAULT_DATA_TEST_SUBJ, REORDER_ITEM_HEIGHT } from '../constants'; /** * Reorder state @@ -54,7 +54,7 @@ export const ReorderContext = React.createContext({ reorderState: { reorderedItems: [], direction: '-', - draggingHeight: 40, + draggingHeight: REORDER_ITEM_HEIGHT, isReorderOn: false, groupId: '', }, @@ -66,6 +66,7 @@ export const ReorderContext = React.createContext({ * @param id * @param children * @param className + * @param draggingHeight * @param dataTestSubj * @constructor */ @@ -73,17 +74,19 @@ export function ReorderProvider({ id, children, className, + draggingHeight = REORDER_ITEM_HEIGHT, dataTestSubj = DEFAULT_DATA_TEST_SUBJ, }: { id: string; children: React.ReactNode; className?: string; + draggingHeight?: number; dataTestSubj?: string; }) { const [state, setState] = useState({ reorderedItems: [], direction: '-', - draggingHeight: 40, + draggingHeight, isReorderOn: false, groupId: id, }); diff --git a/packages/kbn-dom-drag-drop/src/sass/drag_drop.scss b/packages/kbn-dom-drag-drop/src/sass/drag_drop.scss index d5587ae8ec6a4..56ce648266e7b 100644 --- a/packages/kbn-dom-drag-drop/src/sass/drag_drop.scss +++ b/packages/kbn-dom-drag-drop/src/sass/drag_drop.scss @@ -1,7 +1,6 @@ @import './drag_drop_mixins'; .domDragDrop { - user-select: none; transition: $euiAnimSpeedFast ease-in-out; transition-property: background-color, border-color, opacity; z-index: $domDragDropZLevel1; @@ -12,11 +11,11 @@ border: $euiBorderWidthThin dashed $euiBorderColor; position: absolute !important; // sass-lint:disable-line no-important margin: 0 !important; // sass-lint:disable-line no-important - bottom: 100%; + top: 0; width: 100%; left: 0; opacity: .9; - transform: translate(-12px, 8px); + transform: translate($euiSizeXS, $euiSizeXS); z-index: $domDragDropZLevel3; pointer-events: none; outline: $euiFocusRingSize solid currentColor; // Safari & Firefox @@ -29,7 +28,8 @@ @include mixinDomDragDropHover; // Include a possible nested button like when using FieldButton - > .kbnFieldButton__button { + & .kbnFieldButton__button, + & .euiLink { cursor: grab; } @@ -39,14 +39,17 @@ } // Drop area -.domDragDrop-isDroppable { +.domDragDrop-isDroppable:not(.domDragDrop__dropOverlayWrapper) { @include mixinDomDroppable; } // Drop area when there's an item being dragged .domDragDrop-isDropTarget { - @include mixinDomDroppable; - @include mixinDomDroppableActive; + &:not(.domDragDrop__dropOverlayWrapper) { + @include mixinDomDroppable; + @include mixinDomDroppableActive; + } + > * { pointer-events: none; } @@ -57,7 +60,7 @@ } // Drop area while hovering with item -.domDragDrop-isActiveDropTarget { +.domDragDrop-isActiveDropTarget:not(.domDragDrop__dropOverlayWrapper) { z-index: $domDragDropZLevel3; @include mixinDomDroppableActiveHover; } @@ -72,9 +75,9 @@ text-decoration: line-through; } -.domDragDrop-notCompatible { +.domDragDrop-notCompatible:not(.domDragDrop__dropOverlayWrapper) { background-color: $euiColorHighlight !important; - border: $euiBorderWidthThin dashed $euiBorderColor !important; + border: $euiBorderWidthThin dashed $euiColorVis5 !important; &.domDragDrop-isActiveDropTarget { background-color: rgba(251, 208, 17, .25) !important; border-color: $euiColorVis5 !important; @@ -91,12 +94,12 @@ } } -$lnsLayerPanelDimensionMargin: 8px; +$reorderItemMargin: $euiSizeS; .domDragDrop__reorderableDrop { position: absolute; width: 100%; top: 0; - height: calc(100% + #{$lnsLayerPanelDimensionMargin}); + height: calc(100% + #{$reorderItemMargin / 2}); } .domDragDrop-translatableDrop { @@ -146,6 +149,10 @@ $lnsLayerPanelDimensionMargin: 8px; } } +.domDragDrop--isDragStarted { + opacity: .5; +} + .domDragDrop__extraDrops { opacity: 0; visibility: hidden; @@ -193,7 +200,7 @@ $lnsLayerPanelDimensionMargin: 8px; .domDragDrop__extraDrop { position: relative; - height: $euiSizeXS * 10; + height: $euiSizeXS * 8; min-width: $euiSize * 7; color: $euiColorSuccessText; padding: $euiSizeXS; @@ -201,3 +208,28 @@ $lnsLayerPanelDimensionMargin: 8px; color: $euiColorWarningText; } } + +.domDragDrop__dropOverlayWrapper { + position: relative; + height: 100%; +} + +.domDragDrop__dropOverlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: $domDragDropZLevel3; + transition: $euiAnimSpeedFast ease-in-out; + transition-property: background-color, border-color, opacity; + + .domDragDrop-isDropTarget & { + @include mixinDomDroppable($euiBorderWidthThick); + @include mixinDomDroppableActive($euiBorderWidthThick); + } + + .domDragDrop-isActiveDropTarget & { + @include mixinDomDroppableActiveHover($euiBorderWidthThick); + } +} diff --git a/packages/kbn-dom-drag-drop/src/sass/drag_drop_mixins.scss b/packages/kbn-dom-drag-drop/src/sass/drag_drop_mixins.scss index fbd460a67f7d0..fb495b4fcfba4 100644 --- a/packages/kbn-dom-drag-drop/src/sass/drag_drop_mixins.scss +++ b/packages/kbn-dom-drag-drop/src/sass/drag_drop_mixins.scss @@ -13,31 +13,32 @@ $domDragDropZLevel3: 3; @mixin mixinDomDraggable { @include euiSlightShadow; background: $euiColorEmptyShade; - border: $euiBorderWidthThin dashed transparent; cursor: grab; } // Static styles for a drop area -@mixin mixinDomDroppable { - border: $euiBorderWidthThin dashed $euiBorderColor !important; +@mixin mixinDomDroppable($borderWidth: $euiBorderWidthThin) { + border: $borderWidth dashed transparent; } // Hovering state for drag item and drop area @mixin mixinDomDragDropHover { &:hover { - border: $euiBorderWidthThin dashed $euiColorMediumShade !important; + transform: translateX($euiSizeXS); + transition: transform $euiAnimSpeedSlow ease-out; } } // Style for drop area when there's an item being dragged -@mixin mixinDomDroppableActive { +@mixin mixinDomDroppableActive($borderWidth: $euiBorderWidthThin) { background-color: transparentize($euiColorVis0, .9) !important; + border: $borderWidth dashed $euiColorVis0 !important; } // Style for drop area while hovering with item -@mixin mixinDomDroppableActiveHover { +@mixin mixinDomDroppableActiveHover($borderWidth: $euiBorderWidthThin) { background-color: transparentize($euiColorVis0, .75) !important; - border: $euiBorderWidthThin dashed $euiColorVis0 !important; + border: $borderWidth dashed $euiColorVis0 !important; } // Style for drop area that is not allowed for current item diff --git a/packages/kbn-react-field/src/field_button/__snapshots__/field_button.test.tsx.snap b/packages/kbn-react-field/src/field_button/__snapshots__/field_button.test.tsx.snap index e65b5fcb8fbbd..0b4ceaf06e863 100644 --- a/packages/kbn-react-field/src/field_button/__snapshots__/field_button.test.tsx.snap +++ b/packages/kbn-react-field/src/field_button/__snapshots__/field_button.test.tsx.snap @@ -2,7 +2,7 @@ exports[`fieldAction is rendered 1`] = `
@@ -50,7 +58,7 @@ exports[`fieldIcon is rendered 1`] = ` exports[`isActive defaults to false 1`] = `
@@ -67,7 +79,7 @@ exports[`isActive defaults to false 1`] = ` exports[`isActive renders true 1`] = `
`; -exports[`isDraggable is rendered 1`] = ` +exports[`sizes s is applied 1`] = `
`; -exports[`sizes m is applied 1`] = ` +exports[`sizes xs is applied 1`] = `
`; -exports[`sizes s is applied 1`] = ` +exports[`with drag handle is rendered 1`] = `
+
+ + drag + +
diff --git a/packages/kbn-react-field/src/field_button/field_button.scss b/packages/kbn-react-field/src/field_button/field_button.scss index f71e097ab7138..5fd87c38b930e 100644 --- a/packages/kbn-react-field/src/field_button/field_button.scss +++ b/packages/kbn-react-field/src/field_button/field_button.scss @@ -2,8 +2,9 @@ @include euiFontSizeS; border-radius: $euiBorderRadius; margin-bottom: $euiSizeXS; + padding: 0 $euiSizeS; display: flex; - align-items: center; + align-items: flex-start; transition: box-shadow $euiAnimSpeedFast $euiAnimSlightResistance, background-color $euiAnimSpeedFast $euiAnimSlightResistance; // sass-lint:disable-line indentation @@ -13,29 +14,10 @@ } } -.kbnFieldButton--isDraggable { - background: lightOrDarkTheme($euiColorEmptyShade, $euiColorLightestShade); - - &:hover, - &:focus, - &:focus-within { - @include euiBottomShadowMedium; - border-radius: $euiBorderRadius; - z-index: 2; - } - - .kbnFieldButton__button { - &:hover, - &:focus { - cursor: grab; - } - } -} - .kbnFieldButton__button { flex-grow: 1; text-align: left; - padding: $euiSizeS; + padding: $euiSizeS 0; display: flex; align-items: flex-start; line-height: normal; @@ -44,33 +26,55 @@ .kbnFieldButton__fieldIcon { flex-shrink: 0; line-height: 0; - margin-right: $euiSizeS; } .kbnFieldButton__name { flex-grow: 1; word-break: break-word; + padding: 0 $euiSizeS; } .kbnFieldButton__infoIcon { + display: flex; + align-items: center; + justify-content: center; + min-height: $euiSize; flex-shrink: 0; - margin-left: $euiSizeXS; + line-height: 0; } .kbnFieldButton__fieldAction { + margin-left: $euiSizeS; +} + +.kbnFieldButton__dragHandle { margin-right: $euiSizeS; } +.kbnFieldButton__fieldAction, +.kbnFieldButton__dragHandle { + line-height: $euiSizeXL; +} + // Reduce text size and spacing for the small size -.kbnFieldButton--small { +.kbnFieldButton--xs { font-size: $euiFontSizeXS; .kbnFieldButton__button { - padding: $euiSizeXS; + padding: $euiSizeXS 0; } - .kbnFieldButton__fieldIcon, .kbnFieldButton__fieldAction { - margin-right: $euiSizeXS; + margin-left: $euiSizeXS; + } + + .kbnFieldButton__fieldAction, + .kbnFieldButton__dragHandle { + line-height: $euiSizeL; } } + +.kbnFieldButton--flushBoth { + padding-left: 0; + padding-right: 0; +} diff --git a/packages/kbn-react-field/src/field_button/field_button.test.tsx b/packages/kbn-react-field/src/field_button/field_button.test.tsx index e61b41187ba7e..270144c7d346b 100644 --- a/packages/kbn-react-field/src/field_button/field_button.test.tsx +++ b/packages/kbn-react-field/src/field_button/field_button.test.tsx @@ -21,9 +21,11 @@ describe('sizes', () => { }); }); -describe('isDraggable', () => { +describe('with drag handle', () => { it('is rendered', () => { - const component = shallow(); + const component = shallow( + drag} /> + ); expect(component).toMatchSnapshot(); }); }); @@ -31,7 +33,7 @@ describe('isDraggable', () => { describe('fieldIcon', () => { it('is rendered', () => { const component = shallow( - fieldIcon} /> + fieldIcon} /> ); expect(component).toMatchSnapshot(); }); @@ -40,7 +42,12 @@ describe('fieldIcon', () => { describe('fieldAction', () => { it('is rendered', () => { const component = shallow( - fieldAction} /> + fieldAction} + /> ); expect(component).toMatchSnapshot(); }); @@ -48,11 +55,11 @@ describe('fieldAction', () => { describe('isActive', () => { it('defaults to false', () => { - const component = shallow(); + const component = shallow(); expect(component).toMatchSnapshot(); }); it('renders true', () => { - const component = shallow(); + const component = shallow(); expect(component).toMatchSnapshot(); }); }); diff --git a/packages/kbn-react-field/src/field_button/field_button.tsx b/packages/kbn-react-field/src/field_button/field_button.tsx index 4871fea049710..8d87e0e04cb63 100644 --- a/packages/kbn-react-field/src/field_button/field_button.tsx +++ b/packages/kbn-react-field/src/field_button/field_button.tsx @@ -6,10 +6,10 @@ * Side Public License, v 1. */ -import './field_button.scss'; import classNames from 'classnames'; import React, { ReactNode, HTMLAttributes, ButtonHTMLAttributes } from 'react'; import { CommonProps } from '@elastic/eui'; +import './field_button.scss'; export interface FieldButtonProps extends HTMLAttributes { /** @@ -34,13 +34,20 @@ export interface FieldButtonProps extends HTMLAttributes { */ isActive?: boolean; /** - * Styles the component differently to indicate it is draggable + * Custom drag handle element + */ + dragHandle?: React.ReactElement; + /** + * Use the xs size in condensed areas */ - isDraggable?: boolean; + size: ButtonSize; /** - * Use the small size in condensed areas + * Whether to skip side paddings + */ + flush?: 'both'; + /** + * Custom class name */ - size?: ButtonSize; className?: string; /** * The component will render a `
- {displayedColumns.map((col) => { + {displayedColumns.map((col, index) => { return ( ); } else { - columns.forEach(function (column: string) { + columns.forEach(function (column: string, index) { + const cellKey = `${column}-${index}`; if (useNewFieldsApi && !mapping(column) && row.raw.fields && !row.raw.fields[column]) { const innerColumns = Object.fromEntries( Object.entries(row.raw.fields).filter(([key]) => { @@ -163,7 +164,7 @@ export const TableRow = ({ rowCells.push( { )} - {props.totalHitCount !== 0 && ( + {Boolean(props.totalHitCount) && ( diff --git a/src/plugins/discover/public/embeddable/saved_search_grid.tsx b/src/plugins/discover/public/embeddable/saved_search_grid.tsx index a1e75e17dca5f..12f3e3b3f3c55 100644 --- a/src/plugins/discover/public/embeddable/saved_search_grid.tsx +++ b/src/plugins/discover/public/embeddable/saved_search_grid.tsx @@ -29,7 +29,7 @@ export function DiscoverGridEmbeddable(props: DiscoverGridEmbeddableProps) { responsive={false} data-test-subj="embeddedSavedSearchDocTable" > - {Boolean(props.totalHitCount) && props.totalHitCount !== 0 && ( + {Boolean(props.totalHitCount) && ( From 7ef3c9a0a368f5d54c5073c680d7f06d76f39f4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20S=C3=A1nchez?= Date: Thu, 20 Apr 2023 10:07:17 +0200 Subject: [PATCH 108/144] [Security Solution][Endpoint] Warning banner setting up an encryption key in responder (#154060) ## Summary - Display warning banner in responder console and isolate/release host flyout when the Encryption Key is not set. - Adds unit test cases. ### Responder Screenshot 2023-04-13 at 12 04 18 ### Isolate/release host flyout Screenshot 2023-04-13 at 12 03 26 --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../common/endpoint/constants.ts | 1 + .../endpoint/host_isolation/isolate_form.tsx | 112 ++++++++------- .../host_isolation/unisolate_form.tsx | 94 +++++++------ .../missing_encryption_key_callout/index.ts | 8 ++ .../missing_encryption_key_callout.test.tsx | 88 ++++++++++++ .../missing_encryption_key_callout.tsx | 64 +++++++++ .../public/management/hooks/index.ts | 1 + .../management/hooks/use_get_action_state.ts | 31 ++++ .../use_with_show_endpoint_responder.tsx | 8 +- .../server/endpoint/routes/actions/index.ts | 5 +- .../endpoint/routes/actions/state.test.ts | 133 ++++++++++++++++++ .../server/endpoint/routes/actions/state.ts | 60 ++++++++ .../endpoint/routes/suggestions/index.ts | 1 + .../security_solution/server/plugin.ts | 6 +- 14 files changed, 510 insertions(+), 102 deletions(-) create mode 100644 x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/index.ts create mode 100644 x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.test.tsx create mode 100644 x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.tsx create mode 100644 x-pack/plugins/security_solution/public/management/hooks/use_get_action_state.ts create mode 100644 x-pack/plugins/security_solution/server/endpoint/routes/actions/state.test.ts create mode 100644 x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts diff --git a/x-pack/plugins/security_solution/common/endpoint/constants.ts b/x-pack/plugins/security_solution/common/endpoint/constants.ts index 56dd1ee3655e5..a4f7d7661e7c6 100644 --- a/x-pack/plugins/security_solution/common/endpoint/constants.ts +++ b/x-pack/plugins/security_solution/common/endpoint/constants.ts @@ -88,6 +88,7 @@ export const ACTION_STATUS_ROUTE = `${BASE_ENDPOINT_ROUTE}/action_status`; export const ACTION_DETAILS_ROUTE = `${BASE_ENDPOINT_ACTION_ROUTE}/{action_id}`; export const ACTION_AGENT_FILE_INFO_ROUTE = `${BASE_ENDPOINT_ACTION_ROUTE}/{action_id}/file/{file_id}`; export const ACTION_AGENT_FILE_DOWNLOAD_ROUTE = `${BASE_ENDPOINT_ACTION_ROUTE}/{action_id}/file/{file_id}/download`; +export const ACTION_STATE_ROUTE = `${BASE_ENDPOINT_ACTION_ROUTE}/state`; export const failedFleetActionErrorCode = '424'; diff --git a/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/isolate_form.tsx b/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/isolate_form.tsx index 5bffe92e6d019..fe0889e80cda7 100644 --- a/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/isolate_form.tsx +++ b/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/isolate_form.tsx @@ -18,6 +18,7 @@ import { EuiTextArea, } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; +import { MissingEncryptionKeyCallout } from '../../../../management/components/missing_encryption_key_callout'; import { CANCEL, COMMENT, COMMENT_PLACEHOLDER, CONFIRM } from './translations'; export interface EndpointIsolatedFormProps { @@ -42,62 +43,65 @@ export const EndpointIsolateForm = memo( ); return ( - - - -

- {hostName} }} - /> -
-

-

- {' '} - {messageAppend} -

-
-
+ <> + + + + +

+ {hostName} }} + /> +
+

+

+ {' '} + {messageAppend} +

+
+
- - - + + + - - - - - {CANCEL} - - - - - {CONFIRM} - - - - -
+ + + + + {CANCEL} + + + + + {CONFIRM} + + + + +
+ ); } ); diff --git a/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/unisolate_form.tsx b/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/unisolate_form.tsx index 8226175786ae0..b1ffb60c6bbff 100644 --- a/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/unisolate_form.tsx +++ b/x-pack/plugins/security_solution/public/common/components/endpoint/host_isolation/unisolate_form.tsx @@ -18,6 +18,7 @@ import { EuiTextArea, } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; +import { MissingEncryptionKeyCallout } from '../../../../management/components/missing_encryption_key_callout'; import { CANCEL, COMMENT, COMMENT_PLACEHOLDER, CONFIRM, UNISOLATE, ISOLATED } from './translations'; import type { EndpointIsolatedFormProps } from './isolate_form'; @@ -31,53 +32,56 @@ export const EndpointUnisolateForm = memo( ); return ( - - - -

- {hostName}, - isolated: {ISOLATED}, - unisolate: {UNISOLATE}, - }} - />{' '} - {messageAppend} -

-
-
+ <> + + + + +

+ {hostName}, + isolated: {ISOLATED}, + unisolate: {UNISOLATE}, + }} + />{' '} + {messageAppend} +

+
+
- - - + + + - - - - - {CANCEL} - - - - - {CONFIRM} - - - - -
+ + + + + {CANCEL} + + + + + {CONFIRM} + + + + +
+ ); } ); diff --git a/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/index.ts b/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/index.ts new file mode 100644 index 0000000000000..c580eeda82d82 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/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 { MissingEncryptionKeyCallout } from './missing_encryption_key_callout'; diff --git a/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.test.tsx b/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.test.tsx new file mode 100644 index 0000000000000..eeff557fb0131 --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.test.tsx @@ -0,0 +1,88 @@ +/* + * 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 { ACTION_STATE_ROUTE } from '../../../../common/endpoint/constants'; +import { act, fireEvent } from '@testing-library/react'; +import React from 'react'; +import type { AppContextTestRender } from '../../../common/mock/endpoint'; +import { createAppRootMockRenderer } from '../../../common/mock/endpoint'; +import { policyListApiPathHandlers } from '../../pages/policy/store/test_mock_utils'; +import { MissingEncryptionKeyCallout } from './missing_encryption_key_callout'; + +describe('Missing encryption key callout', () => { + let render: () => ReturnType; + let renderResult: ReturnType; + let mockedContext: AppContextTestRender; + let asyncActions: Promise = Promise.resolve(); + const sleep = (ms = 100) => new Promise((wakeup) => setTimeout(wakeup, ms)); + + const policyListApiHandlers = policyListApiPathHandlers(); + + const apiReturnsEncryptionKeyIsSet = (canEncrypt: boolean) => { + mockedContext.coreStart.http.get.mockImplementation((...args) => { + const [path] = args; + if (typeof path === 'string') { + // GET datasouce + if (path === ACTION_STATE_ROUTE) { + asyncActions = asyncActions.then(async (): Promise => sleep()); + return Promise.resolve({ + data: { canEncrypt }, + }); + } + + // Get action state + // Used in tests that route back to the list + if (policyListApiHandlers[path]) { + asyncActions = asyncActions.then(async () => sleep()); + return Promise.resolve(policyListApiHandlers[path]()); + } + } + + return Promise.reject(new Error(`unknown API call (not MOCKED): ${path}`)); + }); + }; + + beforeEach(() => { + mockedContext = createAppRootMockRenderer(); + render = () => (renderResult = mockedContext.render()); + }); + + afterEach(() => { + jest.clearAllMocks(); + }); + + it('should be visible when encryption key not set', async () => { + apiReturnsEncryptionKeyIsSet(false); + render(); + await asyncActions; + const callout = renderResult.queryByTestId('missingEncryptionKeyCallout'); + expect(callout).toBeTruthy(); + }); + + it('should not be visible when encryption key is set', async () => { + apiReturnsEncryptionKeyIsSet(true); + render(); + await asyncActions; + const callout = renderResult.queryByTestId('missingEncryptionKeyCallout'); + expect(callout).toBeFalsy(); + }); + + it('should be able to dismiss when visible', async () => { + apiReturnsEncryptionKeyIsSet(false); + render(); + await asyncActions; + let callout = renderResult.queryByTestId('missingEncryptionKeyCallout'); + expect(callout).toBeTruthy(); + + act(() => { + fireEvent.click(renderResult.getByTestId('dismissEncryptionKeyCallout')); + }); + + callout = renderResult.queryByTestId('missingEncryptionKeyCallout'); + expect(callout).toBeFalsy(); + }); +}); diff --git a/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.tsx b/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.tsx new file mode 100644 index 0000000000000..6524f81f23c8b --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/missing_encryption_key_callout/missing_encryption_key_callout.tsx @@ -0,0 +1,64 @@ +/* + * 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, useState, useCallback } from 'react'; +import { EuiCallOut, EuiSpacer, EuiButtonEmpty } from '@elastic/eui'; +import { FormattedMessage } from '@kbn/i18n-react'; +import { i18n } from '@kbn/i18n'; +import { useGetActionState } from '../../hooks'; + +export const MissingEncryptionKeyCallout = memo(() => { + const { data: encryptionKeyState } = useGetActionState(); + const [calloutDismiss, setCalloutDismiss] = useState(false); + + const onClickDismissButton = useCallback(() => setCalloutDismiss(true), []); + + if (!encryptionKeyState) { + return null; + } + + if (calloutDismiss || encryptionKeyState.data.canEncrypt === true) { + return null; + } + + return ( + <> + +
+ +
+ + + + +
+ + + ); +}); + +MissingEncryptionKeyCallout.displayName = 'MissingEncryptionKeyCallout'; diff --git a/x-pack/plugins/security_solution/public/management/hooks/index.ts b/x-pack/plugins/security_solution/public/management/hooks/index.ts index b439bcffb8874..5afa3cd5457f0 100644 --- a/x-pack/plugins/security_solution/public/management/hooks/index.ts +++ b/x-pack/plugins/security_solution/public/management/hooks/index.ts @@ -8,3 +8,4 @@ export { useGetEndpointDetails } from './endpoint/use_get_endpoint_details'; export { useWithShowEndpointResponder } from './use_with_show_endpoint_responder'; export { useGetEndpointActionList } from './response_actions/use_get_endpoint_action_list'; +export { useGetActionState } from './use_get_action_state'; diff --git a/x-pack/plugins/security_solution/public/management/hooks/use_get_action_state.ts b/x-pack/plugins/security_solution/public/management/hooks/use_get_action_state.ts new file mode 100644 index 0000000000000..9b737abfc7ece --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/hooks/use_get_action_state.ts @@ -0,0 +1,31 @@ +/* + * 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 type { UseQueryResult } from '@tanstack/react-query'; +import { useQuery } from '@tanstack/react-query'; +import type { IHttpFetchError } from '@kbn/core-http-browser'; +import { ACTION_STATE_ROUTE } from '../../../common/endpoint/constants'; +import { useHttp } from '../../common/lib/kibana'; + +interface GetActionStateResponse { + data: { + canEncrypt?: boolean; + }; +} +/** + * Get info for action state + */ +export const useGetActionState = (): UseQueryResult => { + const http = useHttp(); + + return useQuery({ + queryKey: ['get-action-state'], + queryFn: () => { + return http.get(ACTION_STATE_ROUTE); + }, + }); +}; diff --git a/x-pack/plugins/security_solution/public/management/hooks/use_with_show_endpoint_responder.tsx b/x-pack/plugins/security_solution/public/management/hooks/use_with_show_endpoint_responder.tsx index c5dd32bacfb8f..26a0763ae6124 100644 --- a/x-pack/plugins/security_solution/public/management/hooks/use_with_show_endpoint_responder.tsx +++ b/x-pack/plugins/security_solution/public/management/hooks/use_with_show_endpoint_responder.tsx @@ -16,6 +16,7 @@ import { } from '../components/endpoint_responder'; import { useConsoleManager } from '../components/console'; import type { HostMetadata } from '../../../common/endpoint/types'; +import { MissingEncryptionKeyCallout } from '../components/missing_encryption_key_callout'; type ShowEndpointResponseActionsConsole = (endpointMetadata: HostMetadata) => void; @@ -58,7 +59,12 @@ export const useWithShowEndpointResponder = (): ShowEndpointResponseActionsConso TitleComponent: () => , }, PageTitleComponent: () => <>{RESPONDER_PAGE_TITLE}, - PageBodyComponent: () => , + PageBodyComponent: () => ( + <> + + + + ), ActionComponents: endpointPrivileges.canReadActionsLogManagement ? [ActionLogButton] : undefined, diff --git a/x-pack/plugins/security_solution/server/endpoint/routes/actions/index.ts b/x-pack/plugins/security_solution/server/endpoint/routes/actions/index.ts index 6bba9bc38c962..1f96cb4dff64a 100644 --- a/x-pack/plugins/security_solution/server/endpoint/routes/actions/index.ts +++ b/x-pack/plugins/security_solution/server/endpoint/routes/actions/index.ts @@ -11,6 +11,7 @@ import { registerActionDetailsRoutes } from './details'; import type { SecuritySolutionPluginRouter } from '../../../types'; import type { EndpointAppContext } from '../../types'; import { registerActionStatusRoutes } from './status'; +import { registerActionStateRoutes } from './state'; import { registerActionAuditLogRoutes } from './audit_log'; import { registerActionListRoutes } from './list'; import { registerResponseActionRoutes } from './response_actions'; @@ -19,9 +20,11 @@ import { registerResponseActionRoutes } from './response_actions'; export function registerActionRoutes( router: SecuritySolutionPluginRouter, - endpointContext: EndpointAppContext + endpointContext: EndpointAppContext, + canEncrypt?: boolean ) { registerActionStatusRoutes(router, endpointContext); + registerActionStateRoutes(router, endpointContext, canEncrypt); registerActionAuditLogRoutes(router, endpointContext); registerActionListRoutes(router, endpointContext); registerActionDetailsRoutes(router, endpointContext); diff --git a/x-pack/plugins/security_solution/server/endpoint/routes/actions/state.test.ts b/x-pack/plugins/security_solution/server/endpoint/routes/actions/state.test.ts new file mode 100644 index 0000000000000..9612eab2c2821 --- /dev/null +++ b/x-pack/plugins/security_solution/server/endpoint/routes/actions/state.test.ts @@ -0,0 +1,133 @@ +/* + * 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 type { ScopedClusterClientMock } from '@kbn/core/server/mocks'; +import { loggingSystemMock, httpServerMock, httpServiceMock } from '@kbn/core/server/mocks'; +import type { KibanaResponseFactory, SavedObjectsClientContract } from '@kbn/core/server'; + +import { + createMockEndpointAppContextServiceStartContract, + createRouteHandlerContext, +} from '../../mocks'; +import type { EndpointAuthz } from '../../../../common/endpoint/types/authz'; + +import { createMockConfig } from '../../../lib/detection_engine/routes/__mocks__'; + +import { getEndpointAuthzInitialStateMock } from '../../../../common/endpoint/service/authz/mocks'; + +import { EndpointAppContextService } from '../../endpoint_app_context_services'; +import { parseExperimentalConfigValue } from '../../../../common/experimental_features'; + +import { registerActionStateRoutes } from './state'; +import type { RouterMock } from '@kbn/core-http-router-server-mocks'; +import { ACTION_STATE_ROUTE } from '../../../../common/endpoint/constants'; + +interface CallRouteInterface { + authz?: Partial; +} + +describe('when calling the Action state route handler', () => { + let mockScopedEsClient: ScopedClusterClientMock; + let mockSavedObjectClient: jest.Mocked; + let mockResponse: jest.Mocked; + let callRoute: ( + routerMock: RouterMock, + routePrefix: string, + opts: CallRouteInterface, + indexExists?: { endpointDsExists: boolean } + ) => Promise; + + beforeEach(() => { + const startContract = createMockEndpointAppContextServiceStartContract(); + mockResponse = httpServerMock.createResponseFactory(); + // define a convenience function to execute an API call for a given route + callRoute = async ( + routerMock: RouterMock, + routePrefix: string, + { authz = {} }: CallRouteInterface + ): Promise => { + const superUser = { + username: 'superuser', + roles: ['superuser'], + }; + (startContract.security.authc.getCurrentUser as jest.Mock).mockImplementationOnce( + () => superUser + ); + + const ctx = createRouteHandlerContext(mockScopedEsClient, mockSavedObjectClient); + + ctx.securitySolution.getEndpointAuthz.mockResolvedValue( + getEndpointAuthzInitialStateMock(authz) + ); + + const mockRequest = httpServerMock.createKibanaRequest(); + const [, routeHandler] = routerMock.get.mock.calls.find(([{ path }]) => + path.startsWith(routePrefix) + )!; + + await routeHandler(ctx, mockRequest, mockResponse); + }; + }); + describe('with having right privileges', () => { + it.each([[true], [false]])( + 'when can encrypt is set to %s it returns proper value', + async (canEncrypt) => { + const routerMock: RouterMock = httpServiceMock.createRouter(); + const endpointAppContextService = new EndpointAppContextService(); + registerActionStateRoutes( + routerMock, + { + logFactory: loggingSystemMock.create(), + service: endpointAppContextService, + config: () => Promise.resolve(createMockConfig()), + experimentalFeatures: parseExperimentalConfigValue( + createMockConfig().enableExperimental + ), + }, + canEncrypt + ); + + await callRoute(routerMock, ACTION_STATE_ROUTE, { + authz: { canIsolateHost: true }, + }); + + expect(mockResponse.ok).toHaveBeenCalledWith({ body: { data: { canEncrypt } } }); + } + ); + }); + describe('without having right privileges', () => { + it('it returns unauthorized error', async () => { + const routerMock: RouterMock = httpServiceMock.createRouter(); + const endpointAppContextService = new EndpointAppContextService(); + registerActionStateRoutes( + routerMock, + { + logFactory: loggingSystemMock.create(), + service: endpointAppContextService, + config: () => Promise.resolve(createMockConfig()), + experimentalFeatures: parseExperimentalConfigValue(createMockConfig().enableExperimental), + }, + true + ); + + await callRoute(routerMock, ACTION_STATE_ROUTE, { + authz: { + canIsolateHost: false, + canUnIsolateHost: false, + canKillProcess: false, + canSuspendProcess: false, + canGetRunningProcesses: false, + canAccessResponseConsole: false, + canWriteExecuteOperations: false, + canWriteFileOperations: false, + }, + }); + + expect(mockResponse.forbidden).toHaveBeenCalled(); + }); + }); +}); diff --git a/x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts b/x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts new file mode 100644 index 0000000000000..f461b144663ed --- /dev/null +++ b/x-pack/plugins/security_solution/server/endpoint/routes/actions/state.ts @@ -0,0 +1,60 @@ +/* + * 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 type { RequestHandler } from '@kbn/core/server'; +import { ACTION_STATE_ROUTE } from '../../../../common/endpoint/constants'; +import type { + SecuritySolutionPluginRouter, + SecuritySolutionRequestHandlerContext, +} from '../../../types'; +import type { EndpointAppContext } from '../../types'; +import { withEndpointAuthz } from '../with_endpoint_authz'; + +/** + * Registers routes for checking state of actions routes + */ +export function registerActionStateRoutes( + router: SecuritySolutionPluginRouter, + endpointContext: EndpointAppContext, + canEncrypt?: boolean +) { + router.get( + { + path: ACTION_STATE_ROUTE, + validate: false, + options: { authRequired: true, tags: ['access:securitySolution'] }, + }, + withEndpointAuthz( + { + any: [ + 'canIsolateHost', + 'canUnIsolateHost', + 'canKillProcess', + 'canSuspendProcess', + 'canGetRunningProcesses', + 'canAccessResponseConsole', + 'canWriteExecuteOperations', + 'canWriteFileOperations', + ], + }, + endpointContext.logFactory.get('actionState'), + getActionStateRequestHandler(canEncrypt) + ) + ); +} + +export const getActionStateRequestHandler = function ( + canEncrypt?: boolean +): RequestHandler { + return async (_, __, res) => { + return res.ok({ + body: { + data: { canEncrypt }, + }, + }); + }; +}; diff --git a/x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts b/x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts index cd18a61368ef7..ca16294c552af 100644 --- a/x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts +++ b/x-pack/plugins/security_solution/server/endpoint/routes/suggestions/index.ts @@ -39,6 +39,7 @@ export function registerEndpointSuggestionsRoutes( { path: SUGGESTIONS_ROUTE, validate: EndpointSuggestionsSchema, + options: { authRequired: true, tags: ['access:securitySolution'] }, }, withEndpointAuthz( { any: ['canWriteEventFilters'] }, diff --git a/x-pack/plugins/security_solution/server/plugin.ts b/x-pack/plugins/security_solution/server/plugin.ts index 2ec2db2394068..ab5ac00454a5e 100644 --- a/x-pack/plugins/security_solution/server/plugin.ts +++ b/x-pack/plugins/security_solution/server/plugin.ts @@ -309,7 +309,11 @@ export class Plugin implements ISecuritySolutionPlugin { ); registerLimitedConcurrencyRoutes(core); registerPolicyRoutes(router, this.endpointContext); - registerActionRoutes(router, this.endpointContext); + registerActionRoutes( + router, + this.endpointContext, + plugins.encryptedSavedObjects?.canEncrypt === true + ); const ruleTypes = [ LEGACY_NOTIFICATIONS_ID, From 0cf7fd1159399a81e573b1377b27468ac8997135 Mon Sep 17 00:00:00 2001 From: Maxim Palenov Date: Thu, 20 Apr 2023 10:32:30 +0200 Subject: [PATCH 109/144] [Security Solution] Support snoozing in rules table (#153083) **Addresses:** https://github.com/elastic/kibana/issues/147735 ## Summary The PR adds an ability to set rule snoozing in the rules management table. Screen recording: https://user-images.githubusercontent.com/3775283/229066538-5effc1af-f481-4749-a964-a071c4393c8f.mov ### Checklist - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --- x-pack/plugins/alerting/common/index.ts | 1 + .../alerting/server/routes/find_rules.ts | 6 +- .../rule_management/api/api.test.ts | 51 ++++++ .../rule_management/api/api.ts | 29 ++- .../use_create_prebuilt_rules_mutation.ts | 3 + .../hooks/use_fetch_rules_snooze_settings.ts | 62 +++++++ .../components/rule_snooze_badge.tsx | 59 +++++++ .../components/translations.ts | 15 ++ .../rule_management/logic/types.ts | 18 ++ .../__mocks__/rules_table_context.tsx | 5 + .../rules_table/rules_table_context.test.tsx | 166 +++++++++++++++--- .../rules_table/rules_table_context.tsx | 98 ++++++++--- .../components/rules_table/use_columns.tsx | 17 ++ .../detection_engine/rules/translations.ts | 7 + .../notify_badge/notify_badge_with_api.tsx | 9 +- 15 files changed, 493 insertions(+), 53 deletions(-) create mode 100644 x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_fetch_rules_snooze_settings.ts create mode 100644 x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_snooze_badge.tsx create mode 100644 x-pack/plugins/security_solution/public/detection_engine/rule_management/components/translations.ts diff --git a/x-pack/plugins/alerting/common/index.ts b/x-pack/plugins/alerting/common/index.ts index f12abcde69660..8b4c04d15cfc4 100644 --- a/x-pack/plugins/alerting/common/index.ts +++ b/x-pack/plugins/alerting/common/index.ts @@ -57,6 +57,7 @@ export interface AlertingFrameworkHealth { export const LEGACY_BASE_ALERT_API_PATH = '/api/alerts'; export const BASE_ALERTING_API_PATH = '/api/alerting'; export const INTERNAL_BASE_ALERTING_API_PATH = '/internal/alerting'; +export const INTERNAL_ALERTING_API_FIND_RULES_PATH = `${INTERNAL_BASE_ALERTING_API_PATH}/rules/_find`; export const ALERTS_FEATURE_ID = 'alerts'; export const MONITORING_HISTORY_LIMIT = 200; export const ENABLE_MAINTENANCE_WINDOWS = false; diff --git a/x-pack/plugins/alerting/server/routes/find_rules.ts b/x-pack/plugins/alerting/server/routes/find_rules.ts index 50bd9ad387d7d..04b18da1a1b0c 100644 --- a/x-pack/plugins/alerting/server/routes/find_rules.ts +++ b/x-pack/plugins/alerting/server/routes/find_rules.ts @@ -20,7 +20,7 @@ import { RuleTypeParams, AlertingRequestHandlerContext, BASE_ALERTING_API_PATH, - INTERNAL_BASE_ALERTING_API_PATH, + INTERNAL_ALERTING_API_FIND_RULES_PATH, } from '../types'; import { trackLegacyTerminology } from './lib/track_legacy_terminology'; @@ -136,7 +136,7 @@ const buildFindRulesRoute = ({ }) ) ); - if (path === `${INTERNAL_BASE_ALERTING_API_PATH}/rules/_find`) { + if (path === INTERNAL_ALERTING_API_FIND_RULES_PATH) { router.post( { path, @@ -205,7 +205,7 @@ export const findInternalRulesRoute = ( buildFindRulesRoute({ excludeFromPublicApi: false, licenseState, - path: `${INTERNAL_BASE_ALERTING_API_PATH}/rules/_find`, + path: INTERNAL_ALERTING_API_FIND_RULES_PATH, router, usageCounter, }); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts index fe111c13debec..b1a2d0f95417a 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.test.ts @@ -35,6 +35,7 @@ import { previewRule, findRuleExceptionReferences, performBulkAction, + fetchRulesSnoozeSettings, } from './api'; const abortCtrl = new AbortController(); @@ -786,4 +787,54 @@ describe('Detections Rules API', () => { expect(result).toBe(fetchMockResult); }); }); + + describe('fetchRulesSnoozeSettings', () => { + beforeEach(() => { + fetchMock.mockClear(); + }); + + test('requests snooze settings of multiple rules by their IDs', () => { + fetchRulesSnoozeSettings({ ids: ['id1', 'id2'] }); + + expect(fetchMock).toHaveBeenCalledWith( + expect.any(String), + expect.objectContaining({ + query: expect.objectContaining({ + filter: 'alert.id:"alert:id1" or alert.id:"alert:id2"', + }), + }) + ); + }); + + test('requests the same number of rules as the number of ids provided', () => { + fetchRulesSnoozeSettings({ ids: ['id1', 'id2'] }); + + expect(fetchMock).toHaveBeenCalledWith( + expect.any(String), + expect.objectContaining({ + query: expect.objectContaining({ + per_page: 2, + }), + }) + ); + }); + + test('requests only snooze settings fields', () => { + fetchRulesSnoozeSettings({ ids: ['id1', 'id2'] }); + + expect(fetchMock).toHaveBeenCalledWith( + expect.any(String), + expect.objectContaining({ + query: expect.objectContaining({ + fields: JSON.stringify([ + 'muteAll', + 'activeSnoozes', + 'isSnoozedUntil', + 'snoozeSchedule', + ]), + }), + }) + ); + }); + }); }); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts index 386dbf3c7b525..b8078421ce683 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/api.ts @@ -9,7 +9,7 @@ import type { CreateRuleExceptionListItemSchema, ExceptionListItemSchema, } from '@kbn/securitysolution-io-ts-list-types'; - +import { INTERNAL_ALERTING_API_FIND_RULES_PATH } from '@kbn/alerting-plugin/common'; import type { BulkInstallPackagesResponse } from '@kbn/fleet-plugin/common'; import { epmRouteService } from '@kbn/fleet-plugin/common'; import type { InstallPackageResponse } from '@kbn/fleet-plugin/common/types'; @@ -47,6 +47,7 @@ import type { CreateRulesProps, ExportDocumentsProps, FetchRuleProps, + FetchRuleSnoozingProps, FetchRulesProps, FetchRulesResponse, FindRulesReferencedByExceptionsProps, @@ -56,6 +57,7 @@ import type { PrePackagedRulesStatusResponse, PreviewRulesProps, Rule, + RulesSnoozeSettingsResponse, UpdateRulesProps, } from '../logic/types'; import { convertRulesFilterToKQL } from '../logic/utils'; @@ -184,6 +186,31 @@ export const fetchRuleById = async ({ id, signal }: FetchRuleProps): Promise => + KibanaServices.get().http.fetch( + INTERNAL_ALERTING_API_FIND_RULES_PATH, + { + method: 'GET', + query: { + filter: ids.map((x) => `alert.id:"alert:${x}"`).join(' or '), + fields: JSON.stringify(['muteAll', 'activeSnoozes', 'isSnoozedUntil', 'snoozeSchedule']), + per_page: ids.length, + }, + signal, + } + ); + export interface BulkActionSummary { failed: number; skipped: number; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_create_prebuilt_rules_mutation.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_create_prebuilt_rules_mutation.ts index 41bce8f0cc154..37001caf43b8c 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_create_prebuilt_rules_mutation.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_create_prebuilt_rules_mutation.ts @@ -12,6 +12,7 @@ import { createPrepackagedRules } from '../api'; import { useInvalidateFetchPrebuiltRulesStatusQuery } from './use_fetch_prebuilt_rules_status_query'; import { useInvalidateFindRulesQuery } from './use_find_rules_query'; import { useInvalidateFetchRuleManagementFiltersQuery } from './use_fetch_rule_management_filters_query'; +import { useInvalidateFetchRulesSnoozeSettingsQuery } from './use_fetch_rules_snooze_settings'; export const CREATE_PREBUILT_RULES_MUTATION_KEY = ['PUT', PREBUILT_RULES_URL]; @@ -19,6 +20,7 @@ export const useCreatePrebuiltRulesMutation = ( options?: UseMutationOptions ) => { const invalidateFindRulesQuery = useInvalidateFindRulesQuery(); + const invalidateFetchRulesSnoozeSettings = useInvalidateFetchRulesSnoozeSettingsQuery(); const invalidatePrePackagedRulesStatus = useInvalidateFetchPrebuiltRulesStatusQuery(); const invalidateFetchRuleManagementFilters = useInvalidateFetchRuleManagementFiltersQuery(); @@ -30,6 +32,7 @@ export const useCreatePrebuiltRulesMutation = ( // the number of rules might change after the installation invalidatePrePackagedRulesStatus(); invalidateFindRulesQuery(); + invalidateFetchRulesSnoozeSettings(); invalidateFetchRuleManagementFilters(); if (options?.onSettled) { diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_fetch_rules_snooze_settings.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_fetch_rules_snooze_settings.ts new file mode 100644 index 0000000000000..bdc101fe18644 --- /dev/null +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/api/hooks/use_fetch_rules_snooze_settings.ts @@ -0,0 +1,62 @@ +/* + * 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 { INTERNAL_ALERTING_API_FIND_RULES_PATH } from '@kbn/alerting-plugin/common'; +import type { UseQueryOptions } from '@tanstack/react-query'; +import { useQuery, useQueryClient } from '@tanstack/react-query'; +import { useCallback } from 'react'; +import type { RuleSnoozeSettings } from '../../logic'; +import { fetchRulesSnoozeSettings } from '../api'; +import { DEFAULT_QUERY_OPTIONS } from './constants'; + +const FETCH_RULE_SNOOZE_SETTINGS_QUERY_KEY = ['GET', INTERNAL_ALERTING_API_FIND_RULES_PATH]; + +/** + * A wrapper around useQuery provides default values to the underlying query, + * like query key, abortion signal. + * + * @param queryArgs - fetch rule snoozing settings ids + * @param queryOptions - react-query options + * @returns useQuery result + */ +export const useFetchRulesSnoozeSettings = ( + ids: string[], + queryOptions?: UseQueryOptions +) => { + return useQuery( + [...FETCH_RULE_SNOOZE_SETTINGS_QUERY_KEY, ...ids], + async ({ signal }) => { + const response = await fetchRulesSnoozeSettings({ ids, signal }); + + return response.data; + }, + { + ...DEFAULT_QUERY_OPTIONS, + ...queryOptions, + } + ); +}; + +/** + * We should use this hook to invalidate the cache. For example, rule + * snooze modification should lead to cache invalidation. + * + * @returns A rules cache invalidation callback + */ +export const useInvalidateFetchRulesSnoozeSettingsQuery = () => { + const queryClient = useQueryClient(); + + return useCallback(() => { + /** + * Invalidate all queries that start with FIND_RULES_QUERY_KEY. This + * includes the in-memory query cache and paged query cache. + */ + queryClient.invalidateQueries(FETCH_RULE_SNOOZE_SETTINGS_QUERY_KEY, { + refetchType: 'active', + }); + }, [queryClient]); +}; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_snooze_badge.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_snooze_badge.tsx new file mode 100644 index 0000000000000..f2a06cd5475e0 --- /dev/null +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/rule_snooze_badge.tsx @@ -0,0 +1,59 @@ +/* + * 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 { EuiButtonIcon, EuiToolTip } from '@elastic/eui'; +import React, { useMemo } from 'react'; +import { useUserData } from '../../../detections/components/user_info'; +import { hasUserCRUDPermission } from '../../../common/utils/privileges'; +import { useKibana } from '../../../common/lib/kibana'; +import { useInvalidateFetchRulesSnoozeSettingsQuery } from '../api/hooks/use_fetch_rules_snooze_settings'; +import { useRulesTableContext } from '../../rule_management_ui/components/rules_table/rules_table/rules_table_context'; +import * as i18n from './translations'; + +interface RuleSnoozeBadgeProps { + id: string; // Rule SO's id (not ruleId) +} + +export function RuleSnoozeBadge({ id }: RuleSnoozeBadgeProps): JSX.Element { + const RulesListNotifyBadge = useKibana().services.triggersActionsUi.getRulesListNotifyBadge; + const [{ canUserCRUD }] = useUserData(); + const hasCRUDPermissions = hasUserCRUDPermission(canUserCRUD); + const { + state: { rulesSnoozeSettings }, + } = useRulesTableContext(); + const invalidateFetchRuleSnoozeSettings = useInvalidateFetchRulesSnoozeSettingsQuery(); + const rule = useMemo(() => { + const ruleSnoozeSettings = rulesSnoozeSettings.data[id]; + + return { + id: ruleSnoozeSettings?.id ?? '', + muteAll: ruleSnoozeSettings?.mute_all ?? false, + activeSnoozes: ruleSnoozeSettings?.active_snoozes ?? [], + isSnoozedUntil: ruleSnoozeSettings?.is_snoozed_until + ? new Date(ruleSnoozeSettings.is_snoozed_until) + : undefined, + snoozeSchedule: ruleSnoozeSettings?.snooze_schedule, + isEditable: hasCRUDPermissions, + }; + }, [id, rulesSnoozeSettings, hasCRUDPermissions]); + + if (rulesSnoozeSettings.isError) { + return ( + + + + ); + } + + return ( + + ); +} diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/translations.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/translations.ts new file mode 100644 index 0000000000000..1b98a9c6212eb --- /dev/null +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/components/translations.ts @@ -0,0 +1,15 @@ +/* + * 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 { i18n } from '@kbn/i18n'; + +export const UNABLE_TO_FETCH_RULE_SNOOZE_SETTINGS = i18n.translate( + 'xpack.securitySolution.detectionEngine.ruleManagement.ruleSnoozeBadge.error.unableToFetch', + { + defaultMessage: 'Unable to fetch snooze settings', + } +); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts index 0f93d66efbf6f..ca71fa2680f17 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management/logic/types.ts @@ -7,6 +7,7 @@ import * as t from 'io-ts'; +import type { RuleSnooze } from '@kbn/alerting-plugin/common'; import type { Type } from '@kbn/securitysolution-io-ts-alerting-types'; import { RiskScore, @@ -217,6 +218,18 @@ export interface FetchRulesProps { signal?: AbortSignal; } +export interface RuleSnoozeSettings { + id: string; + mute_all: boolean; + snooze_schedule?: RuleSnooze; + active_snoozes?: string[]; + is_snoozed_until?: string; +} + +export interface RulesSnoozeSettingsResponse { + data: RuleSnoozeSettings[]; +} + export type SortingOptions = t.TypeOf; export const SortingOptions = t.type({ field: FindRulesSortField, @@ -244,6 +257,11 @@ export interface FetchRuleProps { signal?: AbortSignal; } +export interface FetchRuleSnoozingProps { + ids: string[]; + signal?: AbortSignal; +} + export interface BasicFetchProps { signal: AbortSignal; } diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/__mocks__/rules_table_context.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/__mocks__/rules_table_context.tsx index 688b90c860ceb..8ab84b2e60a60 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/__mocks__/rules_table_context.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/__mocks__/rules_table_context.tsx @@ -12,6 +12,11 @@ export const useRulesTableContextMock = { create: (): jest.Mocked => ({ state: { rules: [], + rulesSnoozeSettings: { + data: {}, + isLoading: false, + isError: false, + }, pagination: { page: 1, perPage: 20, diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.test.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.test.tsx index cb2eb08c5381b..22a3af8ff0814 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.test.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.test.tsx @@ -9,7 +9,9 @@ import { renderHook } from '@testing-library/react-hooks'; import type { PropsWithChildren } from 'react'; import React from 'react'; import { useUiSetting$ } from '../../../../../common/lib/kibana'; +import type { Rule, RuleSnoozeSettings } from '../../../../rule_management/logic/types'; import { useFindRules } from '../../../../rule_management/logic/use_find_rules'; +import { useFetchRulesSnoozeSettings } from '../../../../rule_management/api/hooks/use_fetch_rules_snooze_settings'; import type { RulesTableState } from './rules_table_context'; import { RulesTableContextProvider, useRulesTableContext } from './rules_table_context'; import { @@ -23,22 +25,51 @@ import { useRulesTableSavedState } from './use_rules_table_saved_state'; jest.mock('../../../../../common/lib/kibana'); jest.mock('../../../../rule_management/logic/use_find_rules'); +jest.mock('../../../../rule_management/api/hooks/use_fetch_rules_snooze_settings'); jest.mock('./use_rules_table_saved_state'); -function renderUseRulesTableContext( - savedState: ReturnType -): RulesTableState { +function renderUseRulesTableContext({ + rules, + rulesSnoozeSettings, + savedState, +}: { + rules?: Rule[] | Error; + rulesSnoozeSettings?: RuleSnoozeSettings[] | Error; + savedState?: ReturnType; +}): RulesTableState { (useFindRules as jest.Mock).mockReturnValue({ - data: { rules: [], total: 0 }, + data: rules instanceof Error || !rules ? undefined : { rules, total: rules?.length }, refetch: jest.fn(), dataUpdatedAt: 0, - isFetched: false, - isFetching: false, - isLoading: false, + isFetched: !!rules, + isFetching: !rules, + isLoading: !rules, isRefetching: false, + isError: rules instanceof Error, + }); + (useFetchRulesSnoozeSettings as jest.Mock).mockReturnValue({ + data: rulesSnoozeSettings instanceof Error ? undefined : rulesSnoozeSettings, + isError: rulesSnoozeSettings instanceof Error, }); (useUiSetting$ as jest.Mock).mockReturnValue([{ on: false, value: 0, idleTimeout: 0 }]); - (useRulesTableSavedState as jest.Mock).mockReturnValue(savedState); + (useRulesTableSavedState as jest.Mock).mockReturnValue( + savedState ?? { + filter: { + searchTerm: undefined, + source: undefined, + tags: undefined, + enabled: undefined, + }, + sorting: { + field: undefined, + order: undefined, + }, + pagination: { + page: undefined, + perPage: undefined, + }, + } + ); const wrapper = ({ children }: PropsWithChildren<{}>) => ( {children} @@ -56,19 +87,22 @@ describe('RulesTableContextProvider', () => { describe('persisted state', () => { it('restores persisted rules table state', () => { const state = renderUseRulesTableContext({ - filter: { - searchTerm: 'test', - source: RuleSource.Custom, - tags: ['test'], - enabled: true, - }, - sorting: { - field: 'name', - order: 'asc', - }, - pagination: { - page: 2, - perPage: 10, + rules: [], + savedState: { + filter: { + searchTerm: 'test', + source: RuleSource.Custom, + tags: ['test'], + enabled: true, + }, + sorting: { + field: 'name', + order: 'asc', + }, + pagination: { + page: 2, + perPage: 10, + }, }, }); @@ -112,4 +146,94 @@ describe('RulesTableContextProvider', () => { expect(state.isDefault).toBeTruthy(); }); }); + + describe('state', () => { + describe('rules', () => { + it('returns an empty array while loading', () => { + const state = renderUseRulesTableContext({ + rules: undefined, + }); + + expect(state.rules).toEqual([]); + }); + + it('returns an empty array upon error', () => { + const state = renderUseRulesTableContext({ + rules: new Error('some error'), + }); + + expect(state.rules).toEqual([]); + }); + + it('returns rules while snooze settings are not loaded yet', () => { + const state = renderUseRulesTableContext({ + rules: [{ name: 'rule 1' }, { name: 'rule 2' }] as Rule[], + rulesSnoozeSettings: undefined, + }); + + expect(state.rules).toEqual([{ name: 'rule 1' }, { name: 'rule 2' }]); + }); + + it('returns rules even if snooze settings failed to be loaded', () => { + const state = renderUseRulesTableContext({ + rules: [{ name: 'rule 1' }, { name: 'rule 2' }] as Rule[], + rulesSnoozeSettings: new Error('some error'), + }); + + expect(state.rules).toEqual([{ name: 'rule 1' }, { name: 'rule 2' }]); + }); + + it('returns rules after snooze settings loaded', () => { + const state = renderUseRulesTableContext({ + rules: [ + { id: '1', name: 'rule 1' }, + { id: '2', name: 'rule 2' }, + ] as Rule[], + rulesSnoozeSettings: [ + { id: '1', mute_all: true, snooze_schedule: [] }, + { id: '2', mute_all: false, snooze_schedule: [] }, + ], + }); + + expect(state.rules).toEqual([ + { + id: '1', + name: 'rule 1', + }, + { + id: '2', + name: 'rule 2', + }, + ]); + }); + }); + + describe('rules snooze settings', () => { + it('returns snooze settings', () => { + const state = renderUseRulesTableContext({ + rules: [ + { id: '1', name: 'rule 1' }, + { id: '2', name: 'rule 2' }, + ] as Rule[], + rulesSnoozeSettings: [ + { id: '1', mute_all: true, snooze_schedule: [] }, + { id: '2', mute_all: false, snooze_schedule: [] }, + ], + }); + + expect(state.rulesSnoozeSettings.data).toEqual({ + '1': { + id: '1', + mute_all: true, + snooze_schedule: [], + }, + '2': { + id: '2', + mute_all: false, + snooze_schedule: [], + }, + }); + }); + }); + }); }); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.tsx index f6ec9a3714f66..fa2c64f01d2d4 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/rules_table/rules_table_context.tsx @@ -15,6 +15,7 @@ import React, { useRef, useState, } from 'react'; +import { useFetchRulesSnoozeSettings } from '../../../../rule_management/api/hooks/use_fetch_rules_snooze_settings'; import { DEFAULT_RULES_TABLE_REFRESH_SETTING } from '../../../../../../common/constants'; import { invariant } from '../../../../../../common/utils/invariant'; import { URL_PARAM_KEY } from '../../../../../common/hooks/use_url_state'; @@ -24,6 +25,7 @@ import type { FilterOptions, PaginationOptions, Rule, + RuleSnoozeSettings, SortingOptions, } from '../../../../rule_management/logic/types'; import { useFindRules } from '../../../../rule_management/logic/use_find_rules'; @@ -37,6 +39,12 @@ import { import { RuleSource } from './rules_table_saved_state'; import { useRulesTableSavedState } from './use_rules_table_saved_state'; +interface RulesSnoozeSettings { + data: Record; // The key is a rule SO's id (not ruleId) + isLoading: boolean; + isError: boolean; +} + export interface RulesTableState { /** * Rules to display (sorted and paginated in case of in-memory) @@ -106,6 +114,10 @@ export interface RulesTableState { * Whether the state has its default value */ isDefault: boolean; + /** + * Rules snooze settings for the current rules + */ + rulesSnoozeSettings: RulesSnoozeSettings; } export type LoadingRuleAction = @@ -274,9 +286,27 @@ export const RulesTableContextProvider = ({ children }: RulesTableContextProvide } ); + // Fetch rules snooze settings + const { + data: rulesSnoozeSettings, + isLoading: isSnoozeSettingsLoading, + isError: isSnoozeSettingsFetchError, + refetch: refetchSnoozeSettings, + } = useFetchRulesSnoozeSettings( + rules.map((x) => x.id), + { enabled: rules.length > 0 } + ); + + const refetchRulesAndSnoozeSettings = useCallback(async () => { + const response = await refetch(); + await refetchSnoozeSettings(); + + return response; + }, [refetch, refetchSnoozeSettings]); + const actions = useMemo( () => ({ - reFetchRules: refetch, + reFetchRules: refetchRulesAndSnoozeSettings, setFilterOptions: handleFilterOptionsChange, setIsAllSelected, setIsRefreshOn, @@ -290,7 +320,7 @@ export const RulesTableContextProvider = ({ children }: RulesTableContextProvide clearFilters, }), [ - refetch, + refetchRulesAndSnoozeSettings, handleFilterOptionsChange, setIsAllSelected, setIsRefreshOn, @@ -305,10 +335,22 @@ export const RulesTableContextProvider = ({ children }: RulesTableContextProvide ] ); - const providerValue = useMemo( - () => ({ + const providerValue = useMemo(() => { + const rulesSnoozeSettingsMap = + rulesSnoozeSettings?.reduce((map, snoozeSettings) => { + map[snoozeSettings.id] = snoozeSettings; + + return map; + }, {} as Record) ?? {}; + + return { state: { rules, + rulesSnoozeSettings: { + data: rulesSnoozeSettingsMap, + isLoading: isSnoozeSettingsLoading, + isError: isSnoozeSettingsFetchError, + }, pagination: { page, perPage, @@ -335,29 +377,31 @@ export const RulesTableContextProvider = ({ children }: RulesTableContextProvide }), }, actions, - }), - [ - rules, - page, - perPage, - total, - filterOptions, - isPreflightInProgress, - isActionInProgress, - isAllSelected, - isFetched, - isFetching, - isLoading, - isRefetching, - isRefreshOn, - dataUpdatedAt, - loadingRules.ids, - loadingRules.action, - selectedRuleIds, - sortingOptions, - actions, - ] - ); + }; + }, [ + rules, + rulesSnoozeSettings, + isSnoozeSettingsLoading, + isSnoozeSettingsFetchError, + page, + perPage, + total, + filterOptions, + isPreflightInProgress, + isActionInProgress, + isAllSelected, + isFetched, + isFetching, + isLoading, + isRefetching, + isRefreshOn, + dataUpdatedAt, + loadingRules.ids, + loadingRules.action, + selectedRuleIds, + sortingOptions, + actions, + ]); return {children}; }; diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/use_columns.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/use_columns.tsx index 1296e9728d2e6..e20a2f2c70e4f 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/use_columns.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_management_ui/components/rules_table/use_columns.tsx @@ -22,6 +22,7 @@ import type { } from '../../../../../common/detection_engine/rule_monitoring'; import { isMlRule } from '../../../../../common/machine_learning/helpers'; import { getEmptyTagValue } from '../../../../common/components/empty_value'; +import { RuleSnoozeBadge } from '../../../rule_management/components/rule_snooze_badge'; import { FormattedRelativePreferenceDate } from '../../../../common/components/formatted_date'; import { SecuritySolutionLinkAnchor } from '../../../../common/components/links'; import { getRuleDetailsTabUrl } from '../../../../common/components/link_to/redirect_to_detection_engine'; @@ -106,6 +107,19 @@ const useEnabledColumn = ({ hasCRUDPermissions, startMlJobs }: ColumnsProps): Ta ); }; +const useRuleSnoozeColumn = (): TableColumn => { + return useMemo( + () => ({ + field: 'snooze', + name: i18n.COLUMN_SNOOZE, + render: (_, rule: Rule) => , + width: '100px', + sortable: false, + }), + [] + ); +}; + export const RuleLink = ({ name, id }: Pick) => { return ( @@ -248,6 +262,7 @@ export const useRulesColumns = ({ isLoadingJobs, mlJobs, }); + const snoozeColumn = useRuleSnoozeColumn(); return useMemo( () => [ @@ -317,6 +332,7 @@ export const useRulesColumns = ({ width: '18%', truncateText: true, }, + snoozeColumn, enabledColumn, ...(hasCRUDPermissions ? [actionsColumn] : []), ], @@ -324,6 +340,7 @@ export const useRulesColumns = ({ actionsColumn, enabledColumn, executionStatusColumn, + snoozeColumn, hasCRUDPermissions, ruleNameColumn, showRelatedIntegrations, diff --git a/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/translations.ts b/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/translations.ts index 9511138f78f34..487a6176969d1 100644 --- a/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/translations.ts +++ b/x-pack/plugins/security_solution/public/detections/pages/detection_engine/rules/translations.ts @@ -553,6 +553,13 @@ export const COLUMN_ENABLE = i18n.translate( } ); +export const COLUMN_SNOOZE = i18n.translate( + 'xpack.securitySolution.detectionEngine.rules.allRules.columns.snoozeTitle', + { + defaultMessage: 'Notify', + } +); + export const COLUMN_INDEXING_TIMES = i18n.translate( 'xpack.securitySolution.detectionEngine.rules.allRules.columns.indexingTimes', { diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/notify_badge/notify_badge_with_api.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/notify_badge/notify_badge_with_api.tsx index d4cd600f98ee5..238a88ba951f1 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/notify_badge/notify_badge_with_api.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/notify_badge/notify_badge_with_api.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import React, { useCallback, useState } from 'react'; +import React, { useCallback, useEffect, useState } from 'react'; import { useKibana } from '../../../../../common/lib/kibana'; import { SnoozeSchedule } from '../../../../../types'; import { loadRule } from '../../../../lib/rule_api/get_rule'; @@ -24,6 +24,13 @@ export const RulesListNotifyBadgeWithApi: React.FunctionComponent< const [ruleSnoozeInfo, setRuleSnoozeInfo] = useState(rule); + // This helps to fix problems related to rule prop updates. As component handles the loading state via isLoading prop + // rule prop is obviously not ready atm so when it's ready ruleSnoozeInfo won't be updated without useEffect so + // incorrect state will be shown. + useEffect(() => { + setRuleSnoozeInfo(rule); + }, [rule]); + const onSnoozeRule = useCallback( (snoozeSchedule: SnoozeSchedule) => { return snoozeRuleApi({ http, id: ruleSnoozeInfo.id, snoozeSchedule }); From fec63db19e9832083a3d2f4f57de8d7d7f9600df Mon Sep 17 00:00:00 2001 From: Julia Rechkunova Date: Thu, 20 Apr 2023 10:37:42 +0200 Subject: [PATCH 110/144] [Discover] Show progress indicator when a saved search embeddable is updating (#152342) Closes https://github.com/elastic/kibana/issues/152177 ## Summary This PR adds progress-style loading indicators to saved search embeddables.
View gifs Legacy table ![Feb-28-2023 14-19-13](https://user-images.githubusercontent.com/1415710/221866264-4a06680d-79bc-4bdb-9c38-2cd714f6aa77.gif) Data Grid ![Feb-28-2023 14-20-01](https://user-images.githubusercontent.com/1415710/221866274-fcaf3b75-152f-4865-9496-54557cefbd08.gif)
--- .../doc_table/doc_table_embeddable.tsx | 62 +++++++---------- .../saved_search_embeddable.test.ts | 3 + .../embeddable/saved_search_embeddable.tsx | 7 ++ .../saved_search_embeddable_base.tsx | 67 +++++++++++++++++++ .../public/embeddable/saved_search_grid.tsx | 35 ++++------ 5 files changed, 113 insertions(+), 61 deletions(-) create mode 100644 src/plugins/discover/public/embeddable/saved_search_embeddable_base.tsx diff --git a/src/plugins/discover/public/components/doc_table/doc_table_embeddable.tsx b/src/plugins/discover/public/components/doc_table/doc_table_embeddable.tsx index 7a67e7e1ecc63..38e7e772550be 100644 --- a/src/plugins/discover/public/components/doc_table/doc_table_embeddable.tsx +++ b/src/plugins/discover/public/components/doc_table/doc_table_embeddable.tsx @@ -9,7 +9,7 @@ import React, { memo, useCallback, useMemo, useRef } from 'react'; import './index.scss'; import { FormattedMessage } from '@kbn/i18n-react'; -import { EuiFlexGroup, EuiFlexItem, EuiText } from '@elastic/eui'; +import { EuiText } from '@elastic/eui'; import { SAMPLE_SIZE_SETTING } from '../../../common'; import { usePager } from '../../hooks/use_pager'; import { @@ -17,8 +17,8 @@ import { MAX_ROWS_PER_PAGE_OPTION, } from './components/pager/tool_bar_pagination'; import { DocTableProps, DocTableRenderProps, DocTableWrapper } from './doc_table_wrapper'; -import { TotalDocuments } from '../../application/main/components/total_documents/total_documents'; import { useDiscoverServices } from '../../hooks/use_discover_services'; +import { SavedSearchEmbeddableBase } from '../../embeddable/saved_search_embeddable_base'; export interface DocTableEmbeddableProps extends DocTableProps { totalHitCount: number; @@ -101,40 +101,22 @@ export const DocTableEmbeddable = (props: DocTableEmbeddableProps) => { ); return ( - - - - {shouldShowLimitedResultsWarning && ( - - - - - - )} - {Boolean(props.totalHitCount) && ( - - - - )} - - - - - - - - {showPagination && ( - + + + + ) : undefined + } + append={ + showPagination ? ( { onPageClick={onPageChange} onPageSizeChange={onPageSizeChange} /> - - )} - + ) : undefined + } + > + + ); }; diff --git a/src/plugins/discover/public/embeddable/saved_search_embeddable.test.ts b/src/plugins/discover/public/embeddable/saved_search_embeddable.test.ts index 449c83b77966c..a797a78ba6875 100644 --- a/src/plugins/discover/public/embeddable/saved_search_embeddable.test.ts +++ b/src/plugins/discover/public/embeddable/saved_search_embeddable.test.ts @@ -132,13 +132,16 @@ describe('saved search embeddable', () => { jest.spyOn(embeddable, 'updateOutput'); embeddable.render(mountpoint); + expect(render).toHaveBeenCalledTimes(1); await waitOneTick(); + expect(render).toHaveBeenCalledTimes(2); const searchProps = discoverComponent.find(SavedSearchEmbeddableComponent).prop('searchProps'); searchProps.onAddColumn!('bytes'); await waitOneTick(); expect(searchProps.columns).toEqual(['message', 'extension', 'bytes']); + expect(render).toHaveBeenCalledTimes(4); // twice per an update to show and then hide a loading indicator searchProps.onRemoveColumn!('bytes'); await waitOneTick(); diff --git a/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx b/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx index d89b98de0c93a..0e315d3b348e5 100644 --- a/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx +++ b/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx @@ -198,6 +198,8 @@ export class SavedSearchEmbeddable this.searchProps!.isLoading = true; + const wasAlreadyRendered = this.getOutput().rendered; + this.updateOutput({ ...this.getOutput(), loading: true, @@ -205,6 +207,11 @@ export class SavedSearchEmbeddable error: undefined, }); + if (wasAlreadyRendered && this.node) { + // to show a loading indicator during a refetch, we need to rerender here + this.render(this.node); + } + const parentContext = this.input.executionContext; const child: KibanaExecutionContext = { type: this.type, diff --git a/src/plugins/discover/public/embeddable/saved_search_embeddable_base.tsx b/src/plugins/discover/public/embeddable/saved_search_embeddable_base.tsx new file mode 100644 index 0000000000000..17785570b9487 --- /dev/null +++ b/src/plugins/discover/public/embeddable/saved_search_embeddable_base.tsx @@ -0,0 +1,67 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import React from 'react'; +import { css } from '@emotion/react'; +import { EuiFlexGroup, EuiFlexItem, EuiProgress } from '@elastic/eui'; +import { TotalDocuments } from '../application/main/components/total_documents/total_documents'; + +const containerStyles = css` + width: 100%; + position: relative; +`; + +export interface SavedSearchEmbeddableBaseProps { + isLoading: boolean; + totalHitCount: number; + prepend?: React.ReactElement; + append?: React.ReactElement; + dataTestSubj?: string; +} + +export const SavedSearchEmbeddableBase: React.FC = ({ + isLoading, + totalHitCount, + prepend, + append, + dataTestSubj, + children, +}) => { + return ( + + {isLoading && } + + + {Boolean(prepend) && {prepend}} + + {Boolean(totalHitCount) && ( + + + + )} + + + + {children} + + {Boolean(append) && {append}} + + ); +}; diff --git a/src/plugins/discover/public/embeddable/saved_search_grid.tsx b/src/plugins/discover/public/embeddable/saved_search_grid.tsx index 12f3e3b3f3c55..21514a61c87a9 100644 --- a/src/plugins/discover/public/embeddable/saved_search_grid.tsx +++ b/src/plugins/discover/public/embeddable/saved_search_grid.tsx @@ -6,12 +6,11 @@ * Side Public License, v 1. */ import React, { useState, memo } from 'react'; -import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; import { DataTableRecord } from '../types'; import { DiscoverGrid, DiscoverGridProps } from '../components/discover_grid/discover_grid'; -import { TotalDocuments } from '../application/main/components/total_documents/total_documents'; import './saved_search_grid.scss'; import { DiscoverGridFlyout } from '../components/discover_grid/discover_grid_flyout'; +import { SavedSearchEmbeddableBase } from './saved_search_embeddable_base'; export interface DiscoverGridEmbeddableProps extends DiscoverGridProps { totalHitCount: number; @@ -21,27 +20,19 @@ export const DataGridMemoized = memo(DiscoverGrid); export function DiscoverGridEmbeddable(props: DiscoverGridEmbeddableProps) { const [expandedDoc, setExpandedDoc] = useState(undefined); + return ( - - {Boolean(props.totalHitCount) && ( - - - - )} - - - - + + ); } From ce4798c1cade657a9db47c13b15322c8683ca866 Mon Sep 17 00:00:00 2001 From: Ignacio Rivas Date: Thu, 20 Apr 2023 11:07:27 +0200 Subject: [PATCH 111/144] [Ingest Pipelines] Add geo-grid processor (#155033) --- .../__jest__/processors/geo_grid.test.tsx | 124 +++++++++ .../__jest__/processors/processor.helpers.tsx | 6 + .../processor_form/processors/geogrid.tsx | 246 ++++++++++++++++++ .../processor_form/processors/index.ts | 1 + .../shared/map_processor_type_to_form.tsx | 19 ++ 5 files changed, 396 insertions(+) create mode 100644 x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/geo_grid.test.tsx create mode 100644 x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/geogrid.tsx diff --git a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/geo_grid.test.tsx b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/geo_grid.test.tsx new file mode 100644 index 0000000000000..93e4860eb7cc2 --- /dev/null +++ b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/geo_grid.test.tsx @@ -0,0 +1,124 @@ +/* + * 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 { act } from 'react-dom/test-utils'; +import { setup, SetupResult, getProcessorValue, setupEnvironment } from './processor.helpers'; + +const GEO_GRID_TYPE = 'geo_grid'; + +describe('Processor: GeoGrid', () => { + let onUpdate: jest.Mock; + let testBed: SetupResult; + const { httpSetup } = setupEnvironment(); + + beforeAll(() => { + jest.useFakeTimers({ legacyFakeTimers: true }); + }); + + afterAll(() => { + jest.useRealTimers(); + }); + + beforeEach(async () => { + onUpdate = jest.fn(); + + await act(async () => { + testBed = await setup(httpSetup, { + value: { + processors: [], + }, + onFlyoutOpen: jest.fn(), + onUpdate, + }); + }); + + const { component, actions } = testBed; + + component.update(); + + // Open flyout to add new processor + actions.addProcessor(); + // Add type (the other fields are not visible until a type is selected) + await actions.addProcessorType(GEO_GRID_TYPE); + }); + + test('prevents form submission if required fields are not provided', async () => { + const { + actions: { saveNewProcessor }, + form, + } = testBed; + + // Click submit button with only the type defined + await saveNewProcessor(); + + // Expect form error as "field" is a required parameter + expect(form.getErrorsMessages()).toEqual([ + 'A field value is required.', // "Field" input + 'A tile type value is required.', // "Tile type" input + ]); + }); + + test('saves with default parameter values', async () => { + const { + actions: { saveNewProcessor }, + form, + } = testBed; + + // Add "field" value + form.setInputValue('fieldNameField.input', 'test_geo_grid_processor'); + + // Add "tile tyle" field + form.setSelectValue('tileTypeField', 'geohex'); + + // Save the field + await saveNewProcessor(); + + const processors = getProcessorValue(onUpdate, GEO_GRID_TYPE); + + expect(processors[0][GEO_GRID_TYPE]).toEqual( + expect.objectContaining({ + field: 'test_geo_grid_processor', + tile_type: 'geohex', + }) + ); + }); + + test('saves with optional parameter values', async () => { + const { + actions: { saveNewProcessor }, + form, + } = testBed; + + // Add required fields + form.setInputValue('fieldNameField.input', 'test_geo_grid_processor'); + form.setSelectValue('tileTypeField', 'geohex'); + + // Add optional fields + form.setInputValue('targetField.input', 'test_target'); + form.setSelectValue('targetFormatField', 'WKT'); + form.setInputValue('parentField.input', 'parent_field'); + form.setInputValue('childrenField.input', 'children_field'); + form.setInputValue('nonChildrenField.input', 'nonchildren_field'); + form.setInputValue('precisionField.input', 'precision_field'); + + // Save the field + await saveNewProcessor(); + + const processors = getProcessorValue(onUpdate, GEO_GRID_TYPE); + + expect(processors[0][GEO_GRID_TYPE]).toEqual({ + field: 'test_geo_grid_processor', + tile_type: 'geohex', + target_field: 'test_target', + target_format: 'WKT', + parent_field: 'parent_field', + children_field: 'children_field', + non_children_field: 'nonchildren_field', + precision_field: 'precision_field', + }); + }); +}); diff --git a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/processor.helpers.tsx b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/processor.helpers.tsx index 970aaf83b5ae8..43ebf84f6ef30 100644 --- a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/processor.helpers.tsx +++ b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/__jest__/processors/processor.helpers.tsx @@ -190,4 +190,10 @@ type TestSubject = | 'droppableList.input-2' | 'prefixField.input' | 'suffixField.input' + | 'tileTypeField' + | 'targetFormatField' + | 'parentField.input' + | 'childrenField.input' + | 'nonChildrenField.input' + | 'precisionField.input' | 'patternDefinitionsField'; diff --git a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/geogrid.tsx b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/geogrid.tsx new file mode 100644 index 0000000000000..01fc6829101dc --- /dev/null +++ b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/geogrid.tsx @@ -0,0 +1,246 @@ +/* + * 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, { FunctionComponent } from 'react'; +import { i18n } from '@kbn/i18n'; +import { FormattedMessage } from '@kbn/i18n-react'; +import { EuiSpacer, EuiCode, EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; + +import { + fieldValidators, + FIELD_TYPES, + UseField, + Field, + SelectField, +} from '../../../../../../shared_imports'; + +import { FieldNameField } from './common_fields/field_name_field'; +import { IgnoreMissingField } from './common_fields/ignore_missing_field'; +import { FieldsConfig, from } from './shared'; +import { TargetField } from './common_fields/target_field'; + +const fieldsConfig: FieldsConfig = { + tile_type: { + type: FIELD_TYPES.TEXT, + defaultValue: '', + label: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.tileTypeFieldLabel', { + defaultMessage: 'Tile type', + }), + helpText: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.tileTypeFieldHelpText', { + defaultMessage: 'The type of tile from field.', + }), + validations: [ + { + validator: fieldValidators.emptyField( + i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.tileTypeRequiredError', { + defaultMessage: 'A tile type value is required.', + }) + ), + }, + ], + }, + /* Optional field config */ + parent_field: { + type: FIELD_TYPES.TEXT, + serializer: from.emptyStringToUndefined, + label: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.parentFieldLabel', { + defaultMessage: 'Parent field (optional)', + }), + helpText: ( + + ), + }, + children_field: { + type: FIELD_TYPES.TEXT, + serializer: from.emptyStringToUndefined, + label: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.childrenFieldLabel', { + defaultMessage: 'Children field (optional)', + }), + helpText: ( + + ), + }, + non_children_field: { + type: FIELD_TYPES.TEXT, + serializer: from.emptyStringToUndefined, + label: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.nonchildrenFieldLabel', { + defaultMessage: 'Non children field (optional)', + }), + helpText: ( + + ), + }, + precision_field: { + type: FIELD_TYPES.TEXT, + serializer: from.emptyStringToUndefined, + label: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.precisionFieldLabel', { + defaultMessage: 'Precision field (optional)', + }), + helpText: ( + + ), + }, + target_format: { + type: FIELD_TYPES.TEXT, + serializer: from.emptyStringToUndefined, + defaultValue: '', + label: i18n.translate('xpack.ingestPipelines.pipelineEditor.geoGrid.targetFormatFieldLabel', { + defaultMessage: 'Target format (optional)', + }), + helpText: ( + {'Geo-JSON'}, + }} + /> + ), + }, +}; + +export const GeoGrid: FunctionComponent = () => { + return ( + <> + + + {'tile_type'} }} + /> + } + /> + + + {'field'} }} + /> + } + /> + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; diff --git a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/index.ts b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/index.ts index 27f19e6c6cf9a..3512dafdd2854 100644 --- a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/index.ts +++ b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/processor_form/processors/index.ts @@ -22,6 +22,7 @@ export { Enrich } from './enrich'; export { Fail } from './fail'; export { Fingerprint } from './fingerprint'; export { Foreach } from './foreach'; +export { GeoGrid } from './geogrid'; export { GeoIP } from './geoip'; export { Grok } from './grok'; export { Gsub } from './gsub'; diff --git a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/shared/map_processor_type_to_form.tsx b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/shared/map_processor_type_to_form.tsx index 3218ca456f959..75bbd764097ad 100644 --- a/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/shared/map_processor_type_to_form.tsx +++ b/x-pack/plugins/ingest_pipelines/public/application/components/pipeline_editor/components/shared/map_processor_type_to_form.tsx @@ -28,6 +28,7 @@ import { Fail, Fingerprint, Foreach, + GeoGrid, GeoIP, Grok, Gsub, @@ -374,6 +375,24 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = { }, }), }, + geo_grid: { + FieldsComponent: GeoGrid, + docLinkPath: '/ingest-geo-grid-processor.html', + label: i18n.translate('xpack.ingestPipelines.processors.label.geogrid', { + defaultMessage: 'GeoGrid', + }), + typeDescription: i18n.translate('xpack.ingestPipelines.processors.description.geogrid', { + defaultMessage: + 'Converts geo-grid definitions of grid tiles or cells to regular bounding boxes or polygons which describe their shape.', + }), + getDefaultDescription: ({ field }) => + i18n.translate('xpack.ingestPipelines.processors.defaultDescription.geogrid', { + defaultMessage: 'Adds geo-grid data to documents based on the value of "{field}"', + values: { + field, + }, + }), + }, geoip: { FieldsComponent: GeoIP, docLinkPath: '/geoip-processor.html', From c443753025e2bf98ef583cc68fbf38c71fd82e25 Mon Sep 17 00:00:00 2001 From: Paulo Henrique Date: Thu, 20 Apr 2023 02:07:47 -0700 Subject: [PATCH 112/144] [Cloud Security Posture] Vulnerability Table and Flyout fixes (#155220) ## Summary This PR fixes the Vulnerability table empty rows error related to the table attempting to load more than the maximum number of items (500) as pointed on issue #155178. It also fixes: - Vulnerability Status API (was expecting posture_type: `vuln_mgmt` which don't exist) - Added backend support to the sorting in the Vulnerability table - Fix Vulnerability Flyout Reference URL to not point to NVD when there's no nvd record - Fixes severity component to support not show dor color when missing cvss. - Added EuiProgress component for identifying when table is refetching (as when sorting for example) - Improved Loading component to match Cloud Posture Page component and avoid flickering ### Screenshots Backend Sorting image image Missing CVSS image Maximum limit reached image Missing CVSS in flyout image --- .../public/components/cloud_posture_page.tsx | 4 +- .../components/vulnerability_badges.tsx | 12 ++- .../hooks/use_latest_vulnerabilities.tsx | 3 +- .../public/pages/vulnerabilities/utils.ts | 80 ----------------- .../pages/vulnerabilities/vulnerabilities.tsx | 69 +++++++++++---- .../vulnerability_finding_flyout.tsx | 6 +- .../vulnerability_overview_tab.tsx | 51 ++++++----- .../vulnerabilities_table_columns.ts | 85 +++++++++++++++++++ .../server/lib/check_index_status.ts | 23 +++-- .../server/routes/status/status.ts | 7 +- 10 files changed, 191 insertions(+), 149 deletions(-) create mode 100644 x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts diff --git a/x-pack/plugins/cloud_security_posture/public/components/cloud_posture_page.tsx b/x-pack/plugins/cloud_security_posture/public/components/cloud_posture_page.tsx index 7fb386ae16160..3e84cc663d0c5 100644 --- a/x-pack/plugins/cloud_security_posture/public/components/cloud_posture_page.tsx +++ b/x-pack/plugins/cloud_security_posture/public/components/cloud_posture_page.tsx @@ -92,7 +92,7 @@ export const CspNoDataPage = ({ ); }; -const defaultLoadingRenderer = () => ( +export const defaultLoadingRenderer = () => ( ( ); -const defaultNoDataRenderer = () => ( +export const defaultNoDataRenderer = () => ( { @@ -53,7 +53,7 @@ export const CVSScoreBadge = ({ score, version }: CVSScoreBadgeProps) => { }; export const SeverityStatusBadge = ({ score, status }: SeverityStatusBadgeProps) => { - const color = getCvsScoreColor(score); + const color = score ? getCvsScoreColor(score) : undefined; return (
- + {status}
); diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/hooks/use_latest_vulnerabilities.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/hooks/use_latest_vulnerabilities.tsx index 798f66fa0dfca..2869d8d7da321 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/hooks/use_latest_vulnerabilities.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/hooks/use_latest_vulnerabilities.tsx @@ -20,10 +20,11 @@ interface FindingsAggs { count: estypes.AggregationsMultiBucketAggregateBase; } -export const getFindingsQuery = ({ query }: any) => ({ +export const getFindingsQuery = ({ query, sort }: any) => ({ index: LATEST_VULNERABILITIES_INDEX_PATTERN, query, size: MAX_FINDINGS_TO_LOAD, + sort, }); export const useLatestVulnerabilities = (options: any) => { diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils.ts index 4e9c346e3969a..1e330a00b4fcf 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils.ts +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils.ts @@ -5,88 +5,8 @@ * 2.0. */ -import { EuiDataGridColumn } from '@elastic/eui'; -import { i18n } from '@kbn/i18n'; import { VectorScoreBase, Vector } from './types'; -export const vulnerabilitiesColumns = { - actions: 'actions', - vulnerability: 'vulnerability', - cvss: 'cvss', - resource: 'resource', - severity: 'severity', - package_version: 'package_version', - fix_version: 'fix_version', -}; - -const defaultColumnProps = () => ({ - isExpandable: false, - actions: { - showHide: false, - showMoveLeft: false, - showMoveRight: false, - }, -}); - -export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => { - return [ - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.actions, - initialWidth: 40, - display: [], - actions: false, - isSortable: false, - isResizable: false, - }, - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.vulnerability, - displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.vulnerability', { - defaultMessage: 'Vulnerability', - }), - initialWidth: 150, - isResizable: false, - }, - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.cvss, - displayAsText: 'CVSS', - initialWidth: 84, - isResizable: false, - }, - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.resource, - displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.resource', { - defaultMessage: 'Resource', - }), - }, - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.severity, - displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.severity', { - defaultMessage: 'Severity', - }), - initialWidth: 100, - }, - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.package_version, - displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.packageAndVersion', { - defaultMessage: 'Package and Version', - }), - }, - { - ...defaultColumnProps(), - id: vulnerabilitiesColumns.fix_version, - displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.fixVersion', { - defaultMessage: 'Fix Version', - }), - }, - ]; -}; - export const getVectorScoreList = (vectorBaseScore: VectorScoreBase) => { const result: Vector[] = []; const v2Vector = vectorBaseScore?.V2Vector; diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx index 19f0cb88aa219..bc54dd08f5126 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities.tsx @@ -9,7 +9,7 @@ import { EuiButtonIcon, EuiDataGrid, EuiDataGridCellValueElementProps, - EuiLoadingSpinner, + EuiProgress, EuiSpacer, useEuiTheme, } from '@elastic/eui'; @@ -21,7 +21,6 @@ import { LOCAL_STORAGE_PAGE_SIZE_FINDINGS_KEY } from '../../common/constants'; import { useCloudPostureTable } from '../../common/hooks/use_cloud_posture_table'; import { useLatestVulnerabilities } from './hooks/use_latest_vulnerabilities'; import { VulnerabilityRecord } from './types'; -import { getVulnerabilitiesColumnsGrid, vulnerabilitiesColumns } from './utils'; import { LATEST_VULNERABILITIES_INDEX_PATTERN } from '../../../common/constants'; import { ErrorCallout } from '../configurations/layout/error_callout'; import { FindingsSearchBar } from '../configurations/layout/findings_search_bar'; @@ -31,6 +30,13 @@ import { EmptyState } from '../../components/empty_state'; import { VulnerabilityFindingFlyout } from './vulnerabilities_finding_flyout/vulnerability_finding_flyout'; import { NoVulnerabilitiesStates } from '../../components/no_vulnerabilities_states'; import { useCspSetupStatusApi } from '../../common/api/use_setup_status_api'; +import { useLimitProperties } from '../../common/utils/get_limit_properties'; +import { LimitedResultsBar } from '../configurations/layout/findings_layout'; +import { + getVulnerabilitiesColumnsGrid, + vulnerabilitiesColumns, +} from './vulnerabilities_table_columns'; +import { defaultLoadingRenderer, defaultNoDataRenderer } from '../../components/cloud_posture_page'; const getDefaultQuery = ({ query, filters }: any): any => ({ query, @@ -48,8 +54,12 @@ export const Vulnerabilities = () => { if (error) { return ; } - if (isLoading || !data) { - return ; + if (isLoading) { + return defaultLoadingRenderer(); + } + + if (!data) { + return defaultNoDataRenderer(); } return ; @@ -74,9 +84,15 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { }); const { euiTheme } = useEuiTheme(); - const { data, isLoading } = useLatestVulnerabilities({ + const multiFieldsSort = useMemo(() => { + return sort.map(({ id, direction }: { id: string; direction: string }) => ({ + [id]: direction, + })); + }, [sort]); + + const { data, isLoading, isFetching } = useLatestVulnerabilities({ query, - sort, + sort: multiFieldsSort, enabled: !queryError, }); @@ -95,6 +111,16 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { setVulnerability(undefined); }; + const { isLastLimitedPage, limitedTotalItemCount } = useLimitProperties({ + total: data?.total, + pageIndex, + pageSize, + }); + + const columns = useMemo(() => { + return getVulnerabilitiesColumnsGrid(); + }, []); + const renderCellValue = useMemo(() => { return ({ rowIndex, columnId }: EuiDataGridCellValueElementProps) => { const vulnerabilityRow = data?.page[rowIndex] as VulnerabilityRecord; @@ -114,7 +140,7 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { ); } if (columnId === vulnerabilitiesColumns.vulnerability) { - return vulnerabilityRow.vulnerability.id || null; + return vulnerabilityRow.vulnerability.id || ''; } if (columnId === vulnerabilitiesColumns.cvss) { if (!vulnerabilityRow.vulnerability.score?.base) { @@ -131,15 +157,12 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { return vulnerabilityRow.resource?.name || null; } if (columnId === vulnerabilitiesColumns.severity) { - if ( - !vulnerabilityRow.vulnerability.score?.base || - !vulnerabilityRow.vulnerability.severity - ) { + if (!vulnerabilityRow.vulnerability.severity) { return null; } return ( ); @@ -168,11 +191,13 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { if (error) { return ; } - if (isLoading || !data?.page) { - return ; + if (isLoading) { + return defaultLoadingRenderer(); } - const columns = getVulnerabilitiesColumnsGrid(); + if (!data?.page) { + return defaultNoDataRenderer(); + } return ( <> @@ -188,6 +213,15 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { ) : ( <> + {isFetching ? ( + + ) : ( + + )} { visibleColumns: columns.map(({ id }) => id), setVisibleColumns: () => {}, }} - rowCount={data?.total} + rowCount={limitedTotalItemCount} toolbarVisibility={{ showColumnSelector: false, showDisplaySelector: false, @@ -236,7 +270,7 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { header: 'underline', }} renderCellValue={renderCellValue} - inMemory={{ level: 'sorting' }} + inMemory={{ level: 'pagination' }} sorting={{ columns: sort, onSort }} pagination={{ pageIndex, @@ -246,6 +280,7 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { onChangePage, }} /> + {isLastLimitedPage && } {/* Todo: Add Pagination */} {isVulnerabilityDetailFlyoutVisible && !!vulnerability && ( @@ -101,7 +99,7 @@ export const VulnerabilityFindingFlyout = ({ > diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx index 9ecfbdd5eb917..547bec3c9b173 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_finding_flyout/vulnerability_overview_tab.tsx @@ -118,20 +118,23 @@ const VulnerabilityOverviewTiles = ({ vulnerability }: VulnerabilityTabProps) => return ( - - - - -
- -
-
+ {vulnerability?.score?.version && vulnerability?.score?.impact && ( + + + + + +
+ +
+
+ )} (vulnerability?.cvss).map( - ([vendor, vectorScoreBase]: [string, VectorScoreBase]) => { - return ( - - - - ); - } - ); + const cvssScores: JSX.Element[] = vulnerability?.cvss + ? Object.entries(vulnerability.cvss).map( + ([vendor, vectorScoreBase]: [string, VectorScoreBase]) => { + return ( + + + + ); + } + ) + : []; const horizontalStyle = css` margin-block: 12px; diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts new file mode 100644 index 0000000000000..88a6a8e569c80 --- /dev/null +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/vulnerabilities_table_columns.ts @@ -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 { EuiDataGridColumn } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; + +export const vulnerabilitiesColumns = { + actions: 'actions', + vulnerability: 'vulnerability.id', + cvss: 'vulnerability.score.base', + resource: 'resource.name', + severity: 'vulnerability.severity', + package_version: 'vulnerability.package.name', + fix_version: 'vulnerability.package.fixed_version', +}; + +const defaultColumnProps = () => ({ + isExpandable: false, + actions: { + showHide: false, + showMoveLeft: false, + showMoveRight: false, + }, +}); + +export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.actions, + initialWidth: 40, + display: [], + actions: false, + isSortable: false, + isResizable: false, + }, + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.vulnerability, + displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.vulnerability', { + defaultMessage: 'Vulnerability', + }), + initialWidth: 150, + isResizable: false, + }, + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.cvss, + displayAsText: 'CVSS', + initialWidth: 84, + isResizable: false, + }, + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.resource, + displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.resource', { + defaultMessage: 'Resource', + }), + }, + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.severity, + displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.severity', { + defaultMessage: 'Severity', + }), + initialWidth: 100, + }, + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.package_version, + displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.packageAndVersion', { + defaultMessage: 'Package and Version', + }), + }, + { + ...defaultColumnProps(), + id: vulnerabilitiesColumns.fix_version, + displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.fixVersion', { + defaultMessage: 'Fix Version', + }), + }, +]; diff --git a/x-pack/plugins/cloud_security_posture/server/lib/check_index_status.ts b/x-pack/plugins/cloud_security_posture/server/lib/check_index_status.ts index 47ab871dc9d21..273ead42f4443 100644 --- a/x-pack/plugins/cloud_security_posture/server/lib/check_index_status.ts +++ b/x-pack/plugins/cloud_security_posture/server/lib/check_index_status.ts @@ -12,22 +12,19 @@ export const checkIndexStatus = async ( esClient: ElasticsearchClient, index: string, logger: Logger, - postureType: PostureTypes = 'all' + postureType?: PostureTypes ): Promise => { - const query = - postureType === 'all' - ? { - match_all: {}, - } - : { - bool: { - filter: { - term: { - 'rule.benchmark.posture_type': postureType, - }, + const query = !postureType + ? undefined + : { + bool: { + filter: { + term: { + 'rule.benchmark.posture_type': postureType, }, }, - }; + }, + }; try { const queryResult = await esClient.search({ diff --git a/x-pack/plugins/cloud_security_posture/server/routes/status/status.ts b/x-pack/plugins/cloud_security_posture/server/routes/status/status.ts index aa98b0e5e5bfd..69ae5eae2a414 100644 --- a/x-pack/plugins/cloud_security_posture/server/routes/status/status.ts +++ b/x-pack/plugins/cloud_security_posture/server/routes/status/status.ts @@ -167,12 +167,7 @@ export const getCspStatus = async ({ checkIndexStatus(esClient, FINDINGS_INDEX_PATTERN, logger, 'kspm'), checkIndexStatus(esClient, BENCHMARK_SCORE_INDEX_DEFAULT_NS, logger, 'kspm'), - checkIndexStatus( - esClient, - LATEST_VULNERABILITIES_INDEX_DEFAULT_NS, - logger, - VULN_MGMT_POLICY_TEMPLATE - ), + checkIndexStatus(esClient, LATEST_VULNERABILITIES_INDEX_DEFAULT_NS, logger), checkIndexStatus(esClient, VULNERABILITIES_INDEX_PATTERN, logger, VULN_MGMT_POLICY_TEMPLATE), packageService.asInternalUser.getInstallation(CLOUD_SECURITY_POSTURE_PACKAGE_NAME), From 4d4acd992e5d57d266746ccea140e17a80746620 Mon Sep 17 00:00:00 2001 From: Elena Stoeva <59341489+ElenaStoeva@users.noreply.github.com> Date: Thu, 20 Apr 2023 11:17:23 +0100 Subject: [PATCH 113/144] [Watcher] Improve usability of Simulate flyout (#153531) Closes https://github.com/elastic/kibana/issues/153327 This PR adds a "Status" column to the table in the Simulate flyout in Watcher and adds an element on top which shows whether the condition is met. When the condition is met, the Status column shows the `status` value of each action from the `result.actions` field in the Json below the table. When the conditon is not met, the Status column should display "not simulated"/"not executed"/"throttled" depending on the mode of the action (see screenshots below). Screenshot 2023-03-30 at 15 16 25 Screenshot 2023-03-30 at 15 17 08 **How to test:** 1. Add some sample data set so that you have a certain number of hits. 2. Go to Watcher -> Create advanced watch. 3. In the Json editor, modify the condition so that it is or is not met. 4. Click on the Simulate tab and select some mode for each action. 5. Click "Simulate watch" and verify that the flyout correctly shows if the condition is met or not and check if the Status column contains the correct value. 6. Repeat the steps above with different action mode values and for both cases when the condition is and is not met. https://user-images.githubusercontent.com/59341489/228868091-2e3d7775-efea-4bea-9257-a2a4ec00436e.mov ### Checklist Delete any items that are not applicable to this PR. - [X] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [X] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [X] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../helpers/watch_create_json_page.helpers.ts | 5 +- .../watch_create_json_page.test.ts | 94 +++++++++++++++++++ .../simulate_watch_results_flyout.tsx | 79 ++++++++++++++-- 3 files changed, 170 insertions(+), 8 deletions(-) diff --git a/x-pack/plugins/watcher/__jest__/client_integration/helpers/watch_create_json_page.helpers.ts b/x-pack/plugins/watcher/__jest__/client_integration/helpers/watch_create_json_page.helpers.ts index c526ed75beb71..6b70f3bdece88 100644 --- a/x-pack/plugins/watcher/__jest__/client_integration/helpers/watch_create_json_page.helpers.ts +++ b/x-pack/plugins/watcher/__jest__/client_integration/helpers/watch_create_json_page.helpers.ts @@ -81,4 +81,7 @@ export type TestSubjects = | 'simulateResultsFlyoutTitle' | 'simulateWatchButton' | 'tab' - | 'triggeredTimeInput'; + | 'triggeredTimeInput' + | 'simulateResultsTable' + | 'conditionMetStatus' + | 'conditionNotMetStatus'; diff --git a/x-pack/plugins/watcher/__jest__/client_integration/watch_create_json_page.test.ts b/x-pack/plugins/watcher/__jest__/client_integration/watch_create_json_page.test.ts index 402b52bf89670..f79a72b456afb 100644 --- a/x-pack/plugins/watcher/__jest__/client_integration/watch_create_json_page.test.ts +++ b/x-pack/plugins/watcher/__jest__/client_integration/watch_create_json_page.test.ts @@ -274,6 +274,100 @@ describe(' create route', () => { expect(find('simulateResultsFlyoutTitle').text()).toEqual('Simulation results'); }); }); + + describe('results flyout', () => { + const actionModes = ['simulate', 'force_simulate', 'execute', 'force_execute', 'skip']; + const actionModeStatusesConditionMet = [ + 'simulated', + 'simulated', + 'executed', + 'executed', + 'throttled', + ]; + const actionModeStatusesConditionNotMet = [ + 'not simulated', + 'not simulated', + 'not executed', + 'not executed', + 'throttled', + ]; + const conditionMetStatuses = [true, false]; + const ACTION_NAME = 'my-logging-action'; + const ACTION_TYPE = 'logging'; + const ACTION_STATE = 'OK'; + + actionModes.forEach((actionMode, i) => { + conditionMetStatuses.forEach((conditionMet) => { + describe('for ' + actionMode + ' action mode', () => { + describe( + conditionMet ? 'when the condition is met' : 'when the condition is not met', + () => { + beforeEach(async () => { + const { actions, component, form } = testBed; + form.setInputValue('actionModesSelect', actionMode); + + httpRequestsMockHelpers.setLoadExecutionResultResponse({ + watchHistoryItem: { + details: { + result: { + condition: { + met: conditionMet, + }, + actions: + (conditionMet && [ + { + id: ACTION_NAME, + type: ACTION_TYPE, + status: conditionMet && actionModeStatusesConditionMet[i], + }, + ]) || + [], + }, + }, + watchStatus: { + actionStatuses: [ + { + id: ACTION_NAME, + state: ACTION_STATE, + }, + ], + }, + }, + }); + + await act(async () => { + actions.clickSimulateButton(); + }); + component.update(); + }); + + test('should set the correct condition met status', () => { + const { exists } = testBed; + expect(exists('conditionMetStatus')).toBe(conditionMet); + expect(exists('conditionNotMetStatus')).toBe(!conditionMet); + }); + + test('should set the correct values in the table', () => { + const { table } = testBed; + const { tableCellsValues } = table.getMetaData('simulateResultsTable'); + const row = tableCellsValues[0]; + expect(row).toEqual([ + ACTION_NAME, + ACTION_TYPE, + actionMode, + ACTION_STATE, + '', + conditionMet + ? actionModeStatusesConditionMet[i] + : actionModeStatusesConditionNotMet[i], + ]); + }); + } + ); + }); + }); + }); + }); }); }); }); diff --git a/x-pack/plugins/watcher/public/application/sections/watch_edit_page/components/json_watch_edit/simulate_watch_results_flyout.tsx b/x-pack/plugins/watcher/public/application/sections/watch_edit_page/components/json_watch_edit/simulate_watch_results_flyout.tsx index 37aedcb0da08f..e48202e80c304 100644 --- a/x-pack/plugins/watcher/public/application/sections/watch_edit_page/components/json_watch_edit/simulate_watch_results_flyout.tsx +++ b/x-pack/plugins/watcher/public/application/sections/watch_edit_page/components/json_watch_edit/simulate_watch_results_flyout.tsx @@ -14,6 +14,7 @@ import { EuiFlyout, EuiFlyoutBody, EuiFlyoutHeader, + EuiIcon, EuiSpacer, EuiText, EuiTitle, @@ -23,7 +24,7 @@ import { ExecutedWatchDetails, ExecutedWatchResults, } from '../../../../../../common/types/watch_types'; -import { ActionStateBadge, WatchStateBadge, SectionError } from '../../../../components'; +import { ActionStateBadge, SectionError } from '../../../../components'; import { getTypeFromAction } from '../../watch_edit_actions'; import { WatchContext } from '../../watch_context'; @@ -42,6 +43,36 @@ export const SimulateWatchResultsFlyout = ({ const { actionModes } = executeDetails; + const conditionNotMetActionStatus = (mode: string) => { + switch (mode) { + case 'simulate': + case 'force_simulate': + return i18n.translate( + 'xpack.watcher.sections.watchEdit.simulateResults.table.statusColumnValue.notSimulated', + { + defaultMessage: 'not simulated', + } + ); + case 'execute': + case 'force_execute': + return i18n.translate( + 'xpack.watcher.sections.watchEdit.simulateResults.table.statusColumnValue.notExecuted', + { + defaultMessage: 'not executed', + } + ); + case 'skip': + return i18n.translate( + 'xpack.watcher.sections.watchEdit.simulateResults.table.statusColumnValue.throttled', + { + defaultMessage: 'throttled', + } + ); + default: + return ''; + } + }; + const getTableData = () => { const actions = watch.watch && watch.watch.actions; if (executeResults && actions) { @@ -49,12 +80,18 @@ export const SimulateWatchResultsFlyout = ({ executeResults.watchStatus && executeResults.watchStatus.actionStatuses; return Object.keys(actions).map((actionKey) => { const actionStatus = actionStatuses.find((status) => status.id === actionKey); + const isConditionMet = executeResults.details?.result?.condition.met; return { actionId: actionKey, actionType: getTypeFromAction(actions[actionKey]), actionMode: actionModes[actionKey], actionState: actionStatus && actionStatus.state, actionReason: actionStatus && actionStatus.lastExecutionReason, + actionStatus: + (isConditionMet && + executeResults.details.result.actions.find((action: any) => action.id === actionKey) + .status) || + conditionNotMetActionStatus(actionModes[actionKey]), }; }); } @@ -116,6 +153,15 @@ export const SimulateWatchResultsFlyout = ({ } ), }, + { + field: 'actionStatus', + name: i18n.translate( + 'xpack.watcher.sections.watchEdit.simulateResults.table.statusColumnLabel', + { + defaultMessage: 'Status', + } + ), + }, ]; const flyoutTitle = ( @@ -156,10 +202,25 @@ export const SimulateWatchResultsFlyout = ({ return null; } - const { - watchStatus: { state }, - details, - } = executeResults; + const { details } = executeResults; + + const conditionMetStatus = (details?.result?.condition.met && ( + <> + {' '} + + + )) || ( + <> + {' '} + + + ); return ( {flyoutTitle} - + {conditionMetStatus} @@ -189,7 +250,11 @@ export const SimulateWatchResultsFlyout = ({ - + )} From 4e8e6cd2f758c0d430a22b6725113975658d80e3 Mon Sep 17 00:00:00 2001 From: Daniel Mitterdorfer Date: Thu, 20 Apr 2023 12:42:14 +0200 Subject: [PATCH 114/144] [Profiling] Avoid duplicate mapping of host ips (#155353) Previously we had mapped host ips as keywords as well as ips in order to work around #140266. This has been fixed with #154111 so we can rely on the IP field and remove the duplicate. Relates #154111 Relates #140266 --- .../es_archivers/profiling_events_5pow01.json | 1436 ++-- .../es_archivers/profiling_events_5pow02.json | 278 +- .../es_archivers/profiling_events_5pow03.json | 42 +- .../es_archivers/profiling_events_5pow04.json | 8 +- .../es_archivers/profiling_events_5pow05.json | 2 +- .../es_archivers/profiling_events_5pow06.json | 2 +- .../es_archivers/profiling_events_all.json | 7068 ++++++++--------- .../component_template_profiling_events.json | 3 - 8 files changed, 4418 insertions(+), 4421 deletions(-) diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json index 2fb57821610f8..f571b9681d751 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow01.json @@ -1,1436 +1,1436 @@ {"create": {"_index": "profiling-events-5pow01", "_id": "stUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "RdYU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "xmUU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eqelKqbeHiTw1Jlw68liwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eqelKqbeHiTw1Jlw68liwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "It8U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dVb-MiyMMGjQnN4CNy5W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dVb-MiyMMGjQnN4CNy5W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "XtYU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YVVpCpnnAN7nqi22_B110A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YVVpCpnnAN7nqi22_B110A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "LdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "KdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-5pow01", "_id": "MdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrLvz0R4S4ONxlxpZkei3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrLvz0R4S4ONxlxpZkei3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "N9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbOVGyx5XatnK0SRKgRKUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbOVGyx5XatnK0SRKgRKUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "NNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3jLco5iklv9rjHlmxCtzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3jLco5iklv9rjHlmxCtzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "KNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yZrBKxKhbw4I5T2D2ia0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yZrBKxKhbw4I5T2D2ia0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "ENYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "J-AV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydVfMca4pTKtV_nMQvo2kQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydVfMca4pTKtV_nMQvo2kQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YeAV7YYByh-A-BiyGi5B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YM8VOmaiYixjkGqh3aYLRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YM8VOmaiYixjkGqh3aYLRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "6NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53PCQ4S8hGae7xDUxkptJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53PCQ4S8hGae7xDUxkptJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "7dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qwzw6oIfyawdflY_bB-eDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qwzw6oIfyawdflY_bB-eDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-5pow01", "_id": "qWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "smYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "qGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_CuNkg8IjplIBsYDC3MqZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_CuNkg8IjplIBsYDC3MqZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "UmYV7YYBO2e_P_Qbhkg5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tXy3kfx8JYVKb1u9vHWM4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tXy3kfx8JYVKb1u9vHWM4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "1WYV7YYBO2e_P_Qbg0Jm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4n3YuffBdoPIiHaB1UC0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4n3YuffBdoPIiHaB1UC0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} {"create": {"_index": "profiling-events-5pow01", "_id": "RWYV7YYBO2e_P_QbmFzZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCa7vDPVTmdjv0FBSHomYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCa7vDPVTmdjv0FBSHomYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "bNcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MxaBJ5vAlZJbFL1ZFA-tNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MxaBJ5vAlZJbFL1ZFA-tNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "hmYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kk6lQFGFmE5-o8l9P-PnVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kk6lQFGFmE5-o8l9P-PnVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "19cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "StcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuDdBF0iwQiPnskDDqWYwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuDdBF0iwQiPnskDDqWYwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "1NcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9BGZHTzs6oj_j1YiF-r26w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9BGZHTzs6oj_j1YiF-r26w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "1dcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "jdcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "--AV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "k2YV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPA9NkH3378cVYxn3yS3sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPA9NkH3378cVYxn3yS3sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "JuAV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_2Gi4xXPiktjMQVPnPo6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_2Gi4xXPiktjMQVPnPo6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "VtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jY6an4TJNzicxfsoO4aEFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jY6an4TJNzicxfsoO4aEFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "FtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QhuAxDp-mAXxSlQCTHCDJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QhuAxDp-mAXxSlQCTHCDJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "XdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jR2WafQ5aT4KiR_9VxLM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jR2WafQ5aT4KiR_9VxLM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "leEW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHeythk0HZH6YmI9vQ5rRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHeythk0HZH6YmI9vQ5rRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-5pow01", "_id": "iGYW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sdYsXSOFq3ZV5V3ZTd5OZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sdYsXSOFq3ZV5V3ZTd5OZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "8uEW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Jekw_GmjkRbs2II8a1AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Jekw_GmjkRbs2II8a1AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "CWYW7YYBO2e_P_QbP9-R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6Keqe1sXyk36jAJ3WN1sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6Keqe1sXyk36jAJ3WN1sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "3tcW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7uqXjdMn8cKJH0c7LBBRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7uqXjdMn8cKJH0c7LBBRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "ueEW7YYByh-A-BiyRDN8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4lcZDimr4HL3ZJBoS4zaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4lcZDimr4HL3ZJBoS4zaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "hmYW7YYBO2e_P_QbP91J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "CmYW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["18dt2YlDI5SQuyr5uDM2hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["18dt2YlDI5SQuyr5uDM2hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "W-EW7YYByh-A-Biyc1w8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKhp4VrunMdJZkEZm9IkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKhp4VrunMdJZkEZm9IkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "7uEW7YYByh-A-BiyfVwi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "jdcW7YYBBkbVtX3nf735"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAkV_97hJaROs8HKSG_NUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAkV_97hJaROs8HKSG_NUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "QOEW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "1NcW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "mGcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "peEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "6GcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHZvNVXXuZ4FaC6U3PxZfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHZvNVXXuZ4FaC6U3PxZfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "p9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "tdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "D-EW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oFFMBClb7YDKbss0-D49Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oFFMBClb7YDKbss0-D49Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "pGcW7YYBO2e_P_Qb0Fc4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AoxNz9Y_PEGGL6UFqTd8NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AoxNz9Y_PEGGL6UFqTd8NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "pWcW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "uOEW7YYByh-A-BiyzrTg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgbYFeQR5UbL1ILQeJXsrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgbYFeQR5UbL1ILQeJXsrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "79cW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "vuEW7YYByh-A-Biy4MbF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "udgW7YYBBkbVtX3n2wD9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "zeEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dl4T3akeu1eU8F-sCfOUww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dl4T3akeu1eU8F-sCfOUww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "x-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "xuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8O4Oo3VCILgT6pGMxLQiaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8O4Oo3VCILgT6pGMxLQiaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "yOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "BdgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKNw_XLZvm5U0bSAHP5Qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKNw_XLZvm5U0bSAHP5Qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "y-EX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KbIwDU7bE16YP2ns0ZA4pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KbIwDU7bE16YP2ns0ZA4pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "KmcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3HYswCLIguo6i_KRnM6AYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3HYswCLIguo6i_KRnM6AYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "B-EX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbVr5WH8AZycf302C0td3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbVr5WH8AZycf302C0td3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-5pow01", "_id": "5WcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zii4wg2T59k_VWZoCJQUDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zii4wg2T59k_VWZoCJQUDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "TOEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "BtgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XiTL4w9S8KltLkj8tdlEIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XiTL4w9S8KltLkj8tdlEIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "hGcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8j8JNdpbtu6ZzDCgLiiQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8j8JNdpbtu6ZzDCgLiiQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "zOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "0uEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "uWcX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "A2cX7YYBO2e_P_QbObof"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7QawPKHJF79qrjka8nzLbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7QawPKHJF79qrjka8nzLbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "Q-IX7YYByh-A-BiyOQRi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsE2Ss7VQy9Y1xUvJ14HPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsE2Ss7VQy9Y1xUvJ14HPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "9-IX7YYByh-A-BiyOALn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "i9gX7YYBBkbVtX3nSErh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXipnObSe0dCYjfUl0jbxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXipnObSe0dCYjfUl0jbxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YeIX7YYByh-A-BiyShVm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LibGknFXAn9fd0n8hPZURw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LibGknFXAn9fd0n8hPZURw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-5pow01", "_id": "S2cX7YYBO2e_P_QbScVi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "kOIX7YYByh-A-BiyZymA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "-dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W4eaTfNJQRBDVqF5v5x57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W4eaTfNJQRBDVqF5v5x57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "_tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x92QEPdFkYeW4x8Mit4TyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x92QEPdFkYeW4x8Mit4TyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "-tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "BNgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "6eIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV8E-OYfEEKqtlp023Tqng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV8E-OYfEEKqtlp023Tqng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YmcX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OQKwd7_zKSX8IYHdhu4OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "702806677431836"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OQKwd7_zKSX8IYHdhu4OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "702806677431836"} {"create": {"_index": "profiling-events-5pow01", "_id": "5NgX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGf4xT_jVUAejwXntzL3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGf4xT_jVUAejwXntzL3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "puIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "LNkY7YYBBkbVtX3nJQGU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-5pow01", "_id": "w-IY7YYByh-A-BiyJL2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "K2gY7YYBO2e_P_QbNYgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FcDW-9IPZrZmO_AgR-UVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FcDW-9IPZrZmO_AgR-UVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "1dkY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3wubxICfJSY8FNVzGkEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3wubxICfJSY8FNVzGkEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "-GgY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "a-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["32T4OaSlAZyX3gvcGH9I7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["32T4OaSlAZyX3gvcGH9I7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "Z-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "aeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "TmkY7YYBO2e_P_Qb4CzM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "0dkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xefg2tu-dTR7fu4bq6TlVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xefg2tu-dTR7fu4bq6TlVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "MGkY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4nXxkGYVgHbeGTI3oHepdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4nXxkGYVgHbeGTI3oHepdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "G9kY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bjA-twM-arP4DofwAmuiCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bjA-twM-arP4DofwAmuiCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "P-MY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "qGkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "0tkY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "mdkY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nUFT-4VjV49edA4VHVD06g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nUFT-4VjV49edA4VHVD06g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "OOMZ7YYByh-A-BiyIY5d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "TNkZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlNxGYc1KQXo_krOBCj9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlNxGYc1KQXo_krOBCj9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "P2kZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "PN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} {"create": {"_index": "profiling-events-5pow01", "_id": "5d8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5hG8KKglQrQ3G7KSXA2QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5hG8KKglQrQ3G7KSXA2QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "Qt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "M98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-D2Xan0xr7Iyy5r8CY20RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-D2Xan0xr7Iyy5r8CY20RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "KtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ed2Wt5gOq97H8-8youFpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ed2Wt5gOq97H8-8youFpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "IdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "DdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "D9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "GdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfRadBAJgVIPCs4sRWRCsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfRadBAJgVIPCs4sRWRCsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-5pow01", "_id": "CtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "KdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHgSIcaSuS6XNpC67kiXTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHgSIcaSuS6XNpC67kiXTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "LNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "INYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDv5HwoOhhJwuGtzx9aiqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDv5HwoOhhJwuGtzx9aiqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "K9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKfrUz68RAX4mdNriJ73lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKfrUz68RAX4mdNriJ73lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "GtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "JtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TrAEEkzHCQIrkyMsb-wF4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TrAEEkzHCQIrkyMsb-wF4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "MNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6BMEwaZdEOxcFFELpK3iqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6BMEwaZdEOxcFFELpK3iqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "PGYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJPjpnk4438S9AxhBdL7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJPjpnk4438S9AxhBdL7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "1WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "4GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "3GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6YWns3NF2PVmevxSMrfdSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6YWns3NF2PVmevxSMrfdSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "32YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oe_nHyIGjMEfD9kwUevsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oe_nHyIGjMEfD9kwUevsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "3OAW7YYByh-A-BiyAu7q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "KmYW7YYBO2e_P_QbAabd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVbkX_ePnzMrnOl-TBl5FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVbkX_ePnzMrnOl-TBl5FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-5pow01", "_id": "oGYW7YYBO2e_P_QbAKJr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bawlMqqRTjOm5tziwkLcwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bawlMqqRTjOm5tziwkLcwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "--AW7YYByh-A-BiyEfoC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "j2YW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "I2YW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "fGgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyeCF78Ljkj_liCk-aIaJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyeCF78Ljkj_liCk-aIaJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "8mgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "YuIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "LdgX7YYBBkbVtX3nua7-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "x9gX7YYBBkbVtX3nuq9-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "XuIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QNP7PZqJy6OGXmZc1fiP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QNP7PZqJy6OGXmZc1fiP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "WuIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "SeIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "fuIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "pmgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} {"create": {"_index": "profiling-events-5pow01", "_id": "xOIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "dOIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "s9gY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WSjAZWkrBfhyqCpr7c2wpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WSjAZWkrBfhyqCpr7c2wpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "r9gY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_9qdqX3M61Erctug7dsAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_9qdqX3M61Erctug7dsAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "1tgY7YYBBkbVtX3nI__a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pixjUDno8EQPnhCn1ap_SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pixjUDno8EQPnhCn1ap_SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "nOIY7YYByh-A-BiyI7hA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYzllkhJBtq1_HQGHScByA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYzllkhJBtq1_HQGHScByA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "pWgY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ium0M6gtUd_sKOi4qCX1xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ium0M6gtUd_sKOi4qCX1xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "itkY7YYBBkbVtX3nVRw-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mfKeyebNB7GEjVrotPPKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mfKeyebNB7GEjVrotPPKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "7NkY7YYBBkbVtX3nUxhO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcrgeMf65aey4TtBdOxT8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcrgeMf65aey4TtBdOxT8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "CWgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "2GgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oqbb6FakSaKBSmm5UVh16A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oqbb6FakSaKBSmm5UVh16A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "6uIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ESbYg3aZAaH86uOl-CijNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ESbYg3aZAaH86uOl-CijNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "B2gY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "BmgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8nNNC34bhCi_Q3XemgSrmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8nNNC34bhCi_Q3XemgSrmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "BWgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HPhJ76yG2kEeQYFKH7p-MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HPhJ76yG2kEeQYFKH7p-MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "buMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PF9c3wvWuSHWSRQ7lpy-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PF9c3wvWuSHWSRQ7lpy-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "cOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8wMbNj2bmC_k-f1sjP1tvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "22781733237518"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8wMbNj2bmC_k-f1sjP1tvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "22781733237518"} {"create": {"_index": "profiling-events-5pow01", "_id": "i2gY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBeDaSzmKMf_8mF4P9fF3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBeDaSzmKMf_8mF4P9fF3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "OWgY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IdBN0EzRB0f6Qp7f7scKtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IdBN0EzRB0f6Qp7f7scKtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "NdkY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L3YM-JzWQGZBl6Hww0qX5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L3YM-JzWQGZBl6Hww0qX5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "C2gY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "gNkY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "lmgY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVg35eksppyHad0lI1eXKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVg35eksppyHad0lI1eXKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "a2gY7YYBO2e_P_Qbr_2i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "89kY7YYBBkbVtX3nsW-T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "UNkY7YYBBkbVtX3npWjG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "iGkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "pWkY7YYBO2e_P_QbwxTd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMABXmd9W1xztmohmhT4jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMABXmd9W1xztmohmhT4jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "f9kY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdOVIhl_n9Wje--mxIItNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdOVIhl_n9Wje--mxIItNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "a-MY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "82kY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEm7NQBrTH5QHQqIE3fDrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEm7NQBrTH5QHQqIE3fDrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "GtkY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "rOMY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQv8Jjxrz6pIHbJnxDZTDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQv8Jjxrz6pIHbJnxDZTDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "s2kZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AG_6FvO14ax3UdwVieto8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AG_6FvO14ax3UdwVieto8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "J-MZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOL7hTlazWG39CR6gZV56w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOL7hTlazWG39CR6gZV56w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "BGkZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "deMZ7YYByh-A-BiyLpYf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m6Tpe3Eo4Y_x5AamWL8GLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m6Tpe3Eo4Y_x5AamWL8GLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "IN8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "gGUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvp6aS0dEuRo-26h2BBtzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvp6aS0dEuRo-26h2BBtzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "mWUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "sNUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CryaWZekzG3MnYg7CufHdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CryaWZekzG3MnYg7CufHdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "K98U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "498U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0-Jsd5mQCWnt_-lPVIShHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0-Jsd5mQCWnt_-lPVIShHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "OtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLT0UoH40niOjk-XVme7dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLT0UoH40niOjk-XVme7dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "GWUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "H98U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81I56QjbyDYSIFcetHM2Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81I56QjbyDYSIFcetHM2Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "oN8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJqYLUumz9zXvS_kxlOwXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJqYLUumz9zXvS_kxlOwXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "D2UU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2ssOcOjXCCaYX7ZddtppA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2ssOcOjXCCaYX7ZddtppA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "5GUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j_ZkdluVAC4IXHAbI6Pmjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j_ZkdluVAC4IXHAbI6Pmjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "Ot8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFGWThWg3zgxDL3xxQAwYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFGWThWg3zgxDL3xxQAwYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "oNYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28flplgbX9OoTxrrq9LhNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28flplgbX9OoTxrrq9LhNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-5pow01", "_id": "Md8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAJ3qCHOXo3xE1EGVnJuHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAJ3qCHOXo3xE1EGVnJuHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "Rd8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRYK-waaBK93YQxC-u6FpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRYK-waaBK93YQxC-u6FpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "4t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PYBUfV4nZR3PAgyIKhIwDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PYBUfV4nZR3PAgyIKhIwDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "RN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypQufrPd-vWE7YGaekcTfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypQufrPd-vWE7YGaekcTfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "JdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFbB3COAmbAYRaYoh99KYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFbB3COAmbAYRaYoh99KYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "JtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaCen5lChBQlFEf5iOW4fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaCen5lChBQlFEf5iOW4fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "498U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nixBByAIlNzP6S-DgkxohA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nixBByAIlNzP6S-DgkxohA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "198U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUWb9UKO7qICsUy_ccfdaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUWb9UKO7qICsUy_ccfdaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "N98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "Od8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyNpeOOTv9ufpl_gGUbV4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyNpeOOTv9ufpl_gGUbV4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "R98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k9vLKRFLFVoj2RZU6JVbBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k9vLKRFLFVoj2RZU6JVbBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "Ot8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "QN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "I9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SOHLJ-nmGdCO3sK7plOv2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SOHLJ-nmGdCO3sK7plOv2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "CdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "JNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "FtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mxx8ugWwWszTb7eJBegR_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mxx8ugWwWszTb7eJBegR_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "GNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjHl88ojwoksS7PDXJBaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjHl88ojwoksS7PDXJBaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "J9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZSMUUx94Y3yXU6mhbsNCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZSMUUx94Y3yXU6mhbsNCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "N9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHUuby7f7Ki-mhiDAG_3SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHUuby7f7Ki-mhiDAG_3SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "EtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-f-8xMNzAVnOWhCPzAg7Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-f-8xMNzAVnOWhCPzAg7Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "FdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rmqpLjKhFVehwbUcabYxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rmqpLjKhFVehwbUcabYxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "xOAV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YeAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "aOAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y2rsoafmE6xytYWP5sYCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "66636157595941"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y2rsoafmE6xytYWP5sYCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "66636157595941"} {"create": {"_index": "profiling-events-5pow01", "_id": "MNYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EM9AISJikuWZSi4uSs5f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EM9AISJikuWZSi4uSs5f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "8eAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kOsAFOokw3TMOocYazB7hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kOsAFOokw3TMOocYazB7hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "QdYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOsagAt-XXDxs5XGCBbstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOsagAt-XXDxs5XGCBbstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "yeAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7NiiM2JcpyLYptGtnS-lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7NiiM2JcpyLYptGtnS-lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "cmUV7YYBO2e_P_QbG-2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "EGUV7YYBO2e_P_QbG-_2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "8dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5ViqVqqhAWPiT5DHT3ocA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5ViqVqqhAWPiT5DHT3ocA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "6dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "7tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yI2e6HYAfhTSJaxYuulCOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yI2e6HYAfhTSJaxYuulCOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "q2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "r2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "pWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xVGi1i7nlJYkT__QgtZrJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xVGi1i7nlJYkT__QgtZrJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "adYV7YYBBkbVtX3nV7Q-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "GmYV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIUTQnmo7hmDvvAn77UZ1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIUTQnmo7hmDvvAn77UZ1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "RdYV7YYBBkbVtX3nWrnf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "RWYV7YYBO2e_P_QbWSCB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Sz3zcn_jRruHSw5ug1i1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Sz3zcn_jRruHSw5ug1i1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "uuAV7YYByh-A-BiyWmE2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "mtYV7YYBBkbVtX3nWreQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENrq2_MBwld_ERQVMIbQlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENrq2_MBwld_ERQVMIbQlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "4mYV7YYBO2e_P_QbWyOI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_0hpIuT4vi1WRoDxA9V3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_0hpIuT4vi1WRoDxA9V3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "OmYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "1GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPAXeu9JRh62VS0TzctJEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPAXeu9JRh62VS0TzctJEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "4WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "12YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NYvRSd87djiQAuRZMHZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NYvRSd87djiQAuRZMHZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "2GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "idYV7YYBBkbVtX3nheD0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NHR-vq-GiKf-T9dij8d0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NHR-vq-GiKf-T9dij8d0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "69YV7YYBBkbVtX3nh-MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5hO63TnTaHm6rWDJ9tLlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5hO63TnTaHm6rWDJ9tLlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "f-AV7YYByh-A-Biyo5MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZfWmwYaJIIOUGCRBPlr6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZfWmwYaJIIOUGCRBPlr6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "99YV7YYBBkbVtX3nlvPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "29cV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "PGYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB6F-U_ns7SY5JIwmO_kFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB6F-U_ns7SY5JIwmO_kFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "KGYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "1tcV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dJyQsD0pMmiwvo0yyQz-Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dJyQsD0pMmiwvo0yyQz-Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YuAV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "aWYV7YYBO2e_P_Qb44h4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "NWYW7YYBO2e_P_QbBq4R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VAqxR_4yWhELwHpSX2G6ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VAqxR_4yWhELwHpSX2G6ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "zNcW7YYBBkbVtX3nBWBe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "hGYW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vwNl340FtK4II3OTHfAxDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vwNl340FtK4II3OTHfAxDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ktcW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0WY9BQOdRjXYQkYwkFdgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0WY9BQOdRjXYQkYwkFdgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ceEW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "G2YW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ig2MzPdh_XK7em8mWoJag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ig2MzPdh_XK7em8mWoJag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "XtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDjdfIDXYeKpMzfOZsKweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDjdfIDXYeKpMzfOZsKweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "WNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t4n19LeK4zvHCEOuBRHoDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t4n19LeK4zvHCEOuBRHoDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "W9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch2MeEpHv6ftyPFPGwDJPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch2MeEpHv6ftyPFPGwDJPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "WdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "amYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PR0G3Br-iqix1uCUZkKS_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PR0G3Br-iqix1uCUZkKS_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "DNcW7YYBBkbVtX3nU5wV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JK8YqiAWSqqVOym-FM3Bcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JK8YqiAWSqqVOym-FM3Bcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "FuEW7YYByh-A-Biyclc2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8m9XmKLa72WdntoQwSY0tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8m9XmKLa72WdntoQwSY0tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-5pow01", "_id": "z9cW7YYBBkbVtX3nkscq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbBiaFslvpreG7iqHkAtng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbBiaFslvpreG7iqHkAtng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "_-EW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ul5WCOLuBGGX66Anz_J-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ul5WCOLuBGGX66Anz_J-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZmcW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "JdcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVY8nef_n-I9Q52QhyCFfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVY8nef_n-I9Q52QhyCFfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "F2cW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sl8hikPZI3gmfoj4I-xFMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sl8hikPZI3gmfoj4I-xFMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "HWcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h0lEtzKJzcNxepmOT3KRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h0lEtzKJzcNxepmOT3KRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "ktcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "09cW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIjdoSZWUGoqrMkmoKBGPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIjdoSZWUGoqrMkmoKBGPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "r9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "ttcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vSsOv3oIeGq1jnkLewmKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vSsOv3oIeGq1jnkLewmKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "q9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ir6dnl0cXTDA9lqUj6YdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ir6dnl0cXTDA9lqUj6YdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "tNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YABibb_jw0z2mFZJ8rsBIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YABibb_jw0z2mFZJ8rsBIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "qtcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5L0Vg1E8eRaEol71UFTwGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5L0Vg1E8eRaEol71UFTwGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "qNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rAVnotLNqZZX90k5rHuXLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rAVnotLNqZZX90k5rHuXLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-5pow01", "_id": "rtcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vQXtdmIzgIVlhx1gewz_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vQXtdmIzgIVlhx1gewz_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} {"create": {"_index": "profiling-events-5pow01", "_id": "8tcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "KGcW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVLBSGTuYWH3O356lNUySg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVLBSGTuYWH3O356lNUySg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "oeEW7YYByh-A-Biy38Nt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LU5M-Y2vAZAPnKMCmcDaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LU5M-Y2vAZAPnKMCmcDaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-5pow01", "_id": "z2cW7YYBO2e_P_Qb3FtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "BdgW7YYBBkbVtX3n4AZK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DJ5rUntpH_kTGPTanZjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DJ5rUntpH_kTGPTanZjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "zOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "wdgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "umcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["udcCD1ZwYlzlR2BrHqM6qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["udcCD1ZwYlzlR2BrHqM6qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "NWcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "z-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "HNgX7YYBBkbVtX3nOTzV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "I-IX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "uuIX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "iWcX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "mOIX7YYByh-A-BiySRIf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nobPGa726Uz_QIRAEzxZhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nobPGa726Uz_QIRAEzxZhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "uGcX7YYBO2e_P_QbXN28"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "DWcX7YYBO2e_P_QbZ-K9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "AtgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YjeaaN9Gs9Jtblq8lj7A3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YjeaaN9Gs9Jtblq8lj7A3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "BtgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ArhssJT4V7-kmdsezZTRQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ArhssJT4V7-kmdsezZTRQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ANgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w4AKEYruYsyRiuNl0wOumw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w4AKEYruYsyRiuNl0wOumw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "_dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcPyRyUca9zMz9MzDr7aHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcPyRyUca9zMz9MzDr7aHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "6OIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wO6E0aI_adazJwV1nEPvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wO6E0aI_adazJwV1nEPvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "5-IX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0R9Tk_AwuvgNuleyrD0E-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0R9Tk_AwuvgNuleyrD0E-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "tWgX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9GZUSBL9TB0CdE5vyfEsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9GZUSBL9TB0CdE5vyfEsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "6-IX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HFDZtj7y0Bw2k96K0Shk-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HFDZtj7y0Bw2k96K0Shk-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "0dgX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Egb8M192QRouZ1YPjNwqmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Egb8M192QRouZ1YPjNwqmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "nmgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "6tgX7YYBBkbVtX3nt6W3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOZHtJ4ahW-g2TWd1-Whrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOZHtJ4ahW-g2TWd1-Whrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "79gX7YYBBkbVtX3nt6I3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ycogR2C1hH5eXGjaW9oPeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ycogR2C1hH5eXGjaW9oPeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "KmgX7YYBO2e_P_Qbtih6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pHFN0qaDz6OHVNs6LDyfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pHFN0qaDz6OHVNs6LDyfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "M2gX7YYBO2e_P_QbtSOl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RsVBVY52cTTp5FCtYm6r4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RsVBVY52cTTp5FCtYm6r4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "hNgX7YYBBkbVtX3nt6R3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgb9JoAUQxoSCvdXn7xEkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgb9JoAUQxoSCvdXn7xEkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "ENgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KBx8UMYQRpX3PQkFGueoQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KBx8UMYQRpX3PQkFGueoQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "EdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3bvdBbzWBhiwCbUR097jxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3bvdBbzWBhiwCbUR097jxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "E9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPi-mObQCSuLuQtVOYID8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPi-mObQCSuLuQtVOYID8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "F9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GAokC6Zv-UfUvWotAYqkSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GAokC6Zv-UfUvWotAYqkSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "X-IX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl2yvlpS90Ypoy2M-skpww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl2yvlpS90Ypoy2M-skpww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "tmgX7YYBO2e_P_Qb6Vmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MT3qrLXJyyFa5mMadoI1ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MT3qrLXJyyFa5mMadoI1ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "6tgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "SOIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ess3oHhLNEi0m2JAz0_5DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ess3oHhLNEi0m2JAz0_5DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "qeIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pt09Zvf__ya1eNp2CoZNVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pt09Zvf__ya1eNp2CoZNVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "p9gX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "tdgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "stgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-49a_E8AcF9JV2D17KJ99g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-49a_E8AcF9JV2D17KJ99g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "G-IY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hAbTICOesyJ3rX_TlmZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hAbTICOesyJ3rX_TlmZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "JtkY7YYBBkbVtX3nUxcK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "hdkY7YYBBkbVtX3nVyEZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-5pow01", "_id": "M2gY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tT2A_bCpClAyR0rNtUXbYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tT2A_bCpClAyR0rNtUXbYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "GtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "FeIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "3WgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SuyrLdAGlB-Gqd6pTlCwTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SuyrLdAGlB-Gqd6pTlCwTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "3GgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "3dkY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "_-MY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_7SjIJ79HdCt2_IZxFKFsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_7SjIJ79HdCt2_IZxFKFsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "zWgY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSkvuXEJhjIUI110bPCy-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSkvuXEJhjIUI110bPCy-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "x2gY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1o1T1TIStxTZj-e2WTNkwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1o1T1TIStxTZj-e2WTNkwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "hWkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "jGkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-5pow01", "_id": "imkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "sdUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYRd432ews7Dx4JLAryfRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYRd432ews7Dx4JLAryfRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "9t8U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxA4A64BqMWXOrNZbvu1iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxA4A64BqMWXOrNZbvu1iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "Kt8U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI9JvucnvxyxLZyzixdcpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI9JvucnvxyxLZyzixdcpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "DmUU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "od8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u26YAXespQsbQjR7YsAYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u26YAXespQsbQjR7YsAYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "XdYU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "4t8U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-5pow01", "_id": "9d8U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "n9YU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dt_oZZ2sQo9aPZAJj8jPTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dt_oZZ2sQo9aPZAJj8jPTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "oNYU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lq2lfj5xkTFOSbFr4_BQ2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lq2lfj5xkTFOSbFr4_BQ2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "Od8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["an9gjQnke-IYWAGoKUs5KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["an9gjQnke-IYWAGoKUs5KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "gWUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zl3Lkb99x2SkFZzpGc0tBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zl3Lkb99x2SkFZzpGc0tBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-5pow01", "_id": "NdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "Nt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6eTapoSsPn6zyk1_cvguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6eTapoSsPn6zyk1_cvguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "M9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "K9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "MtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s_LM4tNvgy4k7bBRfDcNqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s_LM4tNvgy4k7bBRfDcNqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "598U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jvc_WE7B1F8hMVB_gxFucA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jvc_WE7B1F8hMVB_gxFucA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "5t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jxx94k5bF0AyU24TvMCnFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jxx94k5bF0AyU24TvMCnFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "6N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sJC4CV2eRcloTSQEGQH29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sJC4CV2eRcloTSQEGQH29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "Mt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AREehA9nDZJasQeEH6svQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AREehA9nDZJasQeEH6svQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "4d8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "EdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAgkJzf4StR0guQvtrxwfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAgkJzf4StR0guQvtrxwfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "MtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LrLWZ5bevl0fyb8pVLrxUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LrLWZ5bevl0fyb8pVLrxUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-5pow01", "_id": "KNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFWcqgahvwzy1xUY69A0Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFWcqgahvwzy1xUY69A0Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "HNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihAOVqchKA5mXlZP4M1IsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihAOVqchKA5mXlZP4M1IsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "DNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "_9YV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JI7mG0vgGSTA2uia9-1jSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JI7mG0vgGSTA2uia9-1jSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "hNYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fmIQ76zzVZ9EWAQ55W78zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fmIQ76zzVZ9EWAQ55W78zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "reAV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "kdYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "q9YV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHi_az7OQcBjeyPt41wowA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "95381405781962"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHi_az7OQcBjeyPt41wowA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "95381405781962"} {"create": {"_index": "profiling-events-5pow01", "_id": "NWUV7YYBO2e_P_QbGelA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yc_2GTJ_IVPE7f4u8QXDeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yc_2GTJ_IVPE7f4u8QXDeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-5pow01", "_id": "CWUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "MuAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "aWUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "8NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUKA7gaaH9QtcEUOhnkXBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUKA7gaaH9QtcEUOhnkXBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "59YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8THUiHTgWMDGXf1IWeY26Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8THUiHTgWMDGXf1IWeY26Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "69YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "pmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RSnmXvhjCRc5PWjsdxAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RSnmXvhjCRc5PWjsdxAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "rWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "s2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "79YV7YYBBkbVtX3nVq52"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "TNYV7YYBBkbVtX3nVrHh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "CWYV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z5-B-mtdUNg5G8Toj1uZ9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z5-B-mtdUNg5G8Toj1uZ9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "ueAV7YYByh-A-BiyVV6i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "2mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdQO73uJU5ltMBM9sQEM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdQO73uJU5ltMBM9sQEM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "3mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C6VUfIIv3MbNvll1xucbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C6VUfIIv3MbNvll1xucbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "dOAV7YYByh-A-BiyhoV2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bQaxjHqOXy8jFaY6w3jpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bQaxjHqOXy8jFaY6w3jpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "GdcV7YYBBkbVtX3npQJl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "SdYV7YYBBkbVtX3nmPtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "2OAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Pia_VKvNIpcjOrg5PBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Pia_VKvNIpcjOrg5PBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "5WYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-gvaAwuroQsfSOFcGq40g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-gvaAwuroQsfSOFcGq40g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "hWYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nON9RmBx4umF5B_Of_VNaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nON9RmBx4umF5B_Of_VNaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "LWYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3eCfffgWDywlQf98in5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3eCfffgWDywlQf98in5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "7NcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "7dcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxRH1n6rM_I4hLiGtKmVMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxRH1n6rM_I4hLiGtKmVMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "a9cV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "J2YV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "Y-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bc6HNlC8Sl7niDN9L84HCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bc6HNlC8Sl7niDN9L84HCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "jdcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8P7h-qet3p603NxSf5JWTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8P7h-qet3p603NxSf5JWTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "umYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "HeAV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aq5HJRyvf0tzNYqtMdi3JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aq5HJRyvf0tzNYqtMdi3JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZtcV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UcSfB9O7oaCsfgTNqnRSmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UcSfB9O7oaCsfgTNqnRSmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "sdcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eyk6myVZ88WlljRICe8V4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eyk6myVZ88WlljRICe8V4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "BtcV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iz58o69gDrMyQIJrUSlESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iz58o69gDrMyQIJrUSlESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} {"create": {"_index": "profiling-events-5pow01", "_id": "puAV7YYByh-A-Biy5dxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "TtcV7YYBBkbVtX3n5UgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vMqHPs9EIjuvSlEC4OiiMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vMqHPs9EIjuvSlEC4OiiMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "y9cW7YYBBkbVtX3nBF4I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVsUuzDWhnoUag5GJcXYzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVsUuzDWhnoUag5GJcXYzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "VWYW7YYBO2e_P_QbBawR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "_eAW7YYByh-A-BiyAekA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8y9d1sq41lKVZ2hOEtOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8y9d1sq41lKVZ2hOEtOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-5pow01", "_id": "e9cW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "V9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPnyqYXZ1627cOAm3Dt4dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPnyqYXZ1627cOAm3Dt4dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} {"create": {"_index": "profiling-events-5pow01", "_id": "WtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWQBAJ7ncYkjoV_tk9YLSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWQBAJ7ncYkjoV_tk9YLSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "U9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "GNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "YuEW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "iOEW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-5pow01", "_id": "19cW7YYBBkbVtX3nRZBy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "HuEW7YYByh-A-BiyUD3c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "LWYW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FpeKkethPGO1uv-qrij4uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FpeKkethPGO1uv-qrij4uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "COEW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oF-wY_acT328qrZ3ugnkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oF-wY_acT328qrZ3ugnkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "_9cW7YYBBkbVtX3nYqmZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4O8D8hxYkhFJTYN-hGU2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4O8D8hxYkhFJTYN-hGU2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "rOEW7YYByh-A-BiyfmHu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "PtcW7YYBBkbVtX3nfbnk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zrel0O8Eu19Ixn8b1A7RrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zrel0O8Eu19Ixn8b1A7RrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "xOEW7YYByh-A-Biyclr3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ6jYHQvenC-oIeTFn_Bnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ6jYHQvenC-oIeTFn_Bnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "LOEW7YYByh-A-BiyfmAg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0wzD6Wsaoym2okQ8aY53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0wzD6Wsaoym2okQ8aY53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-5pow01", "_id": "EtcW7YYBBkbVtX3nkcYc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o7jkJLtD4xHchcLgzNuuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o7jkJLtD4xHchcLgzNuuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "nuEW7YYByh-A-BiykHkK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "JtcW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "HeEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eXATor8dtVm3LPIO_GNaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eXATor8dtVm3LPIO_GNaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "1dcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ofbkGVhqHskFPiKv2X28g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ofbkGVhqHskFPiKv2X28g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "auEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ285knnYYuMww0WgMbI2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ285knnYYuMww0WgMbI2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "mOEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn2EpQqWCVem8DknXDkNXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn2EpQqWCVem8DknXDkNXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "pGcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "5-EW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ewqZUIOmU9Ti-nJquCY7dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ewqZUIOmU9Ti-nJquCY7dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "yGcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "99cW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "a-EW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "W9cW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4I-ntmDjAgUXJfwbuBJNjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4I-ntmDjAgUXJfwbuBJNjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "5uEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EkvDjA94Zr1iIohgty7mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EkvDjA94Zr1iIohgty7mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "1NcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPRFk1hV8cCqMtGiVI0VUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPRFk1hV8cCqMtGiVI0VUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "QNcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "htcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7pCWL6qVpk6cdOVpmC7rqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7pCWL6qVpk6cdOVpmC7rqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "rNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ssUCcghlPpbufn_FI7lhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ssUCcghlPpbufn_FI7lhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "stcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "qdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg3TaXRMJTka-oF2wrTuxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg3TaXRMJTka-oF2wrTuxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-5pow01", "_id": "7tcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nd9rMkTYCiObUWdQEYWSwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nd9rMkTYCiObUWdQEYWSwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "EeEW7YYByh-A-Biy0Llz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YDo1NT9KzNVeSq1G9W3WWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YDo1NT9KzNVeSq1G9W3WWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-5pow01", "_id": "7dcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwmBGtDgORQiem0fqXxYUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwmBGtDgORQiem0fqXxYUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "39gW7YYBBkbVtX3n3QKs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD5xCbVnNYVsLiq_B3NCDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD5xCbVnNYVsLiq_B3NCDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "wuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "jmcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "g2cX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "deEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ra9c-heZALvJmUxSmzUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ra9c-heZALvJmUxSmzUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "VNgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "j-EX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "kmcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "7OEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "zeEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "-2cX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "d2cX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mnK-jqHbwNjcoomJsw59gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mnK-jqHbwNjcoomJsw59gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "CeIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hYfhfJkQW17kyXXXeL8OrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hYfhfJkQW17kyXXXeL8OrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "utgX7YYBBkbVtX3nSkv7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "7GcX7YYBO2e_P_QbSMNE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "h-IX7YYByh-A-BiyXSiy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-BNILa1SCuDbNciG6XDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-BNILa1SCuDbNciG6XDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "B9gX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJns5ogzEJmEGiD1xX0ydA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJns5ogzEJmEGiD1xX0ydA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "AdgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pWn_IRU-j_6Nwh-gfuAqfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pWn_IRU-j_6Nwh-gfuAqfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-5pow01", "_id": "6uIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDQou-XRb52d9gCJh1ayOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDQou-XRb52d9gCJh1ayOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "L-IX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cELS3s9xDUsfqdE_Tc5Ajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cELS3s9xDUsfqdE_Tc5Ajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "JtgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "K2gX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymCCYcwH_madRuyjsHk5Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymCCYcwH_madRuyjsHk5Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "zOIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QDgIPJ6K1Rf5OSw95yEFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QDgIPJ6K1Rf5OSw95yEFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "nWgX7YYBO2e_P_QbuSt5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpjzTZhXzUC8aYg4OfeyGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpjzTZhXzUC8aYg4OfeyGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-5pow01", "_id": "TtgX7YYBBkbVtX3nuKdo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngVpwVwgO4T6nb-06wRKNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngVpwVwgO4T6nb-06wRKNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "FNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiZ1khLLMUzgYWGwfUZAEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiZ1khLLMUzgYWGwfUZAEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "GNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "EtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vthGd_F8mbZA2w12Nf4aww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vthGd_F8mbZA2w12Nf4aww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "FtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "WeIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23D9WYWWXJZPmgi3LP_trA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23D9WYWWXJZPmgi3LP_trA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "zWgX7YYBO2e_P_Qb5lIe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQY3N3qZRu8haCsdxq571g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQY3N3qZRu8haCsdxq571g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "W-IX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} {"create": {"_index": "profiling-events-5pow01", "_id": "8dgX7YYBBkbVtX3n6NKY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "WOIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "E9gX7YYBBkbVtX3n589_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoPYq5Aw6d1wKTV_c9_UOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoPYq5Aw6d1wKTV_c9_UOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "UdgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "QtgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "udgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "-eIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ocpdZMlRpRzCexEbOVmPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ocpdZMlRpRzCexEbOVmPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "qNgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnsAy4vOc46KZJiS5dGT6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnsAy4vOc46KZJiS5dGT6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "6NgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AuqG1b42cXBbKiNJcLaKpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AuqG1b42cXBbKiNJcLaKpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "sNgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "sdgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFJedgXKyIDWLxlCPDwfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFJedgXKyIDWLxlCPDwfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "tNgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTqEftgEgF-4HalIRfrGpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTqEftgEgF-4HalIRfrGpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "OeIY7YYByh-A-BiyKMx-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "VmgY7YYBO2e_P_QbI30D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "XtkY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "X2gY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3iq4oJQ3VCG0e1sWoxtkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3iq4oJQ3VCG0e1sWoxtkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "aGgY7YYBO2e_P_QbVarR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4atjVCntPFZjlZxUD6MXCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4atjVCntPFZjlZxUD6MXCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "LtkY7YYBBkbVtX3nVR6C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "V-IY7YYByh-A-BiyVPT1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09uypqtTxXlIuIrZVnABBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09uypqtTxXlIuIrZVnABBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "HdkY7YYBBkbVtX3nVyNb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "jGgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "z9kY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnUv3QN_2ZayAg10mwHHFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnUv3QN_2ZayAg10mwHHFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "LmgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "KmgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2p1e_ByfhPk84t_WqyZsxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2p1e_ByfhPk84t_WqyZsxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "auMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qft_3sVVVVKL2SEz3KAyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qft_3sVVVVKL2SEz3KAyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "b-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htfRCBFoc4VoJwgN8Ytl-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htfRCBFoc4VoJwgN8Ytl-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "bOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epUUcKloArUaO4HmSd6-0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epUUcKloArUaO4HmSd6-0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "7GgY7YYBO2e_P_QbkuQ0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "auMY7YYByh-A-Biykhac"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "E2gY7YYBO2e_P_Qbr__k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jUHt5y4xbMsVQ2NY3U5mxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jUHt5y4xbMsVQ2NY3U5mxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "h2kY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRLmJJNBX8J2JJ9imi8dPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRLmJJNBX8J2JJ9imi8dPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "xNkY7YYBBkbVtX3ns3bd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "E2kY7YYBO2e_P_QbvwpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BeOljMY7zmWSgDKbEbSZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BeOljMY7zmWSgDKbEbSZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "G-MY7YYByh-A-BiywDft"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "R9kY7YYBBkbVtX3n3pnE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SMLewOlFeXmKZa6xL_ARDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SMLewOlFeXmKZa6xL_ARDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "79kY7YYBBkbVtX3n05Ok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "89kY7YYBBkbVtX3n4Z2b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2STw5Dy59fyAI6ZtoR41g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2STw5Dy59fyAI6ZtoR41g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "ueMY7YYByh-A-Biy00jx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "E9kY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MSb55knyBJ7ClwjPXRNwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MSb55knyBJ7ClwjPXRNwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-5pow01", "_id": "BmkY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PicgGG7wbtdmW_0WJKDC-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PicgGG7wbtdmW_0WJKDC-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "SGkY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wu5Ui6X1wYCeANyAsyHaFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wu5Ui6X1wYCeANyAsyHaFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "cGkY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tU6VK5zLihoNeJDRhxPnUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tU6VK5zLihoNeJDRhxPnUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "MOMY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "1mkY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZUry6bTXYygY6NfqwYQNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZUry6bTXYygY6NfqwYQNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "9dkZ7YYBBkbVtX3nALZa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWudsqc4YRwwO2UAdX1LxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWudsqc4YRwwO2UAdX1LxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ndkZ7YYBBkbVtX3nAbtG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "meMY7YYByh-A-Biy_2g-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "yGkZ7YYBO2e_P_QbH1kG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7kg8w388m41akTi9Kihyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7kg8w388m41akTi9Kihyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ytkZ7YYBBkbVtX3nIM9b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qD_J237PVcJWQeJzWEaj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qD_J237PVcJWQeJzWEaj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "x-MZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "TGkZ7YYBO2e_P_QbMXJP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-5pow01", "_id": "odYU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "odYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ieFm4DhmWNYMrTtIZLOTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ieFm4DhmWNYMrTtIZLOTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "f98U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YZ6XTwSTsk_RRpTARdTTcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YZ6XTwSTsk_RRpTARdTTcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "vd8U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4DUvBkuKPYx1hCGNzwitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4DUvBkuKPYx1hCGNzwitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "I98U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "vN8U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN29r4iQqyKpKryFAHklNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN29r4iQqyKpKryFAHklNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "OdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "Id8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "mGUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWvxOIZDGq4hR0RiTlBjWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWvxOIZDGq4hR0RiTlBjWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-5pow01", "_id": "4N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iLTslrGORIyXKfkvn0rVCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iLTslrGORIyXKfkvn0rVCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "MN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1IpEdYyyzMGVkI9Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1IpEdYyyzMGVkI9Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "MNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28hHkhN7jPc2yLRpJAYfPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28hHkhN7jPc2yLRpJAYfPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "L98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_j480Qg9v5TNK0lQGeFwAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_j480Qg9v5TNK0lQGeFwAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "Pt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "Rt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "ytYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "t2UU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dPivlAC6aaFKRkKmSRwlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dPivlAC6aaFKRkKmSRwlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "NtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96g1R53V5QyPuXTUHSgw4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96g1R53V5QyPuXTUHSgw4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "J9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F_APHoeVxOWNqwDMoBgBUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F_APHoeVxOWNqwDMoBgBUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "NN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "5N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsjTmLeWgJZGEXKE2bGYPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsjTmLeWgJZGEXKE2bGYPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "H9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eg4GNNub3CPns1G5g2R71w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eg4GNNub3CPns1G5g2R71w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "ItYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FMEbu46FVTF9FY-0Ogn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FMEbu46FVTF9FY-0Ogn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "LtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "M9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "NdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLX1mOZZ4FB_ggjZCD1W-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLX1mOZZ4FB_ggjZCD1W-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "NtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o3FJgYr9HoLMDfWyiRLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o3FJgYr9HoLMDfWyiRLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "ENYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFwqiF8mGnNqqISBiOraPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFwqiF8mGnNqqISBiOraPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "E9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "HdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "F9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eviuUsW23vOjlBWQv0bv5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eviuUsW23vOjlBWQv0bv5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "MdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRGWrc208dGoT33fGEbwGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRGWrc208dGoT33fGEbwGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "SWUV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "6OAV7YYByh-A-BiyHC88"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "rWUV7YYBO2e_P_QbF-XY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HBL0k7Q3NY1Rzs8CB4mIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HBL0k7Q3NY1Rzs8CB4mIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "39YV7YYBBkbVtX3nF2Us"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uVz8NwCzYiroPS8zol4cYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uVz8NwCzYiroPS8zol4cYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "k-AV7YYByh-A-BiyFSTD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "89YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WB2ChzRmsP63O7cEov2qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WB2ChzRmsP63O7cEov2qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "79YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yLwY_MOsydDU7XEbyC_1EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yLwY_MOsydDU7XEbyC_1EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "8tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["is-GrshzXGfvyrs7C84YDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["is-GrshzXGfvyrs7C84YDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "7NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "p2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5yQFzmK6rVAYH_IWw9mY4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5yQFzmK6rVAYH_IWw9mY4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "rGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "tGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "sWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nay4Cu7cpfWvHwjKfzebpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nay4Cu7cpfWvHwjKfzebpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "o2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "pGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["56T0aIwgwSEUNL-7riuYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["56T0aIwgwSEUNL-7riuYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "3WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A998Aw2wlvaHmpTDQoJVWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A998Aw2wlvaHmpTDQoJVWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "0mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "22YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CWGwjnZxZvrumi7qK8KzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CWGwjnZxZvrumi7qK8KzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "GtYV7YYBBkbVtX3nhuK9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "QmYV7YYBO2e_P_QbiE9B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L6cJEyVPJDgBEJDXdVk3pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L6cJEyVPJDgBEJDXdVk3pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} {"create": {"_index": "profiling-events-5pow01", "_id": "gNcV7YYBBkbVtX3npABx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RhMJrUxrd57e6G7g2-PKcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RhMJrUxrd57e6G7g2-PKcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "9tYV7YYBBkbVtX3nmPyP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLI30dzAv_XVLHnFXWzCzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLI30dzAv_XVLHnFXWzCzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "WdcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3KY9CUj1lI4EPyAmsjiKpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3KY9CUj1lI4EPyAmsjiKpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-5pow01", "_id": "sGYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pq-E12uy1vBeK4HeCjUqKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pq-E12uy1vBeK4HeCjUqKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "jNcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me0oRgVcR_uBmJ_kCe-VfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me0oRgVcR_uBmJ_kCe-VfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "NeAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "uWYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Gg373ZQ4MQ2jkh8DEBd7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Gg373ZQ4MQ2jkh8DEBd7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZuAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "YuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LKEaCr3J8DRAWmFUoWCNBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LKEaCr3J8DRAWmFUoWCNBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "6dcV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZtcV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "MuAV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h78omCSCOG8EoQ0xkchTYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h78omCSCOG8EoQ0xkchTYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "LOAV7YYByh-A-Biy4tjs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "B-AV7YYByh-A-Biy4dWo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "tdcV7YYBBkbVtX3n4j9s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-SfQ_r9EJdGkmFMOGPAZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-SfQ_r9EJdGkmFMOGPAZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-5pow01", "_id": "TWYW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acGHnAm6JFFvJ2ZoZKt_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acGHnAm6JFFvJ2ZoZKt_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "G-EW7YYByh-A-BiyEwMv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqS65a_0vS0KD1oFWfGPCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqS65a_0vS0KD1oFWfGPCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "8WYW7YYBO2e_P_QbELUW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ut68c_tuuoqFzX7ruLfoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ut68c_tuuoqFzX7ruLfoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "BtcW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XhwDDngWLjSP8tIl3SEwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XhwDDngWLjSP8tIl3SEwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "n-EW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "VNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "F9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RWz2cEGgcNrcd3eaLVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RWz2cEGgcNrcd3eaLVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "FdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "XNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xricnf20K4kRE1JxfxLKUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xricnf20K4kRE1JxfxLKUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "8-EW7YYByh-A-BiyQy5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bciyx_9NZlf5osbnTw9ncg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bciyx_9NZlf5osbnTw9ncg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "WeEW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIYJkbW5-Ss2DSyBgMD1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIYJkbW5-Ss2DSyBgMD1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "yeEW7YYByh-A-BiyQitl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g15iIWCPMhS3lvfL06AkwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g15iIWCPMhS3lvfL06AkwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "NeEW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "gmYW7YYBO2e_P_QbU_aU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGWkKDGzXSSBbLkENAOIkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGWkKDGzXSSBbLkENAOIkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "c2cW7YYBO2e_P_QbfRJk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtJZCZ940TmjMXNEWgVXDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtJZCZ940TmjMXNEWgVXDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "bWcW7YYBO2e_P_QbkSjL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0NRB9624MZLIKmkHE-1rew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0NRB9624MZLIKmkHE-1rew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YOEW7YYByh-A-Biyj3ZQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "y-EW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "yWcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "0tcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86WQcXcUxaHfJUCEplsqoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86WQcXcUxaHfJUCEplsqoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "6WcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIjbpW4afQJ6fKp4bSOkMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIjbpW4afQJ6fKp4bSOkMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "m2cW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "QdcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xgi2WyDfYTM06WuIqjfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xgi2WyDfYTM06WuIqjfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "XNcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lWGBthO0cXLKT_wGxBJl5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lWGBthO0cXLKT_wGxBJl5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "rdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57Fil5UcCT4QMA8PK7lldw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57Fil5UcCT4QMA8PK7lldw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "t9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7k09_Fy75Q9-PpHdDlKvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7k09_Fy75Q9-PpHdDlKvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ptcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "sNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-5pow01", "_id": "nuEW7YYByh-A-BiyzK7K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hy11GM4V5rJ1R_KKBReCYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hy11GM4V5rJ1R_KKBReCYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow01", "_id": "xeEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "yeEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "S-EX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKsocjlsvM68oICIvKxy7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKsocjlsvM68oICIvKxy7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "zOEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r5Qk0y0lu82qLRvIh-Mz7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r5Qk0y0lu82qLRvIh-Mz7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "qGcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "u2cX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "GGcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "7eEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u263nW_qRlDonfyrGeQDiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u263nW_qRlDonfyrGeQDiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "zuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZzgSlsPZ6clXTiCMgWgdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZzgSlsPZ6clXTiCMgWgdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "0eEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY70RGM6lV3NgAwSeTX8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY70RGM6lV3NgAwSeTX8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "ytgX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7sDL1ZEUDJ12LHKKH-P_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7sDL1ZEUDJ12LHKKH-P_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "i9gX7YYBBkbVtX3nPUb7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KiwE-vKZHKC3n7ALbEtWxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KiwE-vKZHKC3n7ALbEtWxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "MtgX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67VSY7gMnvXQykqHE0WxBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67VSY7gMnvXQykqHE0WxBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "UmcX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oTHLMe0BewCEp798WVpJtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oTHLMe0BewCEp798WVpJtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "ztgX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "IGcX7YYBO2e_P_QbPMHK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjTw1uwIATCPa-CkaMdjEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjTw1uwIATCPa-CkaMdjEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "-GcX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "SWcX7YYBO2e_P_QbTM67"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-y7rTRuLTj8cfBQbfYKy2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-y7rTRuLTj8cfBQbfYKy2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "EOIX7YYByh-A-BiyShe9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ui68wyUVCJcxQ5nqpWzN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ui68wyUVCJcxQ5nqpWzN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "h-IX7YYByh-A-BiyWyEq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lgc01vu6tLGgLO8IPeQGXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lgc01vu6tLGgLO8IPeQGXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "6OIX7YYByh-A-BiyXCQS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uD9v9EeBRS5EzcNLZ8q2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uD9v9EeBRS5EzcNLZ8q2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-5pow01", "_id": "7tgX7YYBBkbVtX3nXVoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "gmcX7YYBO2e_P_QbWtiF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m8UxqcMGCNBvKBluS5X8zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m8UxqcMGCNBvKBluS5X8zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "jeIX7YYByh-A-BiyWR5r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "A9gX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "_9gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "Q9gX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "ceIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "suIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PU4AlGgy6OVgX5g2hXwflQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PU4AlGgy6OVgX5g2hXwflQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "YGgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_X9dFQVvkPI4ha0P8p2JiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_X9dFQVvkPI4ha0P8p2JiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "tdgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EszYJlG3uJtSxM3Y3d7bAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EszYJlG3uJtSxM3Y3d7bAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "ceIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIxtnf4ZytccTyNG23fGog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIxtnf4ZytccTyNG23fGog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "FdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oYwYA56C57graUtOG96_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oYwYA56C57graUtOG96_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "XeIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "WNgX7YYBBkbVtX3n5c3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6oJOlriSsxoHCj15KtT0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6oJOlriSsxoHCj15KtT0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "B-IX7YYByh-A-Biy5oju"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvqyEWe3mfnleSrT6I-tHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvqyEWe3mfnleSrT6I-tHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "feIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "7OIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whKjwtCVRYeUJb75GUn0Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whKjwtCVRYeUJb75GUn0Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "82gX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZGgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caAMI7G9uz-EPxuo9p-Rlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caAMI7G9uz-EPxuo9p-Rlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "UtgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IO7igLUjHuSwhRGut0RlMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IO7igLUjHuSwhRGut0RlMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "6dgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JLHzPwzEV5rRN9RuEzoMPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JLHzPwzEV5rRN9RuEzoMPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "-OIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "iWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuPwjyefoJQ1lu-T5igwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuPwjyefoJQ1lu-T5igwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "IeIY7YYByh-A-BiyJLxn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N1nRjzqOIB8y-j3xmzMaSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N1nRjzqOIB8y-j3xmzMaSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "cOIY7YYByh-A-BiyJsRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QbcK_gbMTYuvwl_FoMECaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QbcK_gbMTYuvwl_FoMECaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "-2gY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "veIY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "xuIY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42JG9a6NRfwi2CO7Z1RPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42JG9a6NRfwi2CO7Z1RPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "1-IY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x8C8r_joS9eFrngYSfAD9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x8C8r_joS9eFrngYSfAD9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "f-IY7YYByh-A-BiyVPIV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0UeOgQYKC7zcrsZ5ZxtGIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0UeOgQYKC7zcrsZ5ZxtGIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "LGgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AN24Ay2FFm6R_uskGlbDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AN24Ay2FFm6R_uskGlbDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "GdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vv8H2tPfs7d9zjnnJhB0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vv8H2tPfs7d9zjnnJhB0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "o2gY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "VtkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "ntkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFHH2tMDnbWLZHLGtCUC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFHH2tMDnbWLZHLGtCUC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "LWgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ng7Kn6I7osQY62ITDyHvMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ng7Kn6I7osQY62ITDyHvMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "MNkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oHVZwEtujopOZewM6A1sxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oHVZwEtujopOZewM6A1sxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "3mgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "NuIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_wx1WU4Q3GTegN_cAxP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_wx1WU4Q3GTegN_cAxP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "62gY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MvydvJcdA5Fm40P_1i2ixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MvydvJcdA5Fm40P_1i2ixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow01", "_id": "beMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG9jBmB3lh64ME0jyCkfBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG9jBmB3lh64ME0jyCkfBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "ZuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9T2neRyvBAjupi4KvqMEkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9T2neRyvBAjupi4KvqMEkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "GmgY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2j8VUArr_b9AewT6WEQL_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2j8VUArr_b9AewT6WEQL_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "v-MY7YYByh-A-Biykxdq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HsiX5vdQunBNkC7dzQqFjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HsiX5vdQunBNkC7dzQqFjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "euMY7YYByh-A-BiylBpj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwjluL3-fAPsYBuygjQN9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwjluL3-fAPsYBuygjQN9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "BdkY7YYBBkbVtX3nklHO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow01", "_id": "iWkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5wRxzE9W7SQh2wOeWm08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5wRxzE9W7SQh2wOeWm08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "BtkY7YYBBkbVtX3nsGt1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5BsomDuMI7TNerJ9VXCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5BsomDuMI7TNerJ9VXCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow01", "_id": "9NkY7YYBBkbVtX3nxYcT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "fdkY7YYBBkbVtX3n1JXT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GaCLxWirBhJtu1rdEHoD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GaCLxWirBhJtu1rdEHoD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "2mkY7YYBO2e_P_Qb4S1Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xs-IN1fdS4tlSIAXAM4kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xs-IN1fdS4tlSIAXAM4kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "12kY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U9D_YJUEsrwBEswWxHC35w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U9D_YJUEsrwBEswWxHC35w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "bNkY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Is6WKpq1rPgjROiY1ySbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Is6WKpq1rPgjROiY1ySbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow01", "_id": "-tkZ7YYBBkbVtX3nAr6P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7PtklSiInmoO66e9Bc5vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7PtklSiInmoO66e9Bc5vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow01", "_id": "DdkZ7YYBBkbVtX3nALrp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow01", "_id": "cWkZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow01", "_id": "_OMZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["njwJdQnjALlyqqAczuUyDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["njwJdQnjALlyqqAczuUyDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "SmkZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITsishoJBrPM8Hg7nurVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITsishoJBrPM8Hg7nurVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "SuMZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "Z-MZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow01", "_id": "pmkZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow01", "_id": "hNkZ7YYBBkbVtX3nL9qN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow01", "_id": "k-MZ7YYByh-A-BiyMZoV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json index 310c3b6f5a6d3..d2f9a1867566e 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow02.json @@ -1,278 +1,278 @@ {"create": {"_index": "profiling-events-5pow02", "_id": "RtYU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "GGUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "x2UU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "NNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "G9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "PNYV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "eeAV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "X-AV7YYByh-A-BiyGi5B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "6tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow02", "_id": "sGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "GGYV7YYBO2e_P_QbVxih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "-9YV7YYBBkbVtX3nW7rm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "1mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "02YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "1tcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "FNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "BGgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "nGgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "VdkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "aOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "neMY7YYByh-A-Biysi1P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "KtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-5pow02", "_id": "y9cW7YYBBkbVtX3nc7iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "vWcW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "GOEW7YYByh-A-Biyj3ir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "mWcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "KWcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow02", "_id": "NmcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "1NgX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "XOIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} {"create": {"_index": "profiling-events-5pow02", "_id": "tWgX7YYBO2e_P_Qb51bB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-5pow02", "_id": "bmgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "NWkZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-5pow02", "_id": "Q-MZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "lWkZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "-WkZ7YYBO2e_P_QbLGTb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "LtYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "Qd8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow02", "_id": "L9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "GeAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "d9YV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "_GYV7YYBO2e_P_QbWR0q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "O2YV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "4mYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "4tYV7YYBBkbVtX3nhd6z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "WNcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "99cV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "-NcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow02", "_id": "adcV7YYBBkbVtX3n5EbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "-mYV7YYBO2e_P_Qb5ooi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "TGYW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow02", "_id": "5uAW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "zmYW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "52YW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "FdcW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "s9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "JOEW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "5mcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "YeEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "hWcX7YYBO2e_P_QbXuFm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "8-IX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "uGgX7YYBO2e_P_Qbtynt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "MtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "ZWgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "deIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow02", "_id": "bWgY7YYBO2e_P_QbJn6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "aOIY7YYByh-A-BiyJ8dT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "bGgY7YYBO2e_P_QbVq6T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-5pow02", "_id": "CGgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "hmkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "J9kY7YYBBkbVtX3ns3Wc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "i2kY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "VGkY7YYBO2e_P_Qb1CiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "FuMY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "yeMY7YYByh-A-Biy_WPI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "jeMZ7YYByh-A-BiyIYwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "LNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "P98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "Q98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "Nd8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "FNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "HtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "PNYV7YYBBkbVtX3nG2w1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "qmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "2WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow02", "_id": "29YV7YYBBkbVtX3nl_UY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "3NcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "QWYV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "HuEW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "etcW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "SWYW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "sdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-5pow02", "_id": "8NcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow02", "_id": "w-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "yuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "kWcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "6mcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "QuIX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "-9gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow02", "_id": "YGgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "oeIX7YYByh-A-Biyum7A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "uNgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "3WgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "d9kY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "1GgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "VNkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "k9kY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "EOMZ7YYByh-A-BiyMJmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "ft8U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-5pow02", "_id": "Pd8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} {"create": {"_index": "profiling-events-5pow02", "_id": "ON8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "O98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "DtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "JdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "C9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "LdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "EWUV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "zWUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "rmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow02", "_id": "39YV7YYBBkbVtX3nWbXf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-5pow02", "_id": "f9cV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "CtcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "VdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "smYW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-5pow02", "_id": "vGYW7YYBO2e_P_QbPtv2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow02", "_id": "HOEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "FmcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "UWcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow02", "_id": "bmcW7YYBO2e_P_Qb3mI-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "0OEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "dmcX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "BdgX7YYBBkbVtX3ne3aS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow02", "_id": "IeIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "b2gX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "rdgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "9WgY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow02", "_id": "FuMY7YYByh-A-Biykxnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow02", "_id": "HdkY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow02", "_id": "vmkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json index 1c0d2a047f09c..fbcc736aa8729 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow03.json @@ -1,42 +1,42 @@ {"create": {"_index": "profiling-events-5pow03", "_id": "r2YV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow03", "_id": "u9cW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow03", "_id": "EmcW7YYBO2e_P_QbkCRr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow03", "_id": "RuEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow03", "_id": "etcW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow03", "_id": "8dcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow03", "_id": "9-EW7YYByh-A-Biy3L6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow03", "_id": "_NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-5pow03", "_id": "YOAV7YYByh-A-BiyGi5B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow03", "_id": "LGYV7YYBO2e_P_QbVhYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow03", "_id": "42YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow03", "_id": "V9gX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-5pow03", "_id": "neAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow03", "_id": "y-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow03", "_id": "qOEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow03", "_id": "5WUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-5pow03", "_id": "L9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow03", "_id": "2eAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-5pow03", "_id": "xOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-5pow03", "_id": "I9gX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow03", "_id": "JtkZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json index 43b8821f8e5e3..6833eb218274c 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow04.json @@ -1,8 +1,8 @@ {"create": {"_index": "profiling-events-5pow04", "_id": "5GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-5pow04", "_id": "0uAV7YYByh-A-BiyVFqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-5pow04", "_id": "1eMZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-5pow04", "_id": "CtcW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json index f9506ae14722e..774edc97b20b7 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow05.json @@ -1,2 +1,2 @@ {"create": {"_index": "profiling-events-5pow05", "_id": "xdcW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json index 4a59bf2fc203a..551c1f5404232 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_5pow06.json @@ -1,2 +1,2 @@ {"create": {"_index": "profiling-events-5pow06", "_id": "m-EW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} diff --git a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json index adf765e760286..e686f7512fa6c 100644 --- a/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json +++ b/x-pack/plugins/profiling/e2e/es_archivers/profiling_events_all.json @@ -1,7068 +1,7068 @@ {"create": {"_index": "profiling-events-all", "_id": "ZOEW7YYByh-A-BiyvJ5t"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "C2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxSybvAJREHA93t9a-9ZDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jxSybvAJREHA93t9a-9ZDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "39cW7YYBBkbVtX3nvOX4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DJsG1PTKQj3bE1cuaZCjpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DJsG1PTKQj3bE1cuaZCjpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "EmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "odcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YGL51-V8LSysDnURshRDsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YGL51-V8LSysDnURshRDsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "feEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWmN7UoDEV82g0X1jR-lag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWmN7UoDEV82g0X1jR-lag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rAVnotLNqZZX90k5rHuXLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rAVnotLNqZZX90k5rHuXLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "u2cW7YYBO2e_P_Qbu0Sm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "B2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfaU4OGqPjwdE9T5hHw_Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfaU4OGqPjwdE9T5hHw_Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-all", "_id": "JWcW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LuEW7YYByh-A-BiyzrNj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwXtW2ufmEwH1DrvNBzUGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwXtW2ufmEwH1DrvNBzUGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CNcW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KANLoEfpUHNjFay_wQgAsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KANLoEfpUHNjFay_wQgAsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_WcW7YYBO2e_P_Qby0_R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVz81HFfQwHn9QYh-be1Sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVz81HFfQwHn9QYh-be1Sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DOEW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GOEW7YYByh-A-BiyzbAL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dWcW7YYBO2e_P_Qb0FnB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7KI8KMMWDvf5U1WSCufNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7KI8KMMWDvf5U1WSCufNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_GcW7YYBO2e_P_Qby0_R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ku3dJg7uoNqA3OiimkD9KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ku3dJg7uoNqA3OiimkD9KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "dGcW7YYBO2e_P_Qb0FnB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "6tcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29lvFdoiBP4NTHqtmd8Y8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29lvFdoiBP4NTHqtmd8Y8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "pGcW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRsBLFcqVzFUAZS_v_mreQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRsBLFcqVzFUAZS_v_mreQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "mNcW7YYBBkbVtX3ny_BB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jyjn_5qXfbWtQo79W0qlsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jyjn_5qXfbWtQo79W0qlsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "w9cW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "yuEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q8rLi45IFUbGCdbAHGZ4vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q8rLi45IFUbGCdbAHGZ4vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "-2cW7YYBO2e_P_Qby0_R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cAbQL1Yf_EXwq1Xvj5YzBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cAbQL1Yf_EXwq1Xvj5YzBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbzFFQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5_wX-Er1trjNDpVBu_jsDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5_wX-Er1trjNDpVBu_jsDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "wOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrEPteno4vchlHw0ws65OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrEPteno4vchlHw0ws65OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "JmcW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "wtcW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ivEY-EqI5b0E3M_68jqmVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ivEY-EqI5b0E3M_68jqmVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U0Kn8_bALG7-cg-DY86kNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U0Kn8_bALG7-cg-DY86kNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "uNgW7YYBBkbVtX3n2wD9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kcejzSJCXOEAAMTuFifhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kcejzSJCXOEAAMTuFifhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SWcW7YYBO2e_P_Qb3V8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n73U5dOg61JklJT6WKmxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n73U5dOg61JklJT6WKmxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zmcW7YYBO2e_P_Qb3FtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ifj_nYmYbVre3Goy-3d1XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ifj_nYmYbVre3Goy-3d1XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hOEW7YYByh-A-Biy3cBp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DJ5rUntpH_kTGPTanZjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DJ5rUntpH_kTGPTanZjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9uEW7YYByh-A-Biy3L6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bSoXiwGVYIVR1L3DbcUUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bSoXiwGVYIVR1L3DbcUUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "gOEW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t263LuBpXeJT_eypTrtUJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t263LuBpXeJT_eypTrtUJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "itgW7YYBBkbVtX3n_Blb"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hrR6ASxOEteokggjxZKMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hrR6ASxOEteokggjxZKMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t2cW7YYBO2e_P_Qb_nuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wCmvw-7GQGL1yAvmTCUcTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wCmvw-7GQGL1yAvmTCUcTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "weEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oZVmtNwsNi_g0dsbCFubSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oZVmtNwsNi_g0dsbCFubSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "DGcW7YYBO2e_P_Qb_XhM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7iLZSCd-GhxzDJmUOWlltQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7iLZSCd-GhxzDJmUOWlltQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "w2cW7YYBO2e_P_Qb_4GC"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "feEW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JAE0oBjlHd_LFeKNeOVAFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JAE0oBjlHd_LFeKNeOVAFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ueEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtRwIn-B17Zk-6fqHdRi2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtRwIn-B17Zk-6fqHdRi2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "2-EW7YYByh-A-Biy-tTN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xE2zyuyXFlIJ5r66uy5RMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xE2zyuyXFlIJ5r66uy5RMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "pGcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UuDeBu8oU2omluou-0a1Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UuDeBu8oU2omluou-0a1Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jmcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ALNfUngsI4IwTJ9rHQZUfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ALNfUngsI4IwTJ9rHQZUfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6OEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaLam_KQiz8POCW3aoer2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaLam_KQiz8POCW3aoer2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JWcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yK6OONpk1_skJktfJLfkBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yK6OONpk1_skJktfJLfkBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fmcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKNw_XLZvm5U0bSAHP5Qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKNw_XLZvm5U0bSAHP5Qhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JGcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KbIwDU7bE16YP2ns0ZA4pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KbIwDU7bE16YP2ns0ZA4pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uWcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fSsmeetWqxUvZQmnispuzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fSsmeetWqxUvZQmnispuzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vdgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eLxFTlFN_8U9FW9T5uVFVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eLxFTlFN_8U9FW9T5uVFVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "NWcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eAg08WF8lmIVlNh_qYyNeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eAg08WF8lmIVlNh_qYyNeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "UNgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4cstsRMDoVu7vb1ZvH1EzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ANgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lhxBmjNk6lw5l8hDy9uvfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lhxBmjNk6lw5l8hDy9uvfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "AtgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZORFq6EEwMoX6Tu_RTCb-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZORFq6EEwMoX6Tu_RTCb-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jOEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JRIGBFzel1pbRLTjBi-ZHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JRIGBFzel1pbRLTjBi-ZHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "KGcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_3OCCgKV6Kk8ntzJs_Wng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_3OCCgKV6Kk8ntzJs_Wng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "yuEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "tWcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RarVOrNELjnQUHfPoLUVBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RarVOrNELjnQUHfPoLUVBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6WcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y99kgy97ko1q-GgFUQMIvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y99kgy97ko1q-GgFUQMIvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6eEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9fNDHkA5rTj57PGtFze_-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9fNDHkA5rTj57PGtFze_-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "XOEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["672APJhXj5EKzZzWjY4QzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["672APJhXj5EKzZzWjY4QzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "SeEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbVr5WH8AZycf302C0td3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbVr5WH8AZycf302C0td3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "o2cX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PonqCaU3e7VApDLeDylGQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PonqCaU3e7VApDLeDylGQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "4WcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8x65WqPnBjtVuuc0TRdiaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8x65WqPnBjtVuuc0TRdiaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "SOEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gWcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QCaQz16pLyZGIJ3JyzyIYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QCaQz16pLyZGIJ3JyzyIYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "jGcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9AhQj1Cjybxb6G_U8nBwuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9AhQj1Cjybxb6G_U8nBwuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6uEX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XiTL4w9S8KltLkj8tdlEIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XiTL4w9S8KltLkj8tdlEIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "X-EX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dvz9mFWSe_1LoPFwkrAW1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dvz9mFWSe_1LoPFwkrAW1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "i2cX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["43Mh5txMzJNoI6svI0SbQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["43Mh5txMzJNoI6svI0SbQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "j2cX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ll6esE1FGRvBZYuvkkd9xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ll6esE1FGRvBZYuvkkd9xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "juEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u263nW_qRlDonfyrGeQDiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u263nW_qRlDonfyrGeQDiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "pWcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HXFKn82mEOX8HQ_gs-IncA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HXFKn82mEOX8HQ_gs-IncA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "puEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "wOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ri5pW0t6s5lXro7RV78vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ri5pW0t6s5lXro7RV78vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "x-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZuEX7YYByh-A-BiyHvcj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["88HbSgrFc7eu2ajG25n_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["88HbSgrFc7eu2ajG25n_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2tgX7YYBBkbVtX3nHC_T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZzgSlsPZ6clXTiCMgWgdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZzgSlsPZ6clXTiCMgWgdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GGcX7YYBO2e_P_QbG5ZA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YP8JnSQ_Ut135bkI0n3-mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YP8JnSQ_Ut135bkI0n3-mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "veEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1FaSioKA40L9zkdwioOgrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1FaSioKA40L9zkdwioOgrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "weEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XELwzOLZflYDWTPYdFF2sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XELwzOLZflYDWTPYdFF2sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "xuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9l-A9YSFZEx7xj9VRJkH9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9l-A9YSFZEx7xj9VRJkH9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "yeEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uS4XSdjWfr8HqtkqPLeplg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uS4XSdjWfr8HqtkqPLeplg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "BmcX7YYBO2e_P_QbKZ_b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "x9gX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "G9gX7YYBBkbVtX3nOTzV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qtgX7YYBBkbVtX3nOj0O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7v_9tj1Xdjf6ueI8cLpeFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7v_9tj1Xdjf6ueI8cLpeFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "3-IX7YYByh-A-BiyPAaT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nYdp-GsAnSl5-IbdkTmdVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nYdp-GsAnSl5-IbdkTmdVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "MdgX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0a9NYjgpQ8iJm6UEGWaqBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0a9NYjgpQ8iJm6UEGWaqBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "H-IX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zi9qwHR7xXnRG3K6zMFidA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zi9qwHR7xXnRG3K6zMFidA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ydgX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1PJ7alh7hduQ9X2Hed5fQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1PJ7alh7hduQ9X2Hed5fQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Y9gX7YYBBkbVtX3nO0KT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jSF_4ZsjFVCSFvLBYrF7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jSF_4ZsjFVCSFvLBYrF7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aeIX7YYByh-A-BiyOwXV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ohsTjz0QiBj_Cb9rZpyfbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ohsTjz0QiBj_Cb9rZpyfbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qdgX7YYBBkbVtX3nOj0O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MNgX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k_oZ8en1b76mhL2hb9QZEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k_oZ8en1b76mhL2hb9QZEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "itgX7YYBBkbVtX3nPUb7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k3oNyMpKPtIZvbqyj2iu3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k3oNyMpKPtIZvbqyj2iu3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "T2cX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epnqAxFCsbQSVItuSr9wEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epnqAxFCsbQSVItuSr9wEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} {"create": {"_index": "profiling-events-all", "_id": "QeIX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5WP7zBBeosgRaaVkLBLtbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5WP7zBBeosgRaaVkLBLtbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "uOIX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9_N4V4eyXNvSUkP63EDRaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9_N4V4eyXNvSUkP63EDRaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "auIX7YYByh-A-BiyOwXV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "dmcX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XIeRmjQa-cdLu_obwSXJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YuIX7YYByh-A-BiySxi3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "c2cX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uNgX7YYBBkbVtX3nSkv7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1NlId-XCC76cuSxZt5Lxmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1NlId-XCC76cuSxZt5Lxmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "92cX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HhM1qSGV_MIoNaDRcG0zzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HhM1qSGV_MIoNaDRcG0zzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E-IX7YYByh-A-BiyTBx8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9stHUYeSwgP0eNPB72Qfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9stHUYeSwgP0eNPB72Qfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YOIX7YYByh-A-BiyShVm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DOIX7YYByh-A-BiyTBo1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDlisnvqa1LLQOmq1q0Eow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDlisnvqa1LLQOmq1q0Eow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B-IX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JpUjFqAsKBeLb9NfBebEOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JpUjFqAsKBeLb9NfBebEOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} {"create": {"_index": "profiling-events-all", "_id": "BeIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BdZpdZPV1aCql-5O4HKoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BdZpdZPV1aCql-5O4HKoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "nmcX7YYBO2e_P_QbSsgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yoM9M2D5c2dT8Htn9_oXJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yoM9M2D5c2dT8Htn9_oXJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "-GcX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "FmcX7YYBO2e_P_QbS8o-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "R2cX7YYBO2e_P_QbTM67"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "FWcX7YYBO2e_P_QbTdAJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6mcX7YYBO2e_P_QbXNt0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qzypMgPc5-kylY6xJuiLOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qzypMgPc5-kylY6xJuiLOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vmcX7YYBO2e_P_QbWtY3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OXyCKNOqgn9jhCQIhnA3bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OXyCKNOqgn9jhCQIhnA3bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HmcX7YYBO2e_P_QbWdTt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uvyv7L8ko2gzorH4AufYNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uvyv7L8ko2gzorH4AufYNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nmcX7YYBO2e_P_QbaOMC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JOxaiAnBjaW3GYfe6qy1IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JOxaiAnBjaW3GYfe6qy1IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "nmcX7YYBO2e_P_QbXt8U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DxFol4n0qYD3Of3DJSMdCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DxFol4n0qYD3Of3DJSMdCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "HeIX7YYByh-A-BiyaCtL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U4po32CSkExl1ZPtuJCrxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U4po32CSkExl1ZPtuJCrxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6WcX7YYBO2e_P_QbXNt0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "JeIX7YYByh-A-BiyWSCu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Ts2y4YyapGMgF7J-xZf2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Ts2y4YyapGMgF7J-xZf2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "qNgX7YYBBkbVtX3nd2ng"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rOjpZXDzMuqgXHFTBocx6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rOjpZXDzMuqgXHFTBocx6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["boIzddYopai9UjphB37nhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["boIzddYopai9UjphB37nhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2tFOqVqvUsAbYZdV5cBjZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2tFOqVqvUsAbYZdV5cBjZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WVvi39LiS0vDLyXeSsVBkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WVvi39LiS0vDLyXeSsVBkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "49gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Vn89WBJR0kfSEtwzji_DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Vn89WBJR0kfSEtwzji_DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9ixj_DfLg90_yfQ28UoVPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9ixj_DfLg90_yfQ28UoVPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "O9gX7YYBBkbVtX3neW4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dzNbdSn_Zmll2UbzN8G_xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dzNbdSn_Zmll2UbzN8G_xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "StgX7YYBBkbVtX3neGso"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjIdYJVrZu9s5d1oY1Nu2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjIdYJVrZu9s5d1oY1Nu2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "zNgX7YYBBkbVtX3nenK1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VA9pzgeN6ktxH15wu8p4_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o-13S3KGROj5sAwzFCFlIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o-13S3KGROj5sAwzFCFlIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "zuIX7YYByh-A-Biydzcq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcPyRyUca9zMz9MzDr7aHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcPyRyUca9zMz9MzDr7aHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0AOiOeHK39oqr5eNGKOkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "CWcX7YYBO2e_P_QbefLC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "KGgX7YYBO2e_P_Qbtih6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uDeXsyAM1ry2gjp5w7NiBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uDeXsyAM1ry2gjp5w7NiBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MmgX7YYBO2e_P_QbtSOl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jzl9yNFalNrGUBfMA8dCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jzl9yNFalNrGUBfMA8dCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uGgX7YYBO2e_P_QbtiY7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lhRKXGZ_rGWBWtmKBhIK9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lhRKXGZ_rGWBWtmKBhIK9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HOIX7YYByh-A-Biyum09"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tTLMNSROu_QuNHWgUcK-cw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tTLMNSROu_QuNHWgUcK-cw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "KWgX7YYBO2e_P_Qbtih6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mu3LxyO4KAp-wuV_ZLnj9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mu3LxyO4KAp-wuV_ZLnj9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "t2gX7YYBO2e_P_QbtiY7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "1eIX7YYByh-A-Biytmj0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "i-IX7YYByh-A-BiyuGvz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngVpwVwgO4T6nb-06wRKNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ngVpwVwgO4T6nb-06wRKNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "CGgX7YYBO2e_P_QbtSXs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cn9LwUauC1J8ZOAWhiijEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cn9LwUauC1J8ZOAWhiijEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "deIX7YYByh-A-Biyx3Rw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3bvdBbzWBhiwCbUR097jxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3bvdBbzWBhiwCbUR097jxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "C9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zEgMCcIzExJibQaME-QTUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zEgMCcIzExJibQaME-QTUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSKLEOnt4ZdPD9kAJmGjbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSKLEOnt4ZdPD9kAJmGjbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I_HDFrDrvMGFkT8QKDM_1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I_HDFrDrvMGFkT8QKDM_1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_dgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["61D2Ngpext0er1dkiTlWdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["61D2Ngpext0er1dkiTlWdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NmgX7YYBO2e_P_QbxzKv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZgDBfvwbGE_xfAHsOQTl1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZgDBfvwbGE_xfAHsOQTl1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "99gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ptgX7YYBBkbVtX3nx7cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S27o98amSiSOrrMpOLWfUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S27o98amSiSOrrMpOLWfUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lzkdB1rDpdcMviENXaE3og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lzkdB1rDpdcMviENXaE3og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "-NgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GAokC6Zv-UfUvWotAYqkSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GAokC6Zv-UfUvWotAYqkSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "-WgX7YYBO2e_P_Qbxi0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9f_l81ae-1ee1EVm4QM8Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9f_l81ae-1ee1EVm4QM8Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZfHuek4_BlYQGu77SdKXnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZfHuek4_BlYQGu77SdKXnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "tGgX7YYBO2e_P_Qb51bB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PEG6EskooaHoKsVK7C4oiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PEG6EskooaHoKsVK7C4oiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "luIX7YYByh-A-Biy6o0H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J_s4rwypZtS7LrmmQEztWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J_s4rwypZtS7LrmmQEztWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "8NgX7YYBBkbVtX3n6NKY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl2yvlpS90Ypoy2M-skpww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl2yvlpS90Ypoy2M-skpww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YdgX7YYBBkbVtX3n5MiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wPT7HKHltRvqN1m-PQHbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wPT7HKHltRvqN1m-PQHbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuIX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7LeOL85PVjOg5Bi-S-b9RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7LeOL85PVjOg5Bi-S-b9RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "A9gX7YYBBkbVtX3n5coI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mnd31Vnx6i_r5WV2hM5bDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mnd31Vnx6i_r5WV2hM5bDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "tGgX7YYBO2e_P_Qb6Vmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mD3V1vgmmXX17aY1Cc2kog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mD3V1vgmmXX17aY1Cc2kog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "--IX7YYByh-A-Biy5IDD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6xGHh1u34DhHIbK4IY9KBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6xGHh1u34DhHIbK4IY9KBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "AtgX7YYBBkbVtX3n5coI"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nwg53akFiAKZJpHiqCwAbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "zGgX7YYBO2e_P_Qb5lIe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvqyEWe3mfnleSrT6I-tHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvqyEWe3mfnleSrT6I-tHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "7OIX7YYByh-A-Biy5YKL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["chW5HPktN4b6gYA4Rc8JLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "394233360897966"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["chW5HPktN4b6gYA4Rc8JLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "394233360897966"} {"create": {"_index": "profiling-events-all", "_id": "V-IX7YYByh-A-Biy5oau"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoPYq5Aw6d1wKTV_c9_UOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoPYq5Aw6d1wKTV_c9_UOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "C2gX7YYBO2e_P_Qb6Vgq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MT3qrLXJyyFa5mMadoI1ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MT3qrLXJyyFa5mMadoI1ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "peIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AbrWqkkHes4LJTZoISq1qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AbrWqkkHes4LJTZoISq1qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5NgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e16fjaKgAD3mYYzxm1wovw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e16fjaKgAD3mYYzxm1wovw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P9gX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["An9XjOoTbvCjFLzBdFgpcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["An9XjOoTbvCjFLzBdFgpcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "T9gX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aNwZEBoTlKLxCLfBZC1w5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aNwZEBoTlKLxCLfBZC1w5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IdgX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whKjwtCVRYeUJb75GUn0Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whKjwtCVRYeUJb75GUn0Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "wOIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0eeGCGwvAUwir03MFPS_Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0eeGCGwvAUwir03MFPS_Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MNgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-972spXlr1Uz9Eo6KX-Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-972spXlr1Uz9Eo6KX-Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "o2gX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ak0vCXdm7bXbIhn8MGGkXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ak0vCXdm7bXbIhn8MGGkXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VtgX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6NkVutVoJ0m5j8aVYyp0Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "H9gX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "puIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxJxXuPY21qu4ZQy4Vt22Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxJxXuPY21qu4ZQy4Vt22Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "JdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pMpUaohMW1U4VleTGyqfTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pMpUaohMW1U4VleTGyqfTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "cOIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "e-IX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S4QSTs49REr7TSb5qbbUGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S4QSTs49REr7TSb5qbbUGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "pdgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AuqG1b42cXBbKiNJcLaKpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AuqG1b42cXBbKiNJcLaKpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "6OIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "c-IX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "8GgX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5Li3P-xnCI7OZMKdo3HZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5Li3P-xnCI7OZMKdo3HZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "keIY7YYByh-A-BiyE6vm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l-jFO6ESsoHoN6gyefmDNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l-jFO6ESsoHoN6gyefmDNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tGylLXpBEK5V82qwwulbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tGylLXpBEK5V82qwwulbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "f2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PeIY7YYByh-A-BiyGLXe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N8BeXVnVH94z3kcMpdZVRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N8BeXVnVH94z3kcMpdZVRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "c2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-WmMHqB8hxsW-_Rm9LtnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-WmMHqB8hxsW-_Rm9LtnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LO6aOR7Ea3Syr6nMwmmQpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LO6aOR7Ea3Syr6nMwmmQpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViM-Jm475_B9Vqa7GKjNDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViM-Jm475_B9Vqa7GKjNDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rtgY7YYBBkbVtX3nF_jI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kKgAz5hOlhhX3Wlk6XRFig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kKgAz5hOlhhX3Wlk6XRFig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "emgY7YYBO2e_P_QbGHpR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FhJv1Eqg9cSQinz3oYYW7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FhJv1Eqg9cSQinz3oYYW7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "y-IY7YYByh-A-BiyFrB7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RcNPwSZ_RRjUo3KUMQkJwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RcNPwSZ_RRjUo3KUMQkJwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "eWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BRhCpm29bfxo9hoGCffNog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BRhCpm29bfxo9hoGCffNog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "bGgY7YYBO2e_P_QbJn6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jrkadKmUMKJNM1LSCgDP0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jrkadKmUMKJNM1LSCgDP0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IOIY7YYByh-A-BiyJLxn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yyOgLKUZuSQUa5BkL2jvpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qNkY7YYBBkbVtX3nKAVC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yyo4WtSHD0QUjPwdj4k3Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yyo4WtSHD0QUjPwdj4k3Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YuIY7YYByh-A-BiyKMoI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GLQz44vVtWQ5ppKiz2gP-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GLQz44vVtWQ5ppKiz2gP-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2-IY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KmEOZVutONuRJavBSb15QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KmEOZVutONuRJavBSb15QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "j-IY7YYByh-A-BiyJLod"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GV_l_2Wb3JncTPL0Vwsngg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GV_l_2Wb3JncTPL0Vwsngg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "wuIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dARW4-0nYV7kZ3Ww_-fsnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dARW4-0nYV7kZ3Ww_-fsnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0tkY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y81csNzyXiJ1pTbECyjzlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y81csNzyXiJ1pTbECyjzlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "09kY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ium0M6gtUd_sKOi4qCX1xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ium0M6gtUd_sKOi4qCX1xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nNAgf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O0Oa-d1JiNvkWrWHXAez_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O0Oa-d1JiNvkWrWHXAez_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gOIY7YYByh-A-BiyNtki"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ZMz3dJFvpx5F2-aEpHESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ZMz3dJFvpx5F2-aEpHESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wmgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydrSldLsPTdTf2IWl3R-qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydrSldLsPTdTf2IWl3R-qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MeIY7YYByh-A-BiyNNjt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "AWgY7YYBO2e_P_QbN5Bp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["33M_jV1gmHGxTPvzVsOhJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["33M_jV1gmHGxTPvzVsOhJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "uuIY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Cu6oYF8CgThrL_OjB6KKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Cu6oYF8CgThrL_OjB6KKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "w-IY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PO3q1woza9yi3RpmXDEueA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PO3q1woza9yi3RpmXDEueA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "wGgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G81V791m7uA9YBPgoQEn8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G81V791m7uA9YBPgoQEn8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "MOIY7YYByh-A-BiyNNjt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jliDtdpQ5AYvFVIEkH2R2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jliDtdpQ5AYvFVIEkH2R2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "8WgY7YYBO2e_P_QbNoxr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oaHIiYNNlfu1QZtM8GPcUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oaHIiYNNlfu1QZtM8GPcUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vOIY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjcwmP94p5_9XdWwQfdoTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjcwmP94p5_9XdWwQfdoTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbN5Gs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q3gIWoUxhIk-V7r01h-8cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q3gIWoUxhIk-V7r01h-8cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "gWgY7YYBO2e_P_QbNYvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o3RzId6UYrkAkG0OoSJYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o3RzId6UYrkAkG0OoSJYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "92gY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42JG9a6NRfwi2CO7Z1RPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["42JG9a6NRfwi2CO7Z1RPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "SGgY7YYBO2e_P_QbOJVz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3iq4oJQ3VCG0e1sWoxtkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3iq4oJQ3VCG0e1sWoxtkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbNYvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gm1XQ2HBQFDtWIP658EsEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gm1XQ2HBQFDtWIP658EsEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "Z2gY7YYBO2e_P_QbVarR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4atjVCntPFZjlZxUD6MXCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4atjVCntPFZjlZxUD6MXCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "a2gY7YYBO2e_P_QbVq6S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nMRtZlSwaA-3XiYGlSgMRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nMRtZlSwaA-3XiYGlSgMRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mOIY7YYByh-A-BiyU_DV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "idkY7YYBBkbVtX3nVRw-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Tf-YsisMn-8BkdhwRUXpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Tf-YsisMn-8BkdhwRUXpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "Y-IY7YYByh-A-BiyUu3D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MkzulSfrhjve_NGjxalUxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MkzulSfrhjve_NGjxalUxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "gGgY7YYBO2e_P_QbVqw4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2RyPkubYvOhcCvhjZgdRTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2RyPkubYvOhcCvhjZgdRTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "JdkY7YYBBkbVtX3nUxcK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PLWIfk3kyJVpG6Pe2YW5BQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PLWIfk3kyJVpG6Pe2YW5BQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "meIY7YYByh-A-BiyU_DV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "2mgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VgHBJuj56ocTcdUEuVUkvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VgHBJuj56ocTcdUEuVUkvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mtkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NizhfNviinbrObC9ItpaWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NizhfNviinbrObC9ItpaWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y9kY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtPrc0RhZSbX5O68FSRayg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xtPrc0RhZSbX5O68FSRayg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mWgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eP_FGCwl0PRxWWvmJlwk5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eP_FGCwl0PRxWWvmJlwk5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "12gY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkkcFOm60ARum3t1RkmFhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkkcFOm60ARum3t1RkmFhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ENkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdughXTyBAtPHlCiLsLIpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdughXTyBAtPHlCiLsLIpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "E9kY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e-pIZo86wrOcd_F3vppZSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e-pIZo86wrOcd_F3vppZSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MmgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "m2gY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "iWgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2T6ASeyC2T0swmyL22ngjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2T6ASeyC2T0swmyL22ngjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "2GgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wXgj8vfV7ExDQcf7NHp5Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wXgj8vfV7ExDQcf7NHp5Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1WgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["743gS6kqzP62ApqBY3aWAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["743gS6kqzP62ApqBY3aWAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "NOIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oqbb6FakSaKBSmm5UVh16A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oqbb6FakSaKBSmm5UVh16A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "GNkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70FXRFUPPXVTyb52_Dovhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70FXRFUPPXVTyb52_Dovhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6WgY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFNJ-Y5i5xbWccne1CdTAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFNJ-Y5i5xbWccne1CdTAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "0WgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XkN81O9rpvZ7Hq2p_bCXWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XkN81O9rpvZ7Hq2p_bCXWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "iGgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbHTlOSio2bcFnLJVCzI_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbHTlOSio2bcFnLJVCzI_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "AGgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_8VdmeZ5UOnYprIIrYRWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_8VdmeZ5UOnYprIIrYRWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "02gY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZB4LrFY55GOwy7SJHFGQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZB4LrFY55GOwy7SJHFGQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "m2gY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcgTGw0xa6gEK3NEJ5iH1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcgTGw0xa6gEK3NEJ5iH1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "nmgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jmx0gHeNEF8HBgePt0BNVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jmx0gHeNEF8HBgePt0BNVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "FOIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s3eG1ITOPVsdH2H5YruQiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s3eG1ITOPVsdH2H5YruQiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "LWgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyZBUJjFaFOr4hFXJVonyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyZBUJjFaFOr4hFXJVonyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "J2gY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHBGm9hT2Ps-15ceIGS3fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHBGm9hT2Ps-15ceIGS3fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "MuIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MvydvJcdA5Fm40P_1i2ixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MvydvJcdA5Fm40P_1i2ixQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0mgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "UuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z7bOHlSkibuBBI3Vf-N5_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z7bOHlSkibuBBI3Vf-N5_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iv80T_6PcLzWJ9weG26b5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iv80T_6PcLzWJ9weG26b5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YBrq3-KR1ovSakEx4BXycQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YBrq3-KR1ovSakEx4BXycQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-gwAhagkJcxRJ6NcHmc9Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-gwAhagkJcxRJ6NcHmc9Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} {"create": {"_index": "profiling-events-all", "_id": "SeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "YeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "XuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8wMbNj2bmC_k-f1sjP1tvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "22781733237518"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8wMbNj2bmC_k-f1sjP1tvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "22781733237518"} {"create": {"_index": "profiling-events-all", "_id": "GeMY7YYByh-A-BiygQrM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BXyGdP4pSqRCS_nYG5jHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BXyGdP4pSqRCS_nYG5jHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Q-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EQ-MP_l-CkrAJlJbFI8e3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EQ-MP_l-CkrAJlJbFI8e3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ReMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qft_3sVVVVKL2SEz3KAyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qft_3sVVVVKL2SEz3KAyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pc3wbonmXheS0jJ7LgcLWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pc3wbonmXheS0jJ7LgcLWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qc4K52prFTkYQaEkp2a1aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qc4K52prFTkYQaEkp2a1aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["riI11_6NUOJGpJKmwVPhYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["riI11_6NUOJGpJKmwVPhYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ya1CUr1oSygfbTjmbb4XLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ya1CUr1oSygfbTjmbb4XLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1eMY7YYByh-A-BiydwlR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPkYvKamsexuAvXWN9NtXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPkYvKamsexuAvXWN9NtXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "cmgY7YYBO2e_P_Qbg9Ru"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fWJaqb09QzwUMPXDtHMSXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "Z-MY7YYByh-A-BiyhRJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["32T4OaSlAZyX3gvcGH9I7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["32T4OaSlAZyX3gvcGH9I7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SaK90oQRsfih9wvkMg2Xgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SaK90oQRsfih9wvkMg2Xgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "WOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "MtkY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6u9I1yH1QSX15dNTqAV9bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6u9I1yH1QSX15dNTqAV9bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "f9kY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JtidomUfrSQ73J6IJRGkGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JtidomUfrSQ73J6IJRGkGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_uMY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pA-dO_FbLIeCPNajC9my7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pA-dO_FbLIeCPNajC9my7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "6GgY7YYBO2e_P_QbkuZr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wYQMafKDTOM5M3m09YsCqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wYQMafKDTOM5M3m09YsCqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "iWgY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "CWgY7YYBO2e_P_QbkOHY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mxeu9v4mR_RhYkEQA098gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mxeu9v4mR_RhYkEQA098gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2tkY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NmgY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRszVWqkXDpjwjOG8s8zHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRszVWqkXDpjwjOG8s8zHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CGgY7YYBO2e_P_QbkOHY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_7SjIJ79HdCt2_IZxFKFsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_7SjIJ79HdCt2_IZxFKFsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "29kY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BAgXx8nEHPgn_EenyoZUug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BAgXx8nEHPgn_EenyoZUug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "NNkY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IJ27fYwHthmwJsRGiAhneg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IJ27fYwHthmwJsRGiAhneg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9GgY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8aa5KIF0DFsrJsoVvEfajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8aa5KIF0DFsrJsoVvEfajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "_OMY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "F2gY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BQFGAMPCwBFVLxJFRXAPGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BQFGAMPCwBFVLxJFRXAPGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "CWgY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JdkY7YYBBkbVtX3ns3Wc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3nsW5T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["twP61I8BoQSVRAEu87hitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w-MY7YYByh-A-BiysSvY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tdkY7YYBBkbVtX3nsnET"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5wRxzE9W7SQh2wOeWm08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5wRxzE9W7SQh2wOeWm08A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "8dkY7YYBBkbVtX3nsW-T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5BsomDuMI7TNerJ9VXCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5BsomDuMI7TNerJ9VXCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "kOMY7YYByh-A-BiypicL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "6dkY7YYBBkbVtX3nsGgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "cWkY7YYBO2e_P_Qbvw38"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "u9kY7YYBBkbVtX3nwHk9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fN-FycZQoxGhCMzfnhVVLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fN-FycZQoxGhCMzfnhVVLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pGkY7YYBO2e_P_QbwxTd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lpK6Grg_nuFwWoAfFimM3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lpK6Grg_nuFwWoAfFimM3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HuMY7YYByh-A-BiyxDwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdKC-JUXcZ1pC3Sh2b32Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdKC-JUXcZ1pC3Sh2b32Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EmkY7YYBO2e_P_QbvwpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O4mxiScDrXWyuZch_ISgwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O4mxiScDrXWyuZch_ISgwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} {"create": {"_index": "profiling-events-all", "_id": "otkY7YYBBkbVtX3nwHt6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wf7tYPnp7s196C4sU-0Jzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wf7tYPnp7s196C4sU-0Jzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "GuMY7YYByh-A-BiywDft"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g7q97S7Wxm4ynw0Afe3ikw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g7q97S7Wxm4ynw0Afe3ikw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "aeMY7YYByh-A-Biy1UwZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p-Vxhlw_iBQLyGOr_bdBDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p-Vxhlw_iBQLyGOr_bdBDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7tkY7YYBBkbVtX3n05Ok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SMLewOlFeXmKZa6xL_ARDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SMLewOlFeXmKZa6xL_ARDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lOMY7YYByh-A-Biy4lId"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GaCLxWirBhJtu1rdEHoD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GaCLxWirBhJtu1rdEHoD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "otkY7YYBBkbVtX3n3peC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vL8b2HSp2gXZRywmy6vg_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vL8b2HSp2gXZRywmy6vg_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wuMY7YYByh-A-Biy30wN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7orDytvaM4kAysEKbhD_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7orDytvaM4kAysEKbhD_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JeMY7YYByh-A-Biy4FGQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CdDJAFAwLQDf0PF-efgD8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CdDJAFAwLQDf0PF-efgD8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "aOMY7YYByh-A-Biy1UwZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IYMwZEdK-ayc3885mQPPQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IYMwZEdK-ayc3885mQPPQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "mtkY7YYBBkbVtX3n35pG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mG9aHndsiNY_nqP4GgB4qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mG9aHndsiNY_nqP4GgB4qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "0NkY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdOVIhl_n9Wje--mxIItNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdOVIhl_n9Wje--mxIItNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "u2kY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fs1_jCyW9_zAyxKO8CT9iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fs1_jCyW9_zAyxKO8CT9iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E-MY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mR56EbpVUJgNap7DeaEUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mR56EbpVUJgNap7DeaEUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1WkY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpnPy7d68UGd_rGkl2xRGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpnPy7d68UGd_rGkl2xRGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UNkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xUZ2KALaaa1kqxkaDKw_ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xUZ2KALaaa1kqxkaDKw_ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pmkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRaj-uYSzr92rlMpzMvXrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRaj-uYSzr92rlMpzMvXrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "oWkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MSb55knyBJ7ClwjPXRNwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MSb55knyBJ7ClwjPXRNwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "bmkY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["An3C9eVMXyiMNHRbyJ92Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["An3C9eVMXyiMNHRbyJ92Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "F9kY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0uG7yGrqQSSwb05Hvydocg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0uG7yGrqQSSwb05Hvydocg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "A2kY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrNic4YiyR-5vceCdE4IBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrNic4YiyR-5vceCdE4IBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "POMY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["35FqNK7oEk5oJ-fRh4hptw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["35FqNK7oEk5oJ-fRh4hptw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "PuMY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pRkjCHqKoFZiqVbDY-3hgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pRkjCHqKoFZiqVbDY-3hgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ENkY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9NG-4Nz_av4xih9kQ0ul7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9NG-4Nz_av4xih9kQ0ul7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LuMY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEm7NQBrTH5QHQqIE3fDrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEm7NQBrTH5QHQqIE3fDrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "omkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PicgGG7wbtdmW_0WJKDC-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PicgGG7wbtdmW_0WJKDC-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "pWkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Hi1xqW7gnqMR0vJ_jyI7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Hi1xqW7gnqMR0vJ_jyI7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "uGkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dwajp9wqywvmsgNufMFSDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dwajp9wqywvmsgNufMFSDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "z9kY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZUry6bTXYygY6NfqwYQNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pZUry6bTXYygY6NfqwYQNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "FeMY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4lZbIrmqX0dcJVBKGnWp9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LWkY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uRrKKaf_gbp1De235zmPrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "UtkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tU6VK5zLihoNeJDRhxPnUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tU6VK5zLihoNeJDRhxPnUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "U9kY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_bLJTesE_9jdes5CmhuIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_bLJTesE_9jdes5CmhuIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "02kY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "adkY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tWMg8g0Ama4NLtBSkd9DDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tWMg8g0Ama4NLtBSkd9DDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "DGkY7YYBO2e_P_Qb_kKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qb72Yobg_yLohYI9gpP09w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qb72Yobg_yLohYI9gpP09w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2NkY7YYBBkbVtX3n_7SK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJWsVLjM_WfOc08-LJ2QNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJWsVLjM_WfOc08-LJ2QNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QGkZ7YYBO2e_P_QbAUXL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8WkZ7YYBO2e_P_QbAkYL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x6zpGPd4X75Br-x7FtPi9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x6zpGPd4X75Br-x7FtPi9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y2kY7YYBO2e_P_Qb_0PP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzgA-Ra9fc7BJY4Bt8KMwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzgA-Ra9fc7BJY4Bt8KMwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ymkY7YYBO2e_P_Qb_0PP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "N-MZ7YYByh-A-BiyIY5d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KGvPQmnNzLHCdXio5WQKoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KGvPQmnNzLHCdXio5WQKoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-all", "_id": "UuMZ7YYByh-A-BiyIZCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsokQSi3I4rVgRAwb8fhbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "I9kZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9xPGRL1R79V33i_hG1HhlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9xPGRL1R79V33i_hG1HhlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "--MZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["njwJdQnjALlyqqAczuUyDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["njwJdQnjALlyqqAczuUyDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZeMZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hAqeyX4eeyZmtR_G1TRong"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hAqeyX4eeyZmtR_G1TRong"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "POMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u_qmAc1-GJOSVHEZfMGXRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "MmkZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ytkZ7YYBBkbVtX3nHcyi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E4k8bw63d-M6fpFO-uzDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E4k8bw63d-M6fpFO-uzDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "O-MZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OtPO4_Cde7GWru30XAUPmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xmkZ7YYBO2e_P_QbH1kG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gnrxxuGE4axnb7TUS1R0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gnrxxuGE4axnb7TUS1R0kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "R-MZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o7QpavKpj9xFAwgY9jRDHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o7QpavKpj9xFAwgY9jRDHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QuMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZvwiecS6ape8IUAIjG0SKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZvwiecS6ape8IUAIjG0SKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "x2kZ7YYBO2e_P_QbH1kG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ysNAFKLCXGa-oh7cLstrPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ysNAFKLCXGa-oh7cLstrPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "xOMZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1zlIQyRrwSjFiz_6jtaVdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1zlIQyRrwSjFiz_6jtaVdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "StkZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCS0frHA5BpnX_dWNuYGnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCS0frHA5BpnX_dWNuYGnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "M2kZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "S9kZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IHmYRt_J6aiZwjhJjkM_cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IHmYRt_J6aiZwjhJjkM_cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "pWkZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "-eMZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yhXdoqpEpMhseJBw06VOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yhXdoqpEpMhseJBw06VOcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "yNkZ7YYBBkbVtX3nIM9b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "i-MZ7YYByh-A-BiyIYwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_wGEVT2AG1CIU-Fo31czqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_wGEVT2AG1CIU-Fo31czqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JeMZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lDXPFryqVEu45-jyL6avaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lDXPFryqVEu45-jyL6avaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "N2kZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZmkZ7YYBO2e_P_QbLWYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzEUg3uJDH9y4ttS90mXeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzEUg3uJDH9y4ttS90mXeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OWkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_upsguCu_7bMgt4lbFjaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_upsguCu_7bMgt4lbFjaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OmkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L037eGgcPD3WzV8I4bd-pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L037eGgcPD3WzV8I4bd-pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5dkZ7YYBBkbVtX3nLtZX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vXqajcj1VS3ltzfGYAymZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vXqajcj1VS3ltzfGYAymZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PGkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PcOQ99O4RLe8hzXLIXv3cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PcOQ99O4RLe8hzXLIXv3cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "O2kZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cdup7ftqfVJjPGHBzmFw9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cdup7ftqfVJjPGHBzmFw9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "D9kZ7YYBBkbVtX3nLdRG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m6Tpe3Eo4Y_x5AamWL8GLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m6Tpe3Eo4Y_x5AamWL8GLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "F2kZ7YYBO2e_P_QbL2tQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "4mUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mTY_R13CdFxl1Dzfo0t_sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mTY_R13CdFxl1Dzfo0t_sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "898U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvp6aS0dEuRo-26h2BBtzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qvp6aS0dEuRo-26h2BBtzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "J98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aqT_grJNIBLHd_G0Dg8D7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aqT_grJNIBLHd_G0Dg8D7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Ld8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYRd432ews7Dx4JLAryfRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QYRd432ews7Dx4JLAryfRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "LdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxA4A64BqMWXOrNZbvu1iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxA4A64BqMWXOrNZbvu1iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nd8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["olxENnVm98xfSUbHZlsIjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["olxENnVm98xfSUbHZlsIjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6waWCOFDS45u1AgmybjaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6waWCOFDS45u1AgmybjaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNi8L_o5RGudv-i_EaBkuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNi8L_o5RGudv-i_EaBkuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Bt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bFqi88DUwWkr_8kK2-MSRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bc2bznRO7nqTExYFV3_HmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bc2bznRO7nqTExYFV3_HmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Id8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kEXROxnWraXoAAVP6f28xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kEXROxnWraXoAAVP6f28xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Nt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0MR1l5n93T9RL0AOopmz6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0MR1l5n93T9RL0AOopmz6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LNYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1uuXblpY2G2lwZnvrUD5aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1uuXblpY2G2lwZnvrUD5aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Gd8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "HN8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_RxpKSu5Jrbu0E93Q0Uijg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_RxpKSu5Jrbu0E93Q0Uijg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ONYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "w2UU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "3N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPOCasATDNT8t_l-saejjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Hd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jgB9csnI_nQtRWte6ri7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-jgB9csnI_nQtRWte6ri7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "emUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6jaCYXksX4gXZ3wnqIzP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6jaCYXksX4gXZ3wnqIzP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "498U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PHdMxxhN18mCCoCEYhigQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PHdMxxhN18mCCoCEYhigQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MNYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eBcAbPDQFdqKTTFWbEKpQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eBcAbPDQFdqKTTFWbEKpQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rtUU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bW6TIEkYi2BgDqcPdhRTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bW6TIEkYi2BgDqcPdhRTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "J98U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nu3lDXuVVBXuKYArc5JOpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nu3lDXuVVBXuKYArc5JOpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9KuldbllYEEo0KaNazsUsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9KuldbllYEEo0KaNazsUsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Dt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "Hd8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2ssOcOjXCCaYX7ZddtppA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2ssOcOjXCCaYX7ZddtppA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "K9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4vYC-zQmWI-i2_kgUaJOlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4vYC-zQmWI-i2_kgUaJOlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "KN8U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0CzIBbH5H33fNR_K-h13Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0CzIBbH5H33fNR_K-h13Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "2N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lq2lfj5xkTFOSbFr4_BQ2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lq2lfj5xkTFOSbFr4_BQ2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dt_oZZ2sQo9aPZAJj8jPTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dt_oZZ2sQo9aPZAJj8jPTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "-N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "_98U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tbbZI-xVBmxiBDej_7HL0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tbbZI-xVBmxiBDej_7HL0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Md8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y10qk8LRFU3Juh0Dxf4kmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y10qk8LRFU3Juh0Dxf4kmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "3d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVp49GPnTVvsmlWLVk3KEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVp49GPnTVvsmlWLVk3KEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "Fd8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3r97L1FcTYBv0NSBEOY9kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3r97L1FcTYBv0NSBEOY9kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "n98U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oBHen4DGgt6AeseHpHNhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oBHen4DGgt6AeseHpHNhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "fmUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zl3Lkb99x2SkFZzpGc0tBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zl3Lkb99x2SkFZzpGc0tBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "Td8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGohEkA_f1FytpRadmhYEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGohEkA_f1FytpRadmhYEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Yt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k7UKTjtjxgCi_dJkL48hVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k7UKTjtjxgCi_dJkL48hVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jXPLTMNK5Wt6gi7cqc9W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jXPLTMNK5Wt6gi7cqc9W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hGUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAJ3qCHOXo3xE1EGVnJuHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAJ3qCHOXo3xE1EGVnJuHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kt8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6eTapoSsPn6zyk1_cvguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6eTapoSsPn6zyk1_cvguaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "3t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u2X_MgQedAiUni8lXoCIrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u2X_MgQedAiUni8lXoCIrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bdYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "3N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s_LM4tNvgy4k7bBRfDcNqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s_LM4tNvgy4k7bBRfDcNqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "a2UU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hpyllfzpp8_nbwc9QqhNUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hpyllfzpp8_nbwc9QqhNUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Tt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGp7_YvYovHXJURqI7m4fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGp7_YvYovHXJURqI7m4fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "a98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3cwgDFIm8qbQUpUKfKmwrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3cwgDFIm8qbQUpUKfKmwrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "et8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMnm1x59Hw93aRPLKQaavQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UMnm1x59Hw93aRPLKQaavQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "hd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fpy7i-LnOT8PL2nB1iKlIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fpy7i-LnOT8PL2nB1iKlIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "md8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_fL9Sy2i4FwG6fgla2SkUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_fL9Sy2i4FwG6fgla2SkUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "zd8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Z-5rAaOPhdXYQmI34Fo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Z-5rAaOPhdXYQmI34Fo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Wt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6WYxVgKRkmzkkIzHH-6U9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6WYxVgKRkmzkkIzHH-6U9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "XN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["48LM-A4BXorXDMlzaCgnhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["48LM-A4BXorXDMlzaCgnhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "nt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6i_SCGQnGma1eU5i0B5EWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6i_SCGQnGma1eU5i0B5EWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "xt8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_PmLUDiMT9Fiy_kfGXHxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "098U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["injLhEi_92EbuwxraOUUxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["injLhEi_92EbuwxraOUUxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XdYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IKyFLy9N9kOhn3GGAEvAMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IKyFLy9N9kOhn3GGAEvAMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "298U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrLvz0R4S4ONxlxpZkei3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RrLvz0R4S4ONxlxpZkei3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eGUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtCekK_GfgQ-P7-c_JezYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KtCekK_GfgQ-P7-c_JezYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "U98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["djYzyWbheYppCF6OFaB-rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["djYzyWbheYppCF6OFaB-rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spYXnEQIsyd22QzNNaT8Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spYXnEQIsyd22QzNNaT8Yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q21MZOSvgx9xEGx7DqfZtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q21MZOSvgx9xEGx7DqfZtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ot8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dPivlAC6aaFKRkKmSRwlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dPivlAC6aaFKRkKmSRwlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFbB3COAmbAYRaYoh99KYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFbB3COAmbAYRaYoh99KYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8tYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyNpeOOTv9ufpl_gGUbV4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nyNpeOOTv9ufpl_gGUbV4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xmUU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JxEVWjcx9CTh2J891LN34g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JxEVWjcx9CTh2J891LN34g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0d8U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n-PAN0ssaXvJ6kY18i9tog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "d98U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uKWYFiw_KkWlIqqrtXASJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uKWYFiw_KkWlIqqrtXASJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rGUU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jipDuKi_84DxFQSN76f2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jipDuKi_84DxFQSN76f2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "Lt8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xpOWBBX4t2hmVnFh4nP3jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xpOWBBX4t2hmVnFh4nP3jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "ed8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9JtEJNwxEYbbvpjuHhBBig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9JtEJNwxEYbbvpjuHhBBig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "Ud8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQF0-oJ8JdkDt-6rMsRLlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQF0-oJ8JdkDt-6rMsRLlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "oN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsBNmnLs0et-noTkkUwfYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsBNmnLs0et-noTkkUwfYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "xWUU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X2j-ugZRpPjKsN5Ee5wiIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X2j-ugZRpPjKsN5Ee5wiIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "uWUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOL2fCOaJ1jf3dP2xu2v9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOL2fCOaJ1jf3dP2xu2v9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "iGUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jMGP_Z5cZtKhWETiwsHRiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jMGP_Z5cZtKhWETiwsHRiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "e98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "z98U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlylgEpMmjrNXKNFfM0qtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlylgEpMmjrNXKNFfM0qtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "vGUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "3NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ed2Wt5gOq97H8-8youFpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ed2Wt5gOq97H8-8youFpYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0OyGL51yTh9zlLSWgdw6NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0OyGL51yTh9zlLSWgdw6NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeaUM7Om2vx-z6s0bBXPMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeaUM7Om2vx-z6s0bBXPMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "j9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r17pt9-WKBMBu-MRlixjjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r17pt9-WKBMBu-MRlixjjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "p9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["npMsWxmmefd8KwLK_Ds63g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["npMsWxmmefd8KwLK_Ds63g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch10c9ij9u8WCrMXgg26Ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch10c9ij9u8WCrMXgg26Ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ttYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xr5GRqzEWQ1_fZjqV-PZpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xr5GRqzEWQ1_fZjqV-PZpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYCfW7EaPTh_vnd_DSsC5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYCfW7EaPTh_vnd_DSsC5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJw71ZYPzEs9XDrLKegdnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cJw71ZYPzEs9XDrLKegdnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-9YU7YYBBkbVtX3n7TOb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "uNYU7YYBBkbVtX3n7jes"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DJsG1PTKQj3bE1cuaZCjpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DJsG1PTKQj3bE1cuaZCjpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "atYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "dNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "f9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bhyCyaPyN3IwoOhomCtSHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bhyCyaPyN3IwoOhomCtSHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "pdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V2lnTrpVtTUaSRDF47D7-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V2lnTrpVtTUaSRDF47D7-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "q9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eg4GNNub3CPns1G5g2R71w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eg4GNNub3CPns1G5g2R71w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "vtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wux22FE_iDeB58rMJzYkuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wux22FE_iDeB58rMJzYkuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "wtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "AdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o3FJgYr9HoLMDfWyiRLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o3FJgYr9HoLMDfWyiRLq9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ltYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YIkBS-ky7rLIF1FVQXh2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YIkBS-ky7rLIF1FVQXh2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "n9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzDNpxQnzmRTQIj87w61bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzDNpxQnzmRTQIj87w61bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "oNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ips6IyoH5NuP1Ttgu1Etow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ips6IyoH5NuP1Ttgu1Etow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "odYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pkyFSPLbfCpCJS0cbldBzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Doitd-dudDRQURc3deY9nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Doitd-dudDRQURc3deY9nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62xV6FZtZmytFhVdu0rarw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62xV6FZtZmytFhVdu0rarw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "39YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t3HuJD9NhwbE9maFj9AONw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t3HuJD9NhwbE9maFj9AONw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["759vzPaqX5H2_0qTOKee0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ztYU7YYBBkbVtX3n-D_5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rzZCRVK3fR8zM07WhJJirw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rzZCRVK3fR8zM07WhJJirw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "c9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GXb3m0wsHZfeNuzhQyTYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GXb3m0wsHZfeNuzhQyTYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "d9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eviuUsW23vOjlBWQv0bv5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eviuUsW23vOjlBWQv0bv5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VfwVZh1ddTJjJNWNT0v7rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VfwVZh1ddTJjJNWNT0v7rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TakHMl9bLHFsMsirzPy3zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TakHMl9bLHFsMsirzPy3zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "l9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fHN81-0bXKBoEo0wx_S7CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fHN81-0bXKBoEo0wx_S7CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "09YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZSMUUx94Y3yXU6mhbsNCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZSMUUx94Y3yXU6mhbsNCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "19YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwPz8ygB6KQKma7nayGgkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rwPz8ygB6KQKma7nayGgkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "29YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Dsg9VMTQ4os1LWYlVehJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Dsg9VMTQ4os1LWYlVehJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dC5N-uFbcqPYrdPkLxaQXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dC5N-uFbcqPYrdPkLxaQXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "o9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CJcaXL-gkWEKk5sisV1pCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CJcaXL-gkWEKk5sisV1pCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "ddYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rmqpLjKhFVehwbUcabYxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rmqpLjKhFVehwbUcabYxkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "etYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lVm7T9NjlDcvHseuxZtScA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lVm7T9NjlDcvHseuxZtScA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "e9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kWwzipAAQMAm1ZJZNEkFsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kWwzipAAQMAm1ZJZNEkFsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f2RJTDjOG3CtdSv8hOKanw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f2RJTDjOG3CtdSv8hOKanw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "rtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xGXtUwy0WyT4ZsBj5B3XBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xGXtUwy0WyT4ZsBj5B3XBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "v9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HU4NPEh9jq0KD6Ucbp_cWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HU4NPEh9jq0KD6Ucbp_cWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "59YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6BMEwaZdEOxcFFELpK3iqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6BMEwaZdEOxcFFELpK3iqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "89YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5hj4hVJglP1Q0S9uCaavXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5hj4hVJglP1Q0S9uCaavXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WeDK4Wsp82FrbsJvJ81IVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WeDK4Wsp82FrbsJvJ81IVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "P2UU7YYBO2e_P_Qb7cxD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "d-AV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DgucPUiNzHSpH364riJw7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DgucPUiNzHSpH364riJw7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5NYV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CghM7sv0n941Gxqx3t0UfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CghM7sv0n941Gxqx3t0UfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i-AV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxNEfLJqeU0ck91JlIJDyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxNEfLJqeU0ck91JlIJDyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "XeAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RZl8t-9rqMQDfV5hnTHtIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RZl8t-9rqMQDfV5hnTHtIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "weAV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "d-AV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y2rsoafmE6xytYWP5sYCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "66636157595941"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y2rsoafmE6xytYWP5sYCtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "66636157595941"} {"create": {"_index": "profiling-events-all", "_id": "j9YV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tn-1KeEU3BnmdtG_8ojEnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tn-1KeEU3BnmdtG_8ojEnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DdYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wJ7q8DE_vEYNiHBNDFSXUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wJ7q8DE_vEYNiHBNDFSXUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L9YV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JeAV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8OAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lcGXu2A_kQpLv6e2M4Rs3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lcGXu2A_kQpLv6e2M4Rs3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "leAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydVfMca4pTKtV_nMQvo2kQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydVfMca4pTKtV_nMQvo2kQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_dYV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xKjCC5yf0r30Yx7ATik86A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xKjCC5yf0r30Yx7ATik86A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7uAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xGXtUwy0WyT4ZsBj5B3XBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xGXtUwy0WyT4ZsBj5B3XBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "PdYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CyRDyPVW9ctHTgi1aqo0EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CyRDyPVW9ctHTgi1aqo0EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "duAV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0FEuqrCBrJSXy_icrEjSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C0FEuqrCBrJSXy_icrEjSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "dNYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LOAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["082Ba9ZuDVL3ONCoRsOt2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["082Ba9ZuDVL3ONCoRsOt2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yOAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xmUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "cWUV7YYBO2e_P_QbG-2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "cNYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GjKr7NR_B5mtmlpw2-1M7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GjKr7NR_B5mtmlpw2-1M7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "AWUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xeAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qktS_v13lC94BidNvaMyEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qktS_v13lC94BidNvaMyEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dtYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U4MMCuBpnow2QDzcNOq_rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U4MMCuBpnow2QDzcNOq_rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y2UV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EscTPoBu7P-yWjfqYPYrXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EscTPoBu7P-yWjfqYPYrXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "puAV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LuAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HBL0k7Q3NY1Rzs8CB4mIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HBL0k7Q3NY1Rzs8CB4mIaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yWUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M56qbhAN0zSyPqoRnP2tig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M56qbhAN0zSyPqoRnP2tig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "o-AV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "pOAV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DMif4YgVmZnzbZZwItpS7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DMif4YgVmZnzbZZwItpS7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "BGUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mqlqe7dL-IrMXVeazPB5Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mqlqe7dL-IrMXVeazPB5Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "Z2UV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9QQ4r43YuHwpw3ZT9p1xxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9QQ4r43YuHwpw3ZT9p1xxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5-AV7YYByh-A-BiyHC88"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VGkfGlLCT3CZxXjvshlG7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VGkfGlLCT3CZxXjvshlG7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "p-AV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YM8VOmaiYixjkGqh3aYLRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YM8VOmaiYixjkGqh3aYLRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "peAV7YYByh-A-BiyHDGA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "hNYV7YYBBkbVtX3nLYc9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xSNZ9DKX9aJSx1JikG9CmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xSNZ9DKX9aJSx1JikG9CmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "o2YV7YYBO2e_P_QbOABd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2NVoBlds2Nc4h_QCDJrDnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2NVoBlds2Nc4h_QCDJrDnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "39YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K0IAThZo_rvcPV0xYOOPXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K0IAThZo_rvcPV0xYOOPXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "aNYV7YYBBkbVtX3nLIUO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nQzW1IRnoVkGXf3RVdA2zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nQzW1IRnoVkGXf3RVdA2zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "cGUV7YYBO2e_P_QbN_2B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uk1ygFuU89LLnNUfPAM8KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "z9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eu-uDVkqMSOny2oTSdBCFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eu-uDVkqMSOny2oTSdBCFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "F-AV7YYByh-A-BiyNUMG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8THUiHTgWMDGXf1IWeY26Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8THUiHTgWMDGXf1IWeY26Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "zNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "ZGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pvgv_ahPIvTWXkMY-zr13A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pvgv_ahPIvTWXkMY-zr13A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ouAV7YYByh-A-BiyR1Tz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "dGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKoD-DH2DuktCqfanvYyAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKoD-DH2DuktCqfanvYyAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "gWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjl6WiVIjOxuK6ZdXf6w-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hjl6WiVIjOxuK6ZdXf6w-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "gmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbKyofNFaA1HXxSLiY4X4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbKyofNFaA1HXxSLiY4X4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "m2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7M0HNFRDiBlp-s3D7tWjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7M0HNFRDiBlp-s3D7tWjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3LSphn5t1PDGJFGbkaC3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3LSphn5t1PDGJFGbkaC3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Z2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "aWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jJFQhyyI67HMRTa7_xT6Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jJFQhyyI67HMRTa7_xT6Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "dWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZV_tr06SpYoUw5FQNiY8zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZV_tr06SpYoUw5FQNiY8zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDmVY9Mljfrd1uHcDiDp-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "j2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19-BIdJDFsbAizxGj9jWhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19-BIdJDFsbAizxGj9jWhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "kmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "nGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "omYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "YmYV7YYBO2e_P_QbRgy_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mzLwn00dO1KbECLOnE-3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mzLwn00dO1KbECLOnE-3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "gmYV7YYBO2e_P_QbTRNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2TKowT3Mk2n52YOH2Zj2XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2TKowT3Mk2n52YOH2Zj2XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "c2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qmvE4JqUb_c7Db7yXDg5mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qmvE4JqUb_c7Db7yXDg5mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "kGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9j8nawarR-p9di_5gnPsKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9j8nawarR-p9di_5gnPsKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "l2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KmEOZVutONuRJavBSb15QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KmEOZVutONuRJavBSb15QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "1NYV7YYBBkbVtX3nSppo"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xdYV7YYBBkbVtX3nVKlD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8hoWuown2giiSuSwEtqAnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8hoWuown2giiSuSwEtqAnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0eAV7YYByh-A-BiyVFqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RGYV7YYBO2e_P_QbWSCB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T7kTFHjAtS6OtzybnvJ0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KmYV7YYBO2e_P_QbVhYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nWbXf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t-AV7YYByh-A-BiyVV6i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oSCp9cFxZ1aVa9L0c22cCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "FmYV7YYBO2e_P_QbVxih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_0hpIuT4vi1WRoDxA9V3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q_0hpIuT4vi1WRoDxA9V3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "UdYV7YYBBkbVtX3nVa1D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkkmX71PXT_4RUzWmyda5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkkmX71PXT_4RUzWmyda5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "J-AV7YYByh-A-BiyWGBd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU-qPn31kCvhNCgJkxCSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU-qPn31kCvhNCgJkxCSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WWYV7YYBO2e_P_QbczmF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["codND57fF0ln0PPsgzvoNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hOAV7YYByh-A-BiydnT4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J2g5fO93ezqUgypiuztojg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J2g5fO93ezqUgypiuztojg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zOAV7YYByh-A-BiydXL_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NYvRSd87djiQAuRZMHZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5NYvRSd87djiQAuRZMHZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GtYV7YYBBkbVtX3ndtBc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zim2W2rYjohz6B9iTayl7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zim2W2rYjohz6B9iTayl7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "xWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C6VUfIIv3MbNvll1xucbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C6VUfIIv3MbNvll1xucbVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "t2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tTpfeAZeBwNUUR0vm7VdPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tTpfeAZeBwNUUR0vm7VdPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "uWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CWGwjnZxZvrumi7qK8KzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2CWGwjnZxZvrumi7qK8KzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "lmYV7YYBO2e_P_QbhEb-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bWkQYO8eq_v3XManPn1ThA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bWkQYO8eq_v3XManPn1ThA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "umYV7YYBO2e_P_Qbh0lI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NHR-vq-GiKf-T9dij8d0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NHR-vq-GiKf-T9dij8d0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3NYV7YYBBkbVtX3nieY3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GdYV7YYBBkbVtX3nhuK9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tXy3kfx8JYVKb1u9vHWM4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tXy3kfx8JYVKb1u9vHWM4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_2YV7YYBO2e_P_Qbg0S7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m3Xj1zX2LizEaWcI0RP5pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m3Xj1zX2LizEaWcI0RP5pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "6tYV7YYBBkbVtX3nh-MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ExA0qEKb2y-al6iVdwwTBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ExA0qEKb2y-al6iVdwwTBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "1GYV7YYBO2e_P_Qbg0Jm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vk0sA1reerzoGdA4p7qrWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vk0sA1reerzoGdA4p7qrWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "4dYV7YYBBkbVtX3nhd6z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uc3rxkKkk8AS6xhrVwHG8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uc3rxkKkk8AS6xhrVwHG8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "iNYV7YYBBkbVtX3nheD0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UeR8byKX2vZOFjGKyo1sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UeR8byKX2vZOFjGKyo1sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "AGYV7YYBO2e_P_Qbg0W7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q2WGGCpyITTBJHm2o0dHlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q2WGGCpyITTBJHm2o0dHlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "CdYV7YYBBkbVtX3nhNrA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L6cJEyVPJDgBEJDXdVk3pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L6cJEyVPJDgBEJDXdVk3pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} {"create": {"_index": "profiling-events-all", "_id": "0dYV7YYBBkbVtX3nl_dj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A3ycyp-L3z38MavKYehVrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A3ycyp-L3z38MavKYehVrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "SNYV7YYBBkbVtX3nmPtF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7JUoTiaPyT_VuWNPYwhf1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7JUoTiaPyT_VuWNPYwhf1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "EeAV7YYByh-A-BiypJYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R5Cb48qStI1GlPaxKWm-mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "p-AV7YYByh-A-BiypZkc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "emYV7YYBO2e_P_Qbllh-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F42cuc6uAbdZGJ5REI0zrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F42cuc6uAbdZGJ5REI0zrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "f9cV7YYBBkbVtX3npABx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L5PYk_DA5ZMV0OoQVBb0Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L5PYk_DA5ZMV0OoQVBb0Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "2tYV7YYBBkbVtX3nl_UY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3C9vph60V3enG2gCmii1lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3C9vph60V3enG2gCmii1lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "O2YV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hz3UbtFZA0rYIYn4YRCgtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hz3UbtFZA0rYIYn4YRCgtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kQLQAgPodGZQIssiOLfgVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kQLQAgPodGZQIssiOLfgVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "atcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lE8Ul76Ux_RbEcuXBt93-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lE8Ul76Ux_RbEcuXBt93-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KmYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja-NqtogbhFMWHWfFPBr3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja-NqtogbhFMWHWfFPBr3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i9cV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e6FoyrtZm_iaPN3JoyL3hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e6FoyrtZm_iaPN3JoyL3hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JWYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GY1eWbgNYGRrYMML_stAMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GY1eWbgNYGRrYMML_stAMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KGYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["guvxESb_8YhISaL6-8e6xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["guvxESb_8YhISaL6-8e6xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ftcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX7-zRMdXP98ZhLRX4j9Qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX7-zRMdXP98ZhLRX4j9Qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "aNcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZEifOwXBahtAWgTrRIWHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "OWYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FuGHJWRe5aMwCq833fms7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FuGHJWRe5aMwCq833fms7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0gtJm_g6i_TRRAKd_qakTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0gtJm_g6i_TRRAKd_qakTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "0uAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhcWlVVBHGJ89wrxw6v8dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhcWlVVBHGJ89wrxw6v8dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "e9cV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A8pyJ84eyIC8RCi-Ni9jQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A8pyJ84eyIC8RCi-Ni9jQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "R9cV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HMhRkMthUzKnK3YLiu0DPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HMhRkMthUzKnK3YLiu0DPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "YeAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JyUFbnbXVaKa7YEj_4FmBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JyUFbnbXVaKa7YEj_4FmBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ZeAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgP4G3LQ52j-d6F0ClOqXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgP4G3LQ52j-d6F0ClOqXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "M-AV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pXRClGC06I9e9KXulLXsSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pXRClGC06I9e9KXulLXsSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ydcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "tmYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Gg373ZQ4MQ2jkh8DEBd7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Gg373ZQ4MQ2jkh8DEBd7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8tcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iz6TzFT8_J6ff04naDiS0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iz6TzFT8_J6ff04naDiS0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "2tcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B2cQtnpQnOanc1V2PQKbyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B2cQtnpQnOanc1V2PQKbyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "JmYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["obvZcLc8tkTW_PIiHCS5nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["obvZcLc8tkTW_PIiHCS5nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hUXn7O15YJeI0ULhNiHitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hUXn7O15YJeI0ULhNiHitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "UuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVfsYo1AUUUdMdlCaFwu-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVfsYo1AUUUdMdlCaFwu-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gWYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DCRsAykIrZ8I8tHgQy4yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DCRsAykIrZ8I8tHgQy4yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "g2YV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB6F-U_ns7SY5JIwmO_kFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JB6F-U_ns7SY5JIwmO_kFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "KWYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NGw-JF-qcO4DHjzt4B2wLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NGw-JF-qcO4DHjzt4B2wLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "uGYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "wGYV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tx4eHSc1gmcx0PGWlGwBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tx4eHSc1gmcx0PGWlGwBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6NcV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XTk5UeO5E6dR53Or8LwcYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XTk5UeO5E6dR53Or8LwcYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YeAV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f18CNP-wdQ0HCwNNONpc3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f18CNP-wdQ0HCwNNONpc3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EmYV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dJyQsD0pMmiwvo0yyQz-Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dJyQsD0pMmiwvo0yyQz-Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "59cV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZPTQfDgXmRrvRJctvBjMQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZPTQfDgXmRrvRJctvBjMQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7WYV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N7_BJi6ewgXvZf2hE9Zv4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N7_BJi6ewgXvZf2hE9Zv4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "PmYV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TJIfdSm5tRZeEi6vWzdD9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TJIfdSm5tRZeEi6vWzdD9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "HGYV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Z-5rAaOPhdXYQmI34Fo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Z-5rAaOPhdXYQmI34Fo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "HmYV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wUfvGFMhsPYCiR2iraE6yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wUfvGFMhsPYCiR2iraE6yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "I-AV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hgkg_Kmgo0P1NY1bWt3zqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hgkg_Kmgo0P1NY1bWt3zqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Y9cV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pyc1NH6GKoq4eJ7lPXF0sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pyc1NH6GKoq4eJ7lPXF0sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HOAV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPA9NkH3378cVYxn3yS3sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mPA9NkH3378cVYxn3yS3sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ntcV7YYBBkbVtX3n1C-A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SvIqTeUVvtREJSFJV6baig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SvIqTeUVvtREJSFJV6baig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "f-AV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_8l4R1w8OTMW19KvGaUFKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_8l4R1w8OTMW19KvGaUFKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "P2YV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXNleeK595fkvNMoEEpulQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXNleeK595fkvNMoEEpulQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "1dcV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFH8JfGJ8gxGshJahx5FMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PFH8JfGJ8gxGshJahx5FMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "quAV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iz58o69gDrMyQIJrUSlESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Iz58o69gDrMyQIJrUSlESQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} {"create": {"_index": "profiling-events-all", "_id": "72YV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PbqU-V8nn0Uur1oPUBWRCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PbqU-V8nn0Uur1oPUBWRCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "fuAV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nNcV7YYBBkbVtX3n1C-A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EgKG3D5vsxLZ2SNdnZFPlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EgKG3D5vsxLZ2SNdnZFPlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "aGYV7YYBO2e_P_Qb44h4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9deM4hA54-jD4QRfBZvyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9deM4hA54-jD4QRfBZvyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TdcV7YYBBkbVtX3n5UgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "52YV7YYBO2e_P_Qb4oar"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Usa9goZrRSpJ79s2Sa1Vog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Usa9goZrRSpJ79s2Sa1Vog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "f9cV7YYBBkbVtX3n4Two"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N4MQ3_wF7ExRpMVmr34tag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N4MQ3_wF7ExRpMVmr34tag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GuAV7YYByh-A-Biy5d7m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5mYV7YYBO2e_P_Qb4oar"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-Biy5t9l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lLjNSon0kMlL_GeOGmhieQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lLjNSon0kMlL_GeOGmhieQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "tNcV7YYBBkbVtX3n4j9s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl491oxaYlbc9Z3W8DsZgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wl491oxaYlbc9Z3W8DsZgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "v-AV7YYByh-A-Biy4NHi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vMqHPs9EIjuvSlEC4OiiMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vMqHPs9EIjuvSlEC4OiiMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-Biy4dNo"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RLFnq52wVIAB0sP7d89Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "teAV7YYByh-A-Biy4dbn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NwR9aEq_NsygT1I-G4aUWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NwR9aEq_NsygT1I-G4aUWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "IdcV7YYBBkbVtX3n40O7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxb69r-7SoT16KEvWAhaDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uxb69r-7SoT16KEvWAhaDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ydcW7YYBBkbVtX3nBF4I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uTpiMizzgYQSE0drb2SNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uTpiMizzgYQSE0drb2SNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NGYW7YYBO2e_P_QbBq4R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MyElinVLAEAN4F7lmOg8bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MyElinVLAEAN4F7lmOg8bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "4mYV7YYBO2e_P_Qb9p9p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VAqxR_4yWhELwHpSX2G6ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VAqxR_4yWhELwHpSX2G6ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "42YV7YYBO2e_P_Qb9p9p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yRFnGrrHGohZX1q__Ac-fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yRFnGrrHGohZX1q__Ac-fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KWYW7YYBO2e_P_QbAabd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HvoR4SCGNKrytsOmcHUMJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HvoR4SCGNKrytsOmcHUMJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SmYW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F2YW7YYBO2e_P_QbA6id"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bawlMqqRTjOm5tziwkLcwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bawlMqqRTjOm5tziwkLcwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "DtcW7YYBBkbVtX3nA11E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWr06tNuG4WxrmchIC2X3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWr06tNuG4WxrmchIC2X3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "btcV7YYBBkbVtX3n9lYm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iZrZGh0SZx7vPDLJtsMxOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iZrZGh0SZx7vPDLJtsMxOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "6GYW7YYBO2e_P_QbAKAj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["paq17JnBHQOEskwFc5mgww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["paq17JnBHQOEskwFc5mgww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "2uAW7YYByh-A-BiyAu7q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29tkR1iuog5-kDCdzfxqQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29tkR1iuog5-kDCdzfxqQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "HeEW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jWYW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28KA4slgI2GZmK9Ldp9xgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28KA4slgI2GZmK9Ldp9xgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5eAW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XhwDDngWLjSP8tIl3SEwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0XhwDDngWLjSP8tIl3SEwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-eAW7YYByh-A-BiyEfoC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A9cW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jmYW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZjlOM4tBu1Fp11Fh5nR8-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZjlOM4tBu1Fp11Fh5nR8-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZGYW7YYBO2e_P_QbE72B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_D9JvJUWXzC0H3Nib_YHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KtcW7YYBBkbVtX3nFGl3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ImYW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kxm_Vs_FFH-wRGO9m2XBVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "624455205497100"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kxm_Vs_FFH-wRGO9m2XBVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "624455205497100"} {"create": {"_index": "profiling-events-all", "_id": "gmYW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XNUe_HujD2dm4YoueIuXlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XNUe_HujD2dm4YoueIuXlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "KdcW7YYBBkbVtX3nFGl3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X4UPDmSUe7qQGbfeloDUvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X4UPDmSUe7qQGbfeloDUvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LGYW7YYBO2e_P_QbELiv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "-uAW7YYByh-A-BiyEfoC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wb8Q-SnAsfDM-7Ktdo9WMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wb8Q-SnAsfDM-7Ktdo9WMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "x9cW7YYBBkbVtX3nFWpl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_IL9L_uv3CfGfQbo7Tbz2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "jGYW7YYBO2e_P_QbFsMV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BTbJZwKcIfQ2uNxAXoZhbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BTbJZwKcIfQ2uNxAXoZhbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "QdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lG8h35lC0oRWKY7OgUwEmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lG8h35lC0oRWKY7OgUwEmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPnyqYXZ1627cOAm3Dt4dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPnyqYXZ1627cOAm3Dt4dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} {"create": {"_index": "profiling-events-all", "_id": "2-EW7YYByh-A-BiyIA7i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jY6an4TJNzicxfsoO4aEFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jY6an4TJNzicxfsoO4aEFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_9cW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJrgFzG4FpnL3ryIXlyV6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tJrgFzG4FpnL3ryIXlyV6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "PNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2ywo0l6w7YZhxb-9njWcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2ywo0l6w7YZhxb-9njWcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "PtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0c6MsN22BR9PeSRno8jLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0c6MsN22BR9PeSRno8jLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "QNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "QtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gL8V3iQOuoY8AzmvM83Gdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gL8V3iQOuoY8AzmvM83Gdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "StcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch2MeEpHv6ftyPFPGwDJPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch2MeEpHv6ftyPFPGwDJPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "GmYW7YYBO2e_P_QbJMtU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ri8THh1H50J0zvIysOPcMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ri8THh1H50J0zvIysOPcMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "59cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lN6iyovFymV6B1GKuV60Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lN6iyovFymV6B1GKuV60Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T8nh4Uz1hBa2hX7n6l8yLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T8nh4Uz1hBa2hX7n6l8yLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "79cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPPlFt_kc7DcftmxWZU-iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPPlFt_kc7DcftmxWZU-iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "89cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZEBSFm0BO7Q5NJ0sJOp5pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZEBSFm0BO7Q5NJ0sJOp5pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3y5nAKYNm-1QPvIH6-wLoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3y5nAKYNm-1QPvIH6-wLoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "99cW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bm8lqh7bD2DbMALavVY57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bm8lqh7bD2DbMALavVY57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "-NcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hkSlK3ySEaiDEWQMnnd57g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hkSlK3ySEaiDEWQMnnd57g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "BNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f-mP1jAp98tb7PtN_trD8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f-mP1jAp98tb7PtN_trD8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5nMiVDy9d3FyKI4YMMJNGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5nMiVDy9d3FyKI4YMMJNGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "R9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "P9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "d9cW7YYBBkbVtX3nQo-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-TyLNaIus8xYXNJ7qDmYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-TyLNaIus8xYXNJ7qDmYxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "29cW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOAA7I3SI_6CYSE5PLnlzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "393338065829662"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOAA7I3SI_6CYSE5PLnlzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "393338065829662"} {"create": {"_index": "profiling-events-all", "_id": "eNcW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LP2s2eN9q4S8yFbcMdo49A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LP2s2eN9q4S8yFbcMdo49A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hWYW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "V-EW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQwiWS8atv5BrlgvoSejZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQwiWS8atv5BrlgvoSejZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h-EW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Jekw_GmjkRbs2II8a1AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g2Jekw_GmjkRbs2II8a1AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-BiyQSqw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dQoejHiZXRe2q1PMrGN9Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dQoejHiZXRe2q1PMrGN9Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WOEW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BgnwfcudspKPFADqFnojuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "8OEW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["woH9c39lhinU4GavawjQuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["woH9c39lhinU4GavawjQuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "zGYW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIYJkbW5-Ss2DSyBgMD1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RBIYJkbW5-Ss2DSyBgMD1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "3dcW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jbue-qNayNZ_fIEQln1nAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jbue-qNayNZ_fIEQln1nAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "YOEW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MdcW7YYBBkbVtX3nQItF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bxosazizFV9avn6dlwjxfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bxosazizFV9avn6dlwjxfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "heEW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g15iIWCPMhS3lvfL06AkwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g15iIWCPMhS3lvfL06AkwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "7-EW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlhGaNTjh2CqZiofxpZ5rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlhGaNTjh2CqZiofxpZ5rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "u2YW7YYBO2e_P_QbPtv2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-BiyRDN8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMrQPudvsPLod26LuW-2pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMrQPudvsPLod26LuW-2pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "a9cW7YYBBkbVtX3nT5d5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m55Znt_y0UyjemF1cQhp1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m55Znt_y0UyjemF1cQhp1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5mYW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VkyfaqGAgzJ1mrE4QyhFNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VkyfaqGAgzJ1mrE4QyhFNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KNcW7YYBBkbVtX3nUJll"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J2g5fO93ezqUgypiuztojg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J2g5fO93ezqUgypiuztojg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jeEW7YYByh-A-BiyUT4z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JK8YqiAWSqqVOym-FM3Bcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JK8YqiAWSqqVOym-FM3Bcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YWYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDY23NPQzaDDr0M473XGdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDY23NPQzaDDr0M473XGdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZGYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZROPXiO1YN29GxsBWCCa4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZROPXiO1YN29GxsBWCCa4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZWYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5K8-gusySTkvMx2KwQOwvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5K8-gusySTkvMx2KwQOwvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CGYW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XelrCg-bWU72nb6t1bBQsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XelrCg-bWU72nb6t1bBQsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "tuEW7YYByh-A-BiyTzvE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ovZA3MLYLkKXQB_OLfVFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ovZA3MLYLkKXQB_OLfVFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nTpOO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3U1GssMMNyEfwWToQlllWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3U1GssMMNyEfwWToQlllWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "cdcW7YYBBkbVtX3nUpqO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "4NcW7YYBBkbVtX3nY6tx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbbggN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hp7nnrgj4rg9PepT5KvZxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hp7nnrgj4rg9PepT5KvZxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MmcW7YYBO2e_P_QbYgMK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vg_UUeeyZsIQBEa6Nvh43w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vg_UUeeyZsIQBEa6Nvh43w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_WYW7YYBO2e_P_QbYP9I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-ilYQocauuNE095JEhEhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-ilYQocauuNE095JEhEhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "zmcW7YYBO2e_P_QbYgTe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4O8D8hxYkhFJTYN-hGU2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y4O8D8hxYkhFJTYN-hGU2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ytcW7YYBBkbVtX3nc7iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SrDodAnZ9uPT0nyBwub87g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "K-EW7YYByh-A-BiyfmAg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYsp1kqfqOBHCXrvmwLiMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A2cW7YYBO2e_P_QbcRL4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m9ekiTsBlnl55IAShmMs6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m9ekiTsBlnl55IAShmMs6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AGcW7YYBO2e_P_QbgBRD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ6jYHQvenC-oIeTFn_Bnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ6jYHQvenC-oIeTFn_Bnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AWcW7YYBO2e_P_QbgBRD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rOEW7YYByh-A-BiyfV6p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlmshnU41XskzIJphrG7Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlmshnU41XskzIJphrG7Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "cWcW7YYBO2e_P_QbfRJk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOXMz1epa3_ioZurkFW7Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOXMz1epa3_ioZurkFW7Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-Biyf2a2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "JNcW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHDtJaJSDV9olnFzaBKrSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHDtJaJSDV9olnFzaBKrSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "0tcW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbBiaFslvpreG7iqHkAtng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bbBiaFslvpreG7iqHkAtng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "oWcW7YYBO2e_P_QbkSZ4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E3wyc4NU7VCrTPNTghNCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E3wyc4NU7VCrTPNTghNCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EtcW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cpTq_fYtizjUZY0WgZic9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cpTq_fYtizjUZY0WgZic9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ENcW7YYBBkbVtX3nkcYc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZAocMl5gXpxySXSm5DNBqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZAocMl5gXpxySXSm5DNBqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DeEW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "a2cW7YYBO2e_P_QbkSjL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["frX5XDi_BeSd8ATSu-BzMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["frX5XDi_BeSd8ATSu-BzMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uGcW7YYBO2e_P_QbkymJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZiQmOxfnnxBneo5kx5hbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FZiQmOxfnnxBneo5kx5hbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DOEW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y8UVXYWOaxAeCcWGwyqDaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y8UVXYWOaxAeCcWGwyqDaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "PuEW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b3E9ZJZY0ClQ35xwbM-URQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b3E9ZJZY0ClQ35xwbM-URQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EdcW7YYBBkbVtX3nkcYc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["422YB3Vi5ylq09ThSitCrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["422YB3Vi5ylq09ThSitCrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "udcW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TuM-SJ9cGA7C5rVB2mzPbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TuM-SJ9cGA7C5rVB2mzPbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_QbkCRr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x4JagFwIYKM4hCWjdkk5Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "TWcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PdcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fba2v_kCgR0XMDcTdnNyUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fba2v_kCgR0XMDcTdnNyUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xGcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n73U5dOg61JklJT6WKmxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n73U5dOg61JklJT6WKmxuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBC8PW2stc2snL3In1dZgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBC8PW2stc2snL3In1dZgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ItcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZEqvMD6I0UREvB3izGzGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZEqvMD6I0UREvB3izGzGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "o2cW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hqZLEegbkzGMCD8s4XbApA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hqZLEegbkzGMCD8s4XbApA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "z9cW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgfofmlWcYjAIJ7veGUfFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgfofmlWcYjAIJ7veGUfFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jNcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7i3Cx4zEv0tNGbpsMJIrtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7i3Cx4zEv0tNGbpsMJIrtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5OEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9tcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZUfXP4Nc5xC-6yjjFWFXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZUfXP4Nc5xC-6yjjFWFXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lWcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIjbpW4afQJ6fKp4bSOkMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIjbpW4afQJ6fKp4bSOkMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HGcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KlBBeb_BAMwNu68sN8StmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KlBBeb_BAMwNu68sN8StmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FWcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_u0T-bb-6oGwzLo8Ixk4jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_u0T-bb-6oGwzLo8Ixk4jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "GuEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mf-R-1299D4bJft-Ookh1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mf-R-1299D4bJft-Ookh1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XuoRBwH8D9PqSHFLLM0iiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "leEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["emxPOGrmfJB_o3OYwaU-OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["emxPOGrmfJB_o3OYwaU-OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "l-EW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4r8rDC-HuMcBsJ3v8w5X0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4r8rDC-HuMcBsJ3v8w5X0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jdcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l7TOnfsZ0Oz_cxAh8t_TMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "P9cW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "oOEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ZuEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tfP5YaLMRchIJv1xrJ1yhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tfP5YaLMRchIJv1xrJ1yhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "l2cW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPRFk1hV8cCqMtGiVI0VUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KPRFk1hV8cCqMtGiVI0VUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "mGcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IqqI5g2QWaQwbYuVPZB2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IqqI5g2QWaQwbYuVPZB2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "INcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbsdNQcghdeUQULeZY1Wfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DbsdNQcghdeUQULeZY1Wfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "4eEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["93n0e7h5H7aFXvMK8FoA2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["93n0e7h5H7aFXvMK8FoA2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "PNcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7pCWL6qVpk6cdOVpmC7rqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7pCWL6qVpk6cdOVpmC7rqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wHyMmE8SVaekDujzx_Uidg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wHyMmE8SVaekDujzx_Uidg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "gdcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fQniEpOBiPV91AqeXKUYaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fQniEpOBiPV91AqeXKUYaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "Q-EW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rdrM64mgJOBslxLrMQ7wSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rdrM64mgJOBslxLrMQ7wSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "QeEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aTZihWAEPXUldJhLCeEBBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aTZihWAEPXUldJhLCeEBBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "DWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E3wyc4NU7VCrTPNTghNCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E3wyc4NU7VCrTPNTghNCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_Qbu0br"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z897RYYv5sVYFZXocfXeZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z897RYYv5sVYFZXocfXeZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fuEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57Fil5UcCT4QMA8PK7lldw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["57Fil5UcCT4QMA8PK7lldw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "62cW7YYBO2e_P_QbsUPY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "COEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "vGcW7YYBO2e_P_Qbu0Sm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xOEW7YYByh-A-Biyv6MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sMrntcfAzsvFpOczgTISXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sMrntcfAzsvFpOczgTISXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "MdcW7YYBBkbVtX3nv-qT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZsYEzt_8lrTbaZDB8kywA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZsYEzt_8lrTbaZDB8kywA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "9uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["efbR3WWiUOAtCglTIhsrqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["efbR3WWiUOAtCglTIhsrqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "9eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YABibb_jw0z2mFZJ8rsBIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YABibb_jw0z2mFZJ8rsBIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EmcW7YYBO2e_P_Qbu0br"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tPsVwrBNUc_Ucb0xgpo9Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tPsVwrBNUc_Ucb0xgpo9Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FWcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ir6dnl0cXTDA9lqUj6YdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ir6dnl0cXTDA9lqUj6YdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5L0Vg1E8eRaEol71UFTwGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5L0Vg1E8eRaEol71UFTwGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pNcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7k09_Fy75Q9-PpHdDlKvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7k09_Fy75Q9-PpHdDlKvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "otcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-yIay2Jhm3BbFiMI2RaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-yIay2Jhm3BbFiMI2RaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "fOEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1hW5v3HRKvG-GrmY80R18g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1hW5v3HRKvG-GrmY80R18g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "NtcW7YYBBkbVtX3nveeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q4JtKPdD84sGcDCNyN6nPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q4JtKPdD84sGcDCNyN6nPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} {"create": {"_index": "profiling-events-all", "_id": "dGcW7YYBO2e_P_QbvEm2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MGOK31fQ4tvuxuQh2V8_TA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741972803009497"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MGOK31fQ4tvuxuQh2V8_TA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741972803009497"} {"create": {"_index": "profiling-events-all", "_id": "_OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6WcW7YYBO2e_P_QbvEco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["i3VVbQEF8y09CAolsSQBvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "EeEW7YYByh-A-BiyvaHP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3huOpz_dzO1rKry9zYBuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3huOpz_dzO1rKry9zYBuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "DGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fp3JKxC8Kg-FrE8ZKU_2DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fp3JKxC8Kg-FrE8ZKU_2DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "edcW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IuEW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "meEW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CfSmew3N7q6MPA7XYHOAyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CfSmew3N7q6MPA7XYHOAyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GWcW7YYBO2e_P_QbzVOk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETxTEgZSbzYjk8XGh4vHbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETxTEgZSbzYjk8XGh4vHbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "weEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3EdY1eU9gJRJ5-pD1F-9zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3EdY1eU9gJRJ5-pD1F-9zQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yeEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "I-EW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ql-7Y2YW7YrNN7ni_2nHhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ql-7Y2YW7YrNN7ni_2nHhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "DuEW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ORYJnd66MJOP1pD9p0bgYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ORYJnd66MJOP1pD9p0bgYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} {"create": {"_index": "profiling-events-all", "_id": "nOEW7YYByh-A-BiyzK7K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bnUDt83Ym2Sj0RWXP2Cv7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bnUDt83Ym2Sj0RWXP2Cv7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "mtcW7YYBBkbVtX3ny_BB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "wuEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81PIAyCx2Qr8_sB0OgM2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81PIAyCx2Qr8_sB0OgM2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "idcW7YYBBkbVtX3nzfVn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBy4E9YE68R_J8izQs8bgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBy4E9YE68R_J8izQs8bgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "xNcW7YYBBkbVtX3nz_hr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAKMNMeNYggEGwOcAHqlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912668704793740"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAKMNMeNYggEGwOcAHqlpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912668704793740"} {"create": {"_index": "profiling-events-all", "_id": "XeEW7YYByh-A-Biy38W8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD5xCbVnNYVsLiq_B3NCDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD5xCbVnNYVsLiq_B3NCDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SmcW7YYBO2e_P_Qb3V8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zksj6C38tiqx_uPlkG3-oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zksj6C38tiqx_uPlkG3-oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gmcW7YYBO2e_P_Qb4GUL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "odgW7YYBBkbVtX3n4AeL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C3gJbGJLW5qO4iB7Vj3kzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C3gJbGJLW5qO4iB7Vj3kzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "gWcW7YYBO2e_P_Qb4GUL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "veEW7YYByh-A-Biy4MbF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v5EpA4krR2ROLXfbpheNHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "747188141952000"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v5EpA4krR2ROLXfbpheNHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "747188141952000"} {"create": {"_index": "profiling-events-all", "_id": "_uEW7YYByh-A-Biy27u4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-39O5M9xiKV4ss-qyTu_Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-39O5M9xiKV4ss-qyTu_Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "CdgW7YYBBkbVtX3n_BuV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fGcW7YYBO2e_P_Qb_XYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rfbDR_zpgC01-kkTCN3O8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rfbDR_zpgC01-kkTCN3O8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BdgW7YYBBkbVtX3n-xhN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gIiBrAZ3-GkFJ4HVnfTsCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gIiBrAZ3-GkFJ4HVnfTsCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hOEW7YYByh-A-Biy-9YK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn_9IfzsC8Tr9nDWV2mNig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn_9IfzsC8Tr9nDWV2mNig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fuEW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pS9eiRRqpJHZ001DHnp6Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pS9eiRRqpJHZ001DHnp6Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lNgW7YYBBkbVtX3n_RyM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoNW0S9pSsiAmHByB5KnMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoNW0S9pSsiAmHByB5KnMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "89gW7YYBBkbVtX3n-hQh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFW4hYJ0SQeKKNYH-nfcDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFW4hYJ0SQeKKNYH-nfcDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "W-EW7YYByh-A-Biy-9rd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u29RuXTUI9L-Xut890hyuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u29RuXTUI9L-Xut890hyuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "fWcW7YYBO2e_P_Qb_XYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LdgW7YYBBkbVtX3n_R7G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UOoQ2kKxEY1n0AS8biVEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9UOoQ2kKxEY1n0AS8biVEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8mcW7YYBO2e_P_Qb_nlT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uqbj6xXSR4L1HQjjfr6tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uqbj6xXSR4L1HQjjfr6tw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "HGcW7YYBO2e_P_Qb_n7b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hIfw2Nju3QIW5tv0qLI6DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hIfw2Nju3QIW5tv0qLI6DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "veEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3blkVUmhYGlb1bNhKqNU-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3blkVUmhYGlb1bNhKqNU-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "tmcW7YYBO2e_P_Qb_nuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "DOEW7YYByh-A-Biy_Nwe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kE4sjHZhfkpbgfq0NZt7Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kE4sjHZhfkpbgfq0NZt7Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "DWcW7YYBO2e_P_Qb_XhM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JXC2aswffzFwIASa8HM7TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JXC2aswffzFwIASa8HM7TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "gGcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yeEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XeEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yaVT1XFUH-nJ3nm8j75Wtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yaVT1XFUH-nJ3nm8j75Wtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pmcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoNW0S9pSsiAmHByB5KnMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoNW0S9pSsiAmHByB5KnMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BNgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oLIJJ3vFP9iOSdpBALj2Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oLIJJ3vFP9iOSdpBALj2Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uGcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1x1DYtBgANQEqmgJHFNwCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1x1DYtBgANQEqmgJHFNwCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F2cX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "p2cX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3HYswCLIguo6i_KRnM6AYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3HYswCLIguo6i_KRnM6AYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "42cX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_z_VvquVclvHpAURI8mubg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_z_VvquVclvHpAURI8mubg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jeEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "yOEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qUy-ynHNFuJ7a24qIM4sMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qUy-ynHNFuJ7a24qIM4sMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "c-EX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "M2cX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c1BBf8_D0Zq_e4sWgAdTEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "imcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gelrHvnNAa48pTzMlBF3sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gelrHvnNAa48pTzMlBF3sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jWcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["scKMoVIbbsXT0ePI0cAHEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "omcX7YYBO2e_P_QbCYTC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xh6Pk0lsPTYRl99fICP3qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xh6Pk0lsPTYRl99fICP3qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "vtgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5GcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhlnk07FVj7HY3V21x3-gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhlnk07FVj7HY3V21x3-gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "cOEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IermM9hSVXhnqyUrzsPYOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IermM9hSVXhnqyUrzsPYOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ceEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gpy3Q2u5ZrnHXb3KmhEpOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gpy3Q2u5ZrnHXb3KmhEpOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "MWcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tnUJH3O0LYpzeUegdlTfKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tnUJH3O0LYpzeUegdlTfKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5WcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "UdgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddeOs02TklyTU3pmfdTaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ddeOs02TklyTU3pmfdTaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xeEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JhEjVrFwxs0Uy2lBICC0hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JhEjVrFwxs0Uy2lBICC0hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fuEX7YYByh-A-BiyG_LF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vPkmrOQ6ZSk1I3l40v9b2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vPkmrOQ6ZSk1I3l40v9b2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVBTPPapZUXmS1PYAOv-Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVBTPPapZUXmS1PYAOv-Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WGcX7YYBO2e_P_QbHZuf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yGcX7YYBO2e_P_QbHJcK"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "neEX7YYByh-A-BiyKfkD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OeVAEoxBlJnkJrF2AREsYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OeVAEoxBlJnkJrF2AREsYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "utgX7YYBBkbVtX3nHTEc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HKZFXtQtwmpkJ4zu4auFBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HKZFXtQtwmpkJ4zu4auFBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "h2cX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["adkeyas3W26uFEzRKjKNyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["adkeyas3W26uFEzRKjKNyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QOIX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "idgX7YYBBkbVtX3nPUb7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7sDL1ZEUDJ12LHKKH-P_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c7sDL1ZEUDJ12LHKKH-P_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "9eIX7YYByh-A-BiyOALn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["asewtAhw0ntqifC47rIgYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["asewtAhw0ntqifC47rIgYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yNgX7YYBBkbVtX3nOTqZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KiwE-vKZHKC3n7ALbEtWxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KiwE-vKZHKC3n7ALbEtWxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IeIX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AOFrzbtSbZoZPfOFvByqkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AOFrzbtSbZoZPfOFvByqkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "a-IX7YYByh-A-BiyOwXV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67VSY7gMnvXQykqHE0WxBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67VSY7gMnvXQykqHE0WxBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gOIX7YYByh-A-BiyOAGi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cM0djH2TU0zlpYvTIkqfrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cM0djH2TU0zlpYvTIkqfrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "PNgX7YYBBkbVtX3nPEVT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iiSoTtUS0Kv5axzY5mPeuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iiSoTtUS0Kv5axzY5mPeuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "PdgX7YYBBkbVtX3nPEVT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsV16gz3SHNxrBEt4b7ZuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsV16gz3SHNxrBEt4b7ZuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "tmcX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjTw1uwIATCPa-CkaMdjEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjTw1uwIATCPa-CkaMdjEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "GGcX7YYBO2e_P_QbS8o-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4fZ6VnX9iKRRH_O1UDOxJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4fZ6VnX9iKRRH_O1UDOxJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FeIX7YYByh-A-BiyTBx8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mnK-jqHbwNjcoomJsw59gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mnK-jqHbwNjcoomJsw59gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BuIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LibGknFXAn9fd0n8hPZURw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LibGknFXAn9fd0n8hPZURw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "6uIX7YYByh-A-BiySBCO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n7QrrEicoQGmnUiZzNk-Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n7QrrEicoQGmnUiZzNk-Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "itgX7YYBBkbVtX3nSErh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A5T8gkmrKDulci1jhJCJaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A5T8gkmrKDulci1jhJCJaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SGcX7YYBO2e_P_QbTM67"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gZcWJlRvTnEPU2SoN15zhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gZcWJlRvTnEPU2SoN15zhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0tgX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-y7rTRuLTj8cfBQbfYKy2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-y7rTRuLTj8cfBQbfYKy2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6eIX7YYByh-A-BiySBCO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rv7EKA4ajQNDDg6Um4OsSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rv7EKA4ajQNDDg6Um4OsSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BOIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DuIX7YYByh-A-BiyShe9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X1aHc6VUJ_Ut6oMpk8MSqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X1aHc6VUJ_Ut6oMpk8MSqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "09gX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pv_Z9wfk0AjOJ6dIHemB0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pv_Z9wfk0AjOJ6dIHemB0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "dGcX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ui68wyUVCJcxQ5nqpWzN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ui68wyUVCJcxQ5nqpWzN1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "F2cX7YYBO2e_P_QbTdAJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iWRinu91wuOHnxKN19PJZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iWRinu91wuOHnxKN19PJZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "nWcX7YYBO2e_P_QbSsgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lbp6GnC_9KEun0KEyhcfUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lbp6GnC_9KEun0KEyhcfUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0dgX7YYBBkbVtX3nTUyD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQindYwMtv8QD8UZS8rDBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQindYwMtv8QD8UZS8rDBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "KeIX7YYByh-A-BiyWyN4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "huIX7YYByh-A-BiyWyEq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mDMvsWlBM76O6KXIRi4tEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mDMvsWlBM76O6KXIRi4tEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "t2cX7YYBO2e_P_QbXN28"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-BNILa1SCuDbNciG6XDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-BNILa1SCuDbNciG6XDXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "hGcX7YYBO2e_P_QbXuFm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FaKFPVNiFZEijjndTiCFKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FaKFPVNiFZEijjndTiCFKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "QmcX7YYBO2e_P_Qbe_U-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN7nwOP7JnV5VSJaq0yJcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN7nwOP7JnV5VSJaq0yJcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MrYyGRfOREUeHSMqF3-gkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MrYyGRfOREUeHSMqF3-gkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "69gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WwPr2gilYMTlY-ITJ8otdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WwPr2gilYMTlY-ITJ8otdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["02VDgFkdOKpFXV3fa5Mfsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["02VDgFkdOKpFXV3fa5Mfsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ieam7bsdu72j_HX7vKzkDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ieam7bsdu72j_HX7vKzkDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Q-IX7YYByh-A-BiyeDlq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w4AKEYruYsyRiuNl0wOumw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w4AKEYruYsyRiuNl0wOumw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XeIX7YYByh-A-BiyfDoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W4eaTfNJQRBDVqF5v5x57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W4eaTfNJQRBDVqF5v5x57A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PtgX7YYBBkbVtX3nenT7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pWn_IRU-j_6Nwh-gfuAqfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pWn_IRU-j_6Nwh-gfuAqfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "tuIX7YYByh-A-BiyfD3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x92QEPdFkYeW4x8Mit4TyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x92QEPdFkYeW4x8Mit4TyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9mcX7YYBO2e_P_QbeO6k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "9NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ndFy9pak9l2ciS-LEs5_3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ndFy9pak9l2ciS-LEs5_3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LOIX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P6G78bo1y5OAViRPCWI9Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P6G78bo1y5OAViRPCWI9Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "4NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lN0VQOhN39IOJVND--OWWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lN0VQOhN39IOJVND--OWWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "4dgX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cELS3s9xDUsfqdE_Tc5Ajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cELS3s9xDUsfqdE_Tc5Ajw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "keIX7YYByh-A-BiyiUZS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PXpBtV4iL5Ov3ZyHXzrqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PXpBtV4iL5Ov3ZyHXzrqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lWcX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JP-P1F5zqFUSH3g3y80Xwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JP-P1F5zqFUSH3g3y80Xwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "UGcX7YYBO2e_P_QbiP47"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BdKIIeru3ccMM47Vmx2rwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BdKIIeru3ccMM47Vmx2rwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "yNgX7YYBBkbVtX3niHnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fEKLjZ39jYfvxgEfDDOtIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fEKLjZ39jYfvxgEfDDOtIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "3WcX7YYBO2e_P_Qbif8Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kfHsP1mW7mP6jtkOBG2aew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kfHsP1mW7mP6jtkOBG2aew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "QdgX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wS-0A4EIVIssr7OiOYGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wS-0A4EIVIssr7OiOYGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["myjdfdwRKOn6W5NX1Bn-1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["myjdfdwRKOn6W5NX1Bn-1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "3dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rqpy0rD1vTLq37Y_TBiX2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rqpy0rD1vTLq37Y_TBiX2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "8tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "buIX7YYByh-A-Biyi0uU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "32cX7YYBO2e_P_Qbif8Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V-CMkHxQqgsYZTwaLT0AEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V-CMkHxQqgsYZTwaLT0AEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ZdgX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtLtDTr58CzaWDA4qlaTmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtLtDTr58CzaWDA4qlaTmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "stgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S8MXm0YWnV7NY7lXJUOOog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S8MXm0YWnV7NY7lXJUOOog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "s9gX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lxliPpP77L7i9KCpXsSmXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lxliPpP77L7i9KCpXsSmXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "buIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SLcvmdHWQs_SKMn3hTK4eQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SLcvmdHWQs_SKMn3hTK4eQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ruIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyeCF78Ljkj_liCk-aIaJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyeCF78Ljkj_liCk-aIaJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "stgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2XYwJraBsCBYM0BQZOxBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2XYwJraBsCBYM0BQZOxBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XGgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uCc8HSZ3_tVtMqD6Q4eLtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uCc8HSZ3_tVtMqD6Q4eLtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "yOIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JhzC993A9_3n4z0mG1o_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JhzC993A9_3n4z0mG1o_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "o-IX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I6emm7QMCp3MTtFFeDRa6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I6emm7QMCp3MTtFFeDRa6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "XmgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hGrtOHZgxPff7dF8x4aKsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hGrtOHZgxPff7dF8x4aKsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "X2gX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T037yNb7uXswtCEJqGAhHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T037yNb7uXswtCEJqGAhHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xmgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hpyllfzpp8_nbwc9QqhNUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hpyllfzpp8_nbwc9QqhNUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "yGgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HZ_JeS7wNexqGcIiik5z6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HZ_JeS7wNexqGcIiik5z6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "qtgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUDRhU6l3_2B1svNu-m4OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUDRhU6l3_2B1svNu-m4OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XWgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymCCYcwH_madRuyjsHk5Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ymCCYcwH_madRuyjsHk5Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KWgX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mNHTiM_I_yOcvPLX_jE4VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mNHTiM_I_yOcvPLX_jE4VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b-IX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mebu14j6JQPo9D_c1nbUiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mebu14j6JQPo9D_c1nbUiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "H-IX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mRqni2HGLC5qImss9JsUdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mRqni2HGLC5qImss9JsUdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X2gX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iNwZltOIYGIMPbPaWa-8GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iNwZltOIYGIMPbPaWa-8GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "sdgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rSr_eB05hnLSYA4C6q23LQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rSr_eB05hnLSYA4C6q23LQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "pOIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "X-IX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AXSC7Ug5s-HSwYDMXe0_bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AXSC7Ug5s-HSwYDMXe0_bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ItgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["slEp0H_n8NXap1EwAwcqUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["slEp0H_n8NXap1EwAwcqUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "mmgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["69ND-pArCGiPGEzmwahftg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["69ND-pArCGiPGEzmwahftg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "r-IX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xzw5iVxHgzqrkDAJ9WwC1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xzw5iVxHgzqrkDAJ9WwC1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "q9gX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b24SYdtkbKZNKbXUua9QEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b24SYdtkbKZNKbXUua9QEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "TdgX7YYBBkbVtX3nuKdo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gtgX7YYBBkbVtX3nt6R3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFYcBHyJD4Mumr7Mh7SCEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFYcBHyJD4Mumr7Mh7SCEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "n-IX7YYByh-A-Biyum7A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MWgX7YYBO2e_P_QbtSOl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ELGYYB5yptbs2J-FWT6xOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ELGYYB5yptbs2J-FWT6xOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B2gX7YYBO2e_P_QbtSXs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["APioPA6bDIYwGq2IbkrzMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["APioPA6bDIYwGq2IbkrzMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3nua7-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["olGExzlNnh_tZyTGOfUK4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["olGExzlNnh_tZyTGOfUK4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HOIX7YYByh-A-BiyuGot"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L5h2Klu_Zrlmt_s7mEC_fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L5h2Klu_Zrlmt_s7mEC_fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "udgX7YYBBkbVtX3nuKip"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DnkK77oJ5OEGMcCjv0REHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DnkK77oJ5OEGMcCjv0REHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "e9gX7YYBBkbVtX3nuay9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tSmYASezZL-7l2EICLQFkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tSmYASezZL-7l2EICLQFkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "OtgX7YYBBkbVtX3nu7Ec"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpjzTZhXzUC8aYg4OfeyGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mpjzTZhXzUC8aYg4OfeyGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "YNgX7YYBBkbVtX3ntqGz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pp4DRoolWQ68gC0mJ3Fd4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pp4DRoolWQ68gC0mJ3Fd4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "t2gX7YYBO2e_P_Qbtynt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ycogR2C1hH5eXGjaW9oPeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ycogR2C1hH5eXGjaW9oPeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YdgX7YYBBkbVtX3ntqGz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4T9YWo_AUvk6BjQe3pJjFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4T9YWo_AUvk6BjQe3pJjFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3nt6W3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HTwNGIG-KZHMdnRtNZB5Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HTwNGIG-KZHMdnRtNZB5Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "m2gX7YYBO2e_P_QbuSt5"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnWo91SdXvpnkjVUdYM0rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnWo91SdXvpnkjVUdYM0rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "nGgX7YYBO2e_P_QbuSt5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pHFN0qaDz6OHVNs6LDyfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pHFN0qaDz6OHVNs6LDyfew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "oOIX7YYByh-A-Biyum7A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0KW_YB1xCjsP8IMGIq3y3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0KW_YB1xCjsP8IMGIq3y3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "jOIX7YYByh-A-BiyuGvz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgb9JoAUQxoSCvdXn7xEkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pgb9JoAUQxoSCvdXn7xEkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xtgX7YYBBkbVtX3nuq9-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RsVBVY52cTTp5FCtYm6r4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RsVBVY52cTTp5FCtYm6r4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "heIX7YYByh-A-BiyxXHD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NHMC3YByz5PUd8-9hJAYRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NHMC3YByz5PUd8-9hJAYRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qIbdzZ8tB4OMM3huzZH7DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qIbdzZ8tB4OMM3huzZH7DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "idgX7YYBBkbVtX3nybor"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KxMpHytF7kd-rarpM4w5Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KxMpHytF7kd-rarpM4w5Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3nyr5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GvHv11zqYBw9Vq56J4GXwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GvHv11zqYBw9Vq56J4GXwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nGgX7YYBO2e_P_Qbyjma"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_qNnBzYsJ58t8YL4ziO_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_qNnBzYsJ58t8YL4ziO_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "_NgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["za9zfvytpYavwLxYksfHEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "BtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIzLPwNwvusWrF-AAIfmqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vIzLPwNwvusWrF-AAIfmqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "LeIX7YYByh-A-BiyyXdn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kaySmFbhcfXoELn4EdRoeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kaySmFbhcfXoELn4EdRoeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "BNgX7YYBBkbVtX3n5coI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYOa3wUBO_fHKJp5WGlbmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYOa3wUBO_fHKJp5WGlbmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "G2gX7YYBO2e_P_Qb51U6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fzu_bSULZtVzZW5-F-QApQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fzu_bSULZtVzZW5-F-QApQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "V9gX7YYBBkbVtX3n5c3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oS51f0z7QyabKQzOu2RYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oS51f0z7QyabKQzOu2RYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BuIX7YYByh-A-Biy5oju"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PgTdyJ7xx8fAccK2NtQowQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PgTdyJ7xx8fAccK2NtQowQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lOIX7YYByh-A-Biy6IkE"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6oJOlriSsxoHCj15KtT0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6oJOlriSsxoHCj15KtT0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3n6tVt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU3pAewxbbLyFetX4pmrVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU3pAewxbbLyFetX4pmrVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "99gX7YYBBkbVtX3n6tVt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hyfp1vfnvOTkKMqmQpUQgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hyfp1vfnvOTkKMqmQpUQgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "aNgX7YYBBkbVtX3n6dRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EyPwNPIcZxBA4fL24xAk6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EyPwNPIcZxBA4fL24xAk6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "tuIX7YYByh-A-Biy5oRq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agxJ4qtH42heXKOg02CiKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agxJ4qtH42heXKOg02CiKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} {"create": {"_index": "profiling-events-all", "_id": "r9gX7YYBBkbVtX3n5ctL"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "adgX7YYBBkbVtX3n6dRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXat65Sd_FSb3q_O_39_OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXat65Sd_FSb3q_O_39_OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "U9gX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KF5ebpo2QysWAQEhhpRt1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KF5ebpo2QysWAQEhhpRt1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M8PQiFj2pfLsH3aiHHnZSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M8PQiFj2pfLsH3aiHHnZSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9eIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6iO15jj0vZmOpf_lsLTSaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6iO15jj0vZmOpf_lsLTSaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pGgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNnxxsIO5dQ0UMCgK8G4sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNnxxsIO5dQ0UMCgK8G4sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6uIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZxBtZLIjgWi7iyuWzr-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZxBtZLIjgWi7iyuWzr-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8mgX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UUpVBUGNxt4Ms0zx7knOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UUpVBUGNxt4Ms0zx7knOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ptgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z1ah3dkQRTcpWCEydc1lfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ceIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ess3oHhLNEi0m2JAz0_5DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ess3oHhLNEi0m2JAz0_5DQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qdgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["khaMzqn4jk0qmytmlLpK9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["khaMzqn4jk0qmytmlLpK9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "rNgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pt09Zvf__ya1eNp2CoZNVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pt09Zvf__ya1eNp2CoZNVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQ-3JYSn-GrIHbyFQdzdAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQ-3JYSn-GrIHbyFQdzdAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "qOIX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EK7FG-N0XT8ybJhJIv-IHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EK7FG-N0XT8ybJhJIv-IHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ROIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qa_k6A40Yydkz_UFy6Z1_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qa_k6A40Yydkz_UFy6Z1_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "KdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "K9gX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IO7igLUjHuSwhRGut0RlMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IO7igLUjHuSwhRGut0RlMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VNgX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BPbVSqBHjmwe-nD9qiLIFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BPbVSqBHjmwe-nD9qiLIFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VdgX7YYBBkbVtX3n9uDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GpWKihnKGLWcQ6H8XP4Cdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GpWKihnKGLWcQ6H8XP4Cdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2aKzwMjw6-zxCFb-O-8vkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2aKzwMjw6-zxCFb-O-8vkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "UNgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rhx-kyzSwrzzbVrVZ_XCyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rhx-kyzSwrzzbVrVZ_XCyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "eeIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pf-Heq8cDrQxCCAzjzKdYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pf-Heq8cDrQxCCAzjzKdYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "R-IX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GabuPwfXa70OHQ02xp-bDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GabuPwfXa70OHQ02xp-bDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "8WgX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETlNSw_6vrTcv4HXKtYlKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ETlNSw_6vrTcv4HXKtYlKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "p-IX7YYByh-A-Biy9ZKm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} {"create": {"_index": "profiling-events-all", "_id": "YWgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yEoFm5-7Ri3zCUzV2d985Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yEoFm5-7Ri3zCUzV2d985Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TdgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2MnN4qpG46YaqtSyYvWn0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2MnN4qpG46YaqtSyYvWn0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "euIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JLHzPwzEV5rRN9RuEzoMPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JLHzPwzEV5rRN9RuEzoMPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tQ4s1_uuQscYA1lUCsKxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tQ4s1_uuQscYA1lUCsKxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ItgX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_FNO79a5C7cHLejvYdQS3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_FNO79a5C7cHLejvYdQS3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "TtgX7YYBBkbVtX3n-ONq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epmApGucYGosaiNqgwoK4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epmApGucYGosaiNqgwoK4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "KNgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "i9gY7YYBBkbVtX3nFvdC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "iGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7NvWJH6Vo-unjJv4pudacA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7NvWJH6Vo-unjJv4pudacA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFJedgXKyIDWLxlCPDwfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFJedgXKyIDWLxlCPDwfQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bmgY7YYBO2e_P_QbFHAh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rHXidrM7meN_QI4wKNJ_Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rHXidrM7meN_QI4wKNJ_Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "d2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "32gY7YYBO2e_P_QbGHgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L-IY7YYByh-A-BiyE6qn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-BJw7BDfkkLGBaeu3mTtJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-BJw7BDfkkLGBaeu3mTtJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "cWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qy63CZwa2X4_cMyWGg3_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qy63CZwa2X4_cMyWGg3_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "GGgY7YYBO2e_P_QbFXK-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ps4eXe9gyP0W0fZFsyk6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ps4eXe9gyP0W0fZFsyk6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} {"create": {"_index": "profiling-events-all", "_id": "--IY7YYByh-A-BiyF7M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXfd-67U3kWd07TLbZUnXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXfd-67U3kWd07TLbZUnXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "dGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7rYDHDMd68AxfAV4sQDwaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7rYDHDMd68AxfAV4sQDwaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "udkY7YYBBkbVtX3nJgIl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1uIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rMpzXndoIcEiY0-GRAGnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2uIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sczC8NZ4ijZkOgrx_9LW8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sczC8NZ4ijZkOgrx_9LW8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VWgY7YYBO2e_P_QbI30D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5XCCyw1sj3cwxEJr3r3pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5XCCyw1sj3cwxEJr3r3pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "muIY7YYByh-A-BiyI7hA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pixjUDno8EQPnhCn1ap_SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pixjUDno8EQPnhCn1ap_SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Y-IY7YYByh-A-BiyKMoI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b-IY7YYByh-A-BiyJsRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "N-IY7YYByh-A-BiyKMx-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-77tqpe6hKMIrwkkHYgFFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-77tqpe6hKMIrwkkHYgFFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "xeIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QbcK_gbMTYuvwl_FoMECaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QbcK_gbMTYuvwl_FoMECaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "K9kY7YYBBkbVtX3nJQGU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MaChZnl-rNfGFkTRfl_iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MaChZnl-rNfGFkTRfl_iA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "6-IY7YYByh-A-BiyJsXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VoEfCO4MusB_VsJY8Q8iKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VoEfCO4MusB_VsJY8Q8iKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "Z-IY7YYByh-A-BiyJ8dT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYzllkhJBtq1_HQGHScByA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HYzllkhJBtq1_HQGHScByA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "G9kY7YYBBkbVtX3nNAgf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l02Tu6tzBSE8eTIc8ew_RQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l02Tu6tzBSE8eTIc8ew_RQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wWgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SUZ7CA7sE1ISr8T76gz0pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SUZ7CA7sE1ISr8T76gz0pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9mgY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "guIY7YYByh-A-BiyNtki"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j3fPwb3ArZvn7Z7I5e1B3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j3fPwb3ArZvn7Z7I5e1B3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "w2gY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "u-IY7YYByh-A-BiyONo2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_W7lWj5puMsPDS-FaHcww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D_W7lWj5puMsPDS-FaHcww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3nNAgf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nb8JnNS4P-YTnEEC4c_iFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nb8JnNS4P-YTnEEC4c_iFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} {"create": {"_index": "profiling-events-all", "_id": "1uIY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5mBEpaSnzHuLLvoimyigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5mBEpaSnzHuLLvoimyigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_QbNYgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a5-obKRYvJiw7VDkIkKBqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a5-obKRYvJiw7VDkIkKBqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xGgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_NBZhL-VXv-Q6LRQmOUyNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_NBZhL-VXv-Q6LRQmOUyNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8mgY7YYBO2e_P_QbNoxr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQ24QHkRlAYtTjdJ6daIzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xQ24QHkRlAYtTjdJ6daIzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SWgY7YYBO2e_P_QbOJVz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Apktul3cj6NpEbhKyTyUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Apktul3cj6NpEbhKyTyUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GeIY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uPfQx41sGpWXSF6wjd1f8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uPfQx41sGpWXSF6wjd1f8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xWgY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1eIY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aCYKHhebiJ9jpDR5JQOfqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aCYKHhebiJ9jpDR5JQOfqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "dtkY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UZVNKPpjh_ukvtZTR8SkKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UZVNKPpjh_ukvtZTR8SkKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "XdkY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9LOuDoi5esCx_k0gisuwsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9LOuDoi5esCx_k0gisuwsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "xeIY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["97LYjag2U--dwlPedhKFsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["97LYjag2U--dwlPedhKFsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "umgY7YYBO2e_P_QbV7Dp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kz2jgY6jyGc0z6njue6m7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kz2jgY6jyGc0z6njue6m7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5NkY7YYBBkbVtX3nVBpn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0UeOgQYKC7zcrsZ5ZxtGIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0UeOgQYKC7zcrsZ5ZxtGIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P9kY7YYBBkbVtX3nUhWB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XecKyHj9SENWU--AxSqY-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XecKyHj9SENWU--AxSqY-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hNkY7YYBBkbVtX3nVyEZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uHTQGYxyOTYnqxyDJdTj2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uHTQGYxyOTYnqxyDJdTj2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "69kY7YYBBkbVtX3nUxhO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcrgeMf65aey4TtBdOxT8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcrgeMf65aey4TtBdOxT8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "veIY7YYByh-A-BiyU-6O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfdo9N1VvIQt_V4_UKPs_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfdo9N1VvIQt_V4_UKPs_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "KGgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pl4gIyM-ZJ0uHaZ1UHaSeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pl4gIyM-ZJ0uHaZ1UHaSeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-all", "_id": "DdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AN24Ay2FFm6R_uskGlbDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AN24Ay2FFm6R_uskGlbDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "K2gY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ddNwsq9oH1jvVfHsja-nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ddNwsq9oH1jvVfHsja-nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "K9kY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2L91SyJLMmUa3HpOOsZXbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2L91SyJLMmUa3HpOOsZXbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LdkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tT2A_bCpClAyR0rNtUXbYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tT2A_bCpClAyR0rNtUXbYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "U9kY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zUInPt-LD-WhkBhzuV68pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zUInPt-LD-WhkBhzuV68pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "VNkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qChF1b-F4ZHuRR8vMI_y5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qChF1b-F4ZHuRR8vMI_y5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5uIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bMR3cLNESeD0GrHLhW-oYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bMR3cLNESeD0GrHLhW-oYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "oGgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQFX_6tqgj5N1dAyiK5_bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQFX_6tqgj5N1dAyiK5_bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KGgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cO9htV71m7HNbsVXnS974g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cO9htV71m7HNbsVXnS974g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1GgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-iLOmSM0bOvxtv9W5h6VXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "n2gY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6GgY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2p1e_ByfhPk84t_WqyZsxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2p1e_ByfhPk84t_WqyZsxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "m9kY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bV7P2mLAotscMMHsjhqrPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bV7P2mLAotscMMHsjhqrPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "nNkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LtZuBt3l0YoQy2lVtYcCNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LtZuBt3l0YoQy2lVtYcCNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "i2gY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5e4O7lBx37gz0fcZIzqtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "zNkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ztkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SWnMQRi9b6sdpiIXZr2J-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SWnMQRi9b6sdpiIXZr2J-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "L9kY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ng7Kn6I7osQY62ITDyHvMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ng7Kn6I7osQY62ITDyHvMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "AmgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ducvofyrwFEKpejeDz6ZEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ducvofyrwFEKpejeDz6ZEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "nGgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x40XXgRvsC7DRm_EiCrdLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x40XXgRvsC7DRm_EiCrdLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "nWgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["39C59YAEETP8fgJkvRsitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["39C59YAEETP8fgJkvRsitg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "FNkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pCGmghmQMI3e0JNfZpz8pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pCGmghmQMI3e0JNfZpz8pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "2mgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ESbYg3aZAaH86uOl-CijNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ESbYg3aZAaH86uOl-CijNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "UdkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP6GIsw4ofWcnUGlBduuVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "22gY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Em3twIsXXSYKKY9obJCgGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Em3twIsXXSYKKY9obJCgGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "omgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gAG1HMhOOlK-azE89-mC-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gAG1HMhOOlK-azE89-mC-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "DtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFK_K9iyGPWt-RXiomayjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFK_K9iyGPWt-RXiomayjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "EuIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mu3LxyO4KAp-wuV_ZLnj9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mu3LxyO4KAp-wuV_ZLnj9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "5-IY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wkNFgmgAHEeZwvM9ZbPDWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wkNFgmgAHEeZwvM9ZbPDWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3ngUGP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eU8ia1QG3CJz_p9ALXHslA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eU8ia1QG3CJz_p9ALXHslA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ROMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hbFdZ00lApIoSJEOlowBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-WgY7YYBO2e_P_Qbhdgp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2oY1qTWIwDNkXOF0PagdBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2oY1qTWIwDNkXOF0PagdBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "R-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhmE1DErCIwAQObQqIf2Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EhmE1DErCIwAQObQqIf2Fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "U-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG9jBmB3lh64ME0jyCkfBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EG9jBmB3lh64ME0jyCkfBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3eMY7YYByh-A-BiyhBDs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZH6uNdKRM0PBr1CbdPUbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZH6uNdKRM0PBr1CbdPUbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Fi4uj8_8j0Q94aQJWSzrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Fi4uj8_8j0Q94aQJWSzrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epUUcKloArUaO4HmSd6-0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["epUUcKloArUaO4HmSd6-0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "TWgY7YYBO2e_P_QbgNH_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_eN577uJw5hksIBqBf1iCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "T-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tDdgTWNJfepwn2J7xetthA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tDdgTWNJfepwn2J7xetthA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOeWC8fAGloWbHEYVuqcaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOeWC8fAGloWbHEYVuqcaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "RuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JF-bEOX20dA6FrlaQoCfyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JF-bEOX20dA6FrlaQoCfyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "lWgY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "vuMY7YYByh-A-Biykxdq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D17V2ZvopmhLBd7dZ3Y1BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D17V2ZvopmhLBd7dZ3Y1BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "N2gY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "GtkY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "GWgY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UL06CNiVyxEFpIouFPRx3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6mgY7YYBO2e_P_QbkuQ0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k6Ao0lNSN-mIGSeq85ATfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k6Ao0lNSN-mIGSeq85ATfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "K2gY7YYBO2e_P_Qbk-gA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2j8VUArr_b9AewT6WEQL_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2j8VUArr_b9AewT6WEQL_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8mgY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBgjikC2bNo6FIg5CEWcww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBgjikC2bNo6FIg5CEWcww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "aeMY7YYByh-A-Biykhac"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gbjQ3Y9_diPygyamcLKI4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gbjQ3Y9_diPygyamcLKI4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "k2gY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "fdkY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vdmPYvdso3nyHwU3P-BxHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "y2gY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVg35eksppyHad0lI1eXKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yVg35eksppyHad0lI1eXKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ftkY7YYBBkbVtX3nkU6M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1o1T1TIStxTZj-e2WTNkwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1o1T1TIStxTZj-e2WTNkwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "GGgY7YYBO2e_P_QbkN5i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QkZ15erAXl4_xxP-OSkyww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QkZ15erAXl4_xxP-OSkyww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "M9kY7YYBBkbVtX3nlFIk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qsczIwhDc4-8PRo_Si-xGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qsczIwhDc4-8PRo_Si-xGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "j-MY7YYByh-A-BiypicL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8QWlvovygGFcfE-e_CiKgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ttkY7YYBBkbVtX3nsnET"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v33eHkvIcwAV8Kdb6vad5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v33eHkvIcwAV8Kdb6vad5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "itkY7YYBBkbVtX3nsnOa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-E3XQIukGGWcLnxv-RKlXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-E3XQIukGGWcLnxv-RKlXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "luMY7YYByh-A-BiysCjE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["thKn-WCpUEzIzuV2FdOJxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["thKn-WCpUEzIzuV2FdOJxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "MuMY7YYByh-A-BiysSoN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jUHt5y4xbMsVQ2NY3U5mxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jUHt5y4xbMsVQ2NY3U5mxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "TtkY7YYBBkbVtX3npWjG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "MeMY7YYByh-A-BiysSoN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ty1oaaASyN0P9ADJQRlYBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ty1oaaASyN0P9ADJQRlYBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "BdkY7YYBBkbVtX3nsGt1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rI5YB_X-7tV_Ivns4mBUGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rI5YB_X-7tV_Ivns4mBUGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "m-MY7YYByh-A-Biysi1P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xWkY7YYBO2e_P_QbxBjA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BKLrtLNoy5ML86CG9IkqrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BKLrtLNoy5ML86CG9IkqrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "o9kY7YYBBkbVtX3nwHt6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["raJRlHaX6wCTMJ3KEat5OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["raJRlHaX6wCTMJ3KEat5OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} {"create": {"_index": "profiling-events-all", "_id": "cGkY7YYBO2e_P_Qbvw38"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZa8a_Yg4q8eagHioqnf0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZa8a_Yg4q8eagHioqnf0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8GkY7YYBO2e_P_QbwhLW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Msb5zTh45ugl6Rm8uu8cBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Msb5zTh45ugl6Rm8uu8cBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "vNkY7YYBBkbVtX3nwHk9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iV-DwRGSNVWP28e5KWrgaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iV-DwRGSNVWP28e5KWrgaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "seMY7YYByh-A-BiywTh8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_0gKV2ZisrZ7u9Pxy3RvUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_0gKV2ZisrZ7u9Pxy3RvUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ZuMY7YYByh-A-BiywjpO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V3E8ZRD3c2NXGI6JDwoBvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V3E8ZRD3c2NXGI6JDwoBvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "D9kY7YYBBkbVtX3nw4Mt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iErvH58Jze4Jx0cV_htakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iErvH58Jze4Jx0cV_htakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "_NkY7YYBBkbVtX3nw4SF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3iF9md1hhA5lL3Jz0Fzo3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3iF9md1hhA5lL3Jz0Fzo3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "o9kY7YYBBkbVtX3n3peC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["etP9qf40owgaYF723aNtWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["etP9qf40owgaYF723aNtWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XdkY7YYBBkbVtX3n4Z_Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "m2kY7YYBO2e_P_Qb3yiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OWYvN4elc_j6L7TTAYFNTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OWYvN4elc_j6L7TTAYFNTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mdkY7YYBBkbVtX3n35pG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8DNqhKpZMDXQeydz4OxrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8DNqhKpZMDXQeydz4OxrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AmkY7YYBO2e_P_Qb4CpI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwxnuopW8nP4PdF2hl0d_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwxnuopW8nP4PdF2hl0d_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2WkY7YYBO2e_P_Qb4S1Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hOMY7YYByh-A-Biy4E8H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2STw5Dy59fyAI6ZtoR41g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c2STw5Dy59fyAI6ZtoR41g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "8WkY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BGkY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CUGk5Rcar1NXFwPiGIQVJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CUGk5Rcar1NXFwPiGIQVJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EdkY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RmkY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4nXxkGYVgHbeGTI3oHepdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4nXxkGYVgHbeGTI3oHepdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0dkY7YYBBkbVtX3n7qNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wu5Ui6X1wYCeANyAsyHaFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wu5Ui6X1wYCeANyAsyHaFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "atkY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Is6WKpq1rPgjROiY1ySbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Is6WKpq1rPgjROiY1ySbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LmkY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nf56AYpKmfrZuf4mkXNDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nf56AYpKmfrZuf4mkXNDvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EtkY7YYBBkbVtX3n8Kqc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RS8ti051V-zPvOk5r6Viqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RS8ti051V-zPvOk5r6Viqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "auMY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q4P-bQgCFNgZRLoUhZxNlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q4P-bQgCFNgZRLoUhZxNlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "fNkY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oIGtzRMmg2pbiJ9Og8Hog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5oIGtzRMmg2pbiJ9Og8Hog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ftkY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1GkY7YYBO2e_P_Qb8jzI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jIUkkqlhs_xaucQSfOkxdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "vGkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vFkcrQtWCVTfQjjlGu2S_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "l9kY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NWbNOvcI2-WO4U1Dw4kVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NWbNOvcI2-WO4U1Dw4kVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "mNkY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bjA-twM-arP4DofwAmuiCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bjA-twM-arP4DofwAmuiCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "kdkY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3cJve6GcDJQsWrYAyQs7-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3cJve6GcDJQsWrYAyQs7-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LeMY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsyWJacYf-Fc3uMhBCP2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vsyWJacYf-Fc3uMhBCP2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "nmkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "pGkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NLOhgxL61Nf_cs-ijqpzdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NLOhgxL61Nf_cs-ijqpzdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "uWkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "8mkY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Dj-O9jQmIE1I6VOFUdq8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Dj-O9jQmIE1I6VOFUdq8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "p2kY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9enMqDCvmYDJCBOe5Nxb-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9enMqDCvmYDJCBOe5Nxb-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "n2kY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j29xU2xGn45BT-0GH_GSjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j29xU2xGn45BT-0GH_GSjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nNkZ7YYBBkbVtX3nAbtG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sNkZ7YYBBkbVtX3nAb2C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWudsqc4YRwwO2UAdX1LxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWudsqc4YRwwO2UAdX1LxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9NkZ7YYBBkbVtX3nALZa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QWkZ7YYBO2e_P_QbAUXL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62iN7sDVKIBNfUxfmQdZvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["62iN7sDVKIBNfUxfmQdZvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-dkZ7YYBBkbVtX3nAr6P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hA0aNZ7KwEp2Q70t1DnO8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hA0aNZ7KwEp2Q70t1DnO8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LeMZ7YYByh-A-BiyA20X"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_DXIIIPmnKg43Vr19XmVJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_DXIIIPmnKg43Vr19XmVJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "LuMZ7YYByh-A-BiyA20X"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "0GkZ7YYBO2e_P_QbA0mU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "OtkY7YYBBkbVtX3n_rPy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q7XAR2zqlv3Nkd1rHK-fsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q7XAR2zqlv3Nkd1rHK-fsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "jtkZ7YYBBkbVtX3nALic"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "4OMZ7YYByh-A-BiyA25V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1K4WqC6eykbHpG2pCP39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JuMZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bmkZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5wAfaxsqFHmGRlT9DISZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5wAfaxsqFHmGRlT9DISZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "k2kZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AG_6FvO14ax3UdwVieto8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AG_6FvO14ax3UdwVieto8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ydkZ7YYBBkbVtX3nIM9b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WDhZREc9K0ZHjA0h4NDJhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WDhZREc9K0ZHjA0h4NDJhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "R2kZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ofBPwIIjkbSYwPiBTq9MQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ofBPwIIjkbSYwPiBTq9MQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OeMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3gm_ZN3iF76tH1hRk5YEPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3gm_ZN3iF76tH1hRk5YEPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-uMZ7YYByh-A-BiyHoO_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n8J0DIbyYxslBat-_GGskw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n8J0DIbyYxslBat-_GGskw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PeMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wY3n6ZuFWe08ye_NO9bMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wY3n6ZuFWe08ye_NO9bMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "QeMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5XgTaHt-dAo8vDgnzZy0dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5XgTaHt-dAo8vDgnzZy0dA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "1OMZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOL7hTlazWG39CR6gZV56w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOL7hTlazWG39CR6gZV56w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "o2kZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_AVql7KXMLg1O-JULbNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_AVql7KXMLg1O-JULbNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "JOMZ7YYByh-A-BiyIpJU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qD_J237PVcJWQeJzWEaj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qD_J237PVcJWQeJzWEaj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "b2kZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "NuMZ7YYByh-A-BiyIY5d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caBHj7BnRD7P-V0_GNLChg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caBHj7BnRD7P-V0_GNLChg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "A2kZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jsv-D1yBcc_Oezz_dC64fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jsv-D1yBcc_Oezz_dC64fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OuMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lGkZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaQK44tICLO4ljAwiqTd8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "ydkZ7YYBBkbVtX3nHcyi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yj80EbH9E-W_Q5ntbWTS-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yj80EbH9E-W_Q5ntbWTS-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "JNkZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DyoYwzb-7gOf1fSN1_ar0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DyoYwzb-7gOf1fSN1_ar0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "AmkZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZnqYkX8N3cXlE52NykkcUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZnqYkX8N3cXlE52NykkcUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} {"create": {"_index": "profiling-events-all", "_id": "lGkZ7YYBO2e_P_QbMHDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PaAhGTZhdMpehXmqOre8TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PaAhGTZhdMpehXmqOre8TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "S2kZ7YYBO2e_P_QbMXJP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnrTN3oNHBWQmiPNUfJdZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PmkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rHXidrM7meN_QI4wKNJ_Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rHXidrM7meN_QI4wKNJ_Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NmkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iUnfb2tG1dlb7pOItjVV-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iUnfb2tG1dlb7pOItjVV-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "a2kZ7YYBO2e_P_QbL2zC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akH3OgREzKvOjMJueUVNqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akH3OgREzKvOjMJueUVNqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "D-MZ7YYByh-A-BiyMJmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_qVPV2mnUzJdVUKzin8SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_qVPV2mnUzJdVUKzin8SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "NWkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "_t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u15yh22vXEfk9m8DTVYjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u15yh22vXEfk9m8DTVYjBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "I98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ewzp1cQUgnGEhjhPWmAuYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ewzp1cQUgnGEhjhPWmAuYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fGUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9pkEB28Fu_-6ScaHtKhZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9pkEB28Fu_-6ScaHtKhZrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "598U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0KTuXhL53Ud6Yv9U2lJ-uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0KTuXhL53Ud6Yv9U2lJ-uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "798U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI9JvucnvxyxLZyzixdcpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zI9JvucnvxyxLZyzixdcpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Ct8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wPMMl0ctYrNZIQpMrKFAHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wPMMl0ctYrNZIQpMrKFAHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "M98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QCh5sHgROUyQz6UM1BRbJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QCh5sHgROUyQz6UM1BRbJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DGUU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Q9YU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "e98U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ijzowidHYpe6-vKJVUy8nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ijzowidHYpe6-vKJVUy8nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "eGUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "DN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eqelKqbeHiTw1Jlw68liwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eqelKqbeHiTw1Jlw68liwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Gt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sWUvdmC1yhMffRymX3J_5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "2d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5P_TKhYwLk13iojfv7McxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5P_TKhYwLk13iojfv7McxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bmEkpLRxJcoyFpwchxMFpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bmEkpLRxJcoyFpwchxMFpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nbSM4WjFbrCVZaZdfPqVTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nbSM4WjFbrCVZaZdfPqVTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ON8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V3FpOTUk7je6uP4mlCqmkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V3FpOTUk7je6uP4mlCqmkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iu2XyIi4FVCIJrDGecefmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iu2XyIi4FVCIJrDGecefmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "d2UU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81I56QjbyDYSIFcetHM2Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["81I56QjbyDYSIFcetHM2Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "D98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Nd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NNYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EYN09YTQJzILDrRVzDD1TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EYN09YTQJzILDrRVzDD1TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ut8U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BHEo7QGhrwJZN1gfWBJvpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BHEo7QGhrwJZN1gfWBJvpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "f2UU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B70CGF1Zyq8tOnSlg6wrvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B70CGF1Zyq8tOnSlg6wrvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "198U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GSSm9zDDOmvcEwNipfzOIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GSSm9zDDOmvcEwNipfzOIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYH5SpsYYEui3Y6WMr108A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYH5SpsYYEui3Y6WMr108A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Bd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fapb056I2fVdN7OPGzRPEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fapb056I2fVdN7OPGzRPEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Ft8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "IN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJXvcRJSTv0fetUhCxNrHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XJXvcRJSTv0fetUhCxNrHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "F98U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dSWElYBhPnO8A6dUDGPqZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dSWElYBhPnO8A6dUDGPqZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4d8U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7W9hedogOVjTIlC7EFh1sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7W9hedogOVjTIlC7EFh1sA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "N9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wKVKRY5ojzt2TA4h8awoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-wKVKRY5ojzt2TA4h8awoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "e2UU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFGWThWg3zgxDL3xxQAwYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uFGWThWg3zgxDL3xxQAwYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "nt8U7YYByh-A-BiyusTM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGDDHXE1D8GrXVwGCFBYtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGDDHXE1D8GrXVwGCFBYtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "9t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "_N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yfHwdMgNnjjToBF0X-5h8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yfHwdMgNnjjToBF0X-5h8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "FWUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_YaGHyTQP12JNwJEIiAfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_YaGHyTQP12JNwJEIiAfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "42UU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHAJjYcGydH1wr7a4b6sRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHAJjYcGydH1wr7a4b6sRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "7t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F2xDW96B93CXTxJUyPdwXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F2xDW96B93CXTxJUyPdwXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "9N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWvxOIZDGq4hR0RiTlBjWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWvxOIZDGq4hR0RiTlBjWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "G98U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oXw1ozfUuFf-QgxGHiD6zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oXw1ozfUuFf-QgxGHiD6zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "1N8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_4atfXLBslE1IWQAx5zAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R_4atfXLBslE1IWQAx5zAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "d98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iLTslrGORIyXKfkvn0rVCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iLTslrGORIyXKfkvn0rVCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Ld8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFeV1BctdgGmKhHEdAax5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFeV1BctdgGmKhHEdAax5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FvVELYKd9mRXwxXR-cNS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FvVELYKd9mRXwxXR-cNS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dd8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UyfEXTPwOxcT1_g30PZ4bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UyfEXTPwOxcT1_g30PZ4bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yNYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5QxSgtn_YPXxJ3jCeAVHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} {"create": {"_index": "profiling-events-all", "_id": "cNYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnHzRqCV09wC0f_3_YNq7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MnHzRqCV09wC0f_3_YNq7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "0d8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eIiWRPbXZKuww0eQLj2S1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eIiWRPbXZKuww0eQLj2S1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "WtYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_j480Qg9v5TNK0lQGeFwAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_j480Qg9v5TNK0lQGeFwAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "k9YU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8AqERkmGja0aVhFHauF_yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "1d8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "V98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vj8M1UtdEZK08xJh31zdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vj8M1UtdEZK08xJh31zdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Xt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ppDlnMd3xFqbVJBXCzI3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ppDlnMd3xFqbVJBXCzI3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Y98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GSPW9ejYGoryJizaJVvA_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GSPW9ejYGoryJizaJVvA_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ad8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ct8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eTVIIJLC47DBl1ATsTawg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eTVIIJLC47DBl1ATsTawg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "fN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PYBUfV4nZR3PAgyIKhIwDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PYBUfV4nZR3PAgyIKhIwDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "r98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Faz4zgOreVW0ypNL1btnNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Faz4zgOreVW0ypNL1btnNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "I9YU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZ-D2nB7GiIQ9IS_G8xApA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZ-D2nB7GiIQ9IS_G8xApA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ktYU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DsctT-_nwdHL3iCwXEsMsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DsctT-_nwdHL3iCwXEsMsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bihc1FtLJWO9OKz_9ub0mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bihc1FtLJWO9OKz_9ub0mw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "62UU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PWgvP1t7oB9ALOV1YcECow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PWgvP1t7oB9ALOV1YcECow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Vd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S64TDAyJLSWTBaPN1VT2qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S64TDAyJLSWTBaPN1VT2qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CM3wI_wNpbRDHBz8scMkcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CM3wI_wNpbRDHBz8scMkcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k9vLKRFLFVoj2RZU6JVbBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k9vLKRFLFVoj2RZU6JVbBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9GEtZihsTZTLRmEEEBupXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9GEtZihsTZTLRmEEEBupXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "g98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rBcz46AS-WiFNbV2tPSIUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rBcz46AS-WiFNbV2tPSIUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaCen5lChBQlFEf5iOW4fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaCen5lChBQlFEf5iOW4fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0d8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PFZFr9561-fHgGNeWX0Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PFZFr9561-fHgGNeWX0Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "x9YU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eGK7xB80q6I8iYxZSFEE1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eGK7xB80q6I8iYxZSFEE1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IdYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2BsosH4qrHldN8GgKmd2MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2BsosH4qrHldN8GgKmd2MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7GUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bCqkpCznSihZhI5AqtWxgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bCqkpCznSihZhI5AqtWxgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ed8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbOVGyx5XatnK0SRKgRKUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mbOVGyx5XatnK0SRKgRKUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FSB68hM0SvGoIwFSJoj9uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FSB68hM0SvGoIwFSJoj9uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jvc_WE7B1F8hMVB_gxFucA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jvc_WE7B1F8hMVB_gxFucA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cdYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SnDCdYihCB3VPX-yxBkTjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SnDCdYihCB3VPX-yxBkTjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "2N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrMhbMTHmXqZZAz4xxL86g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrMhbMTHmXqZZAz4xxL86g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "kN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LGVygn6s_9pflNC3YeaZkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LGVygn6s_9pflNC3YeaZkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "aWUU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lxizPGq-ZlOtsos_BMUvJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lxizPGq-ZlOtsos_BMUvJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "Yd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaGG1TY-seWlRMIXhOJNsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "503617803902968"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaGG1TY-seWlRMIXhOJNsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "503617803902968"} {"create": {"_index": "profiling-events-all", "_id": "l98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sJC4CV2eRcloTSQEGQH29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sJC4CV2eRcloTSQEGQH29Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6QhkBtx7gvljSIZUeTjHcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6QhkBtx7gvljSIZUeTjHcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} {"create": {"_index": "profiling-events-all", "_id": "XtYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["laLiuCpHKHuOVWhZk5dt9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["laLiuCpHKHuOVWhZk5dt9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "kdYU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LEWayJpRjxQq29QdLgh_nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LEWayJpRjxQq29QdLgh_nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "yd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yZrBKxKhbw4I5T2D2ia0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yZrBKxKhbw4I5T2D2ia0Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "kd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7FDPiYnztHLh8lvlMFRyXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7FDPiYnztHLh8lvlMFRyXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "a9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaLam_KQiz8POCW3aoer2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VaLam_KQiz8POCW3aoer2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "iNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWKX-ZC2lOv6w1ALdddfTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWKX-ZC2lOv6w1ALdddfTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mknpTKgXrVcTrP0y-Vu4pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mknpTKgXrVcTrP0y-Vu4pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zthyKuXsoA4KkwsS0PTltg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zthyKuXsoA4KkwsS0PTltg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SOHLJ-nmGdCO3sK7plOv2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SOHLJ-nmGdCO3sK7plOv2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fq5gtNQfWd1unM0EZse4Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fq5gtNQfWd1unM0EZse4Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP03oXWkrXH194nvbfv1DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP03oXWkrXH194nvbfv1DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "cdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H5q2tXxLE1d4iFM0ZRc45w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H5q2tXxLE1d4iFM0ZRc45w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "gdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I5V2d7T-ngpDaQd5S4eJBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "idYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9mej-PTu4SZGfpi083-2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9mej-PTu4SZGfpi083-2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "jNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Nr_8hMt7lL3ObaXhoWtKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Nr_8hMt7lL3ObaXhoWtKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "vdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B_1gf1EYUxn7EVvh7093Dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B_1gf1EYUxn7EVvh7093Dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "wdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOcKR6g40j0qNVOcPsBj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UOcKR6g40j0qNVOcPsBj4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["87tmMz7dkdhga3ssbWBSBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "79YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoGJrCEQ34-StmPNyR5q3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JoGJrCEQ34-StmPNyR5q3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "WdYU7YYBBkbVtX3n7DJm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Cd8U7YYByh-A-Biy7P_G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "qtYU7YYBBkbVtX3n9jvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cxsXzrG-rWhSkAffaeLL8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "g9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfRadBAJgVIPCs4sRWRCsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BfRadBAJgVIPCs4sRWRCsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "69YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LrLWZ5bevl0fyb8pVLrxUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LrLWZ5bevl0fyb8pVLrxUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "yNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jBxx8BsBrE-wbyWADe34bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jBxx8BsBrE-wbyWADe34bQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "dtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mxx8ugWwWszTb7eJBegR_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mxx8ugWwWszTb7eJBegR_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IngmyqAhSupCs-_uuEXPtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IngmyqAhSupCs-_uuEXPtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FkuuK33tmpaBP6yN588PoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FkuuK33tmpaBP6yN588PoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l-yGtc7ewbZgVN8gK10pTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l-yGtc7ewbZgVN8gK10pTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IVe1z8n3OgBSXs9ZgYQTCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IVe1z8n3OgBSXs9ZgYQTCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IWUU7YYBO2e_P_Qb7s4B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fRgvmW6OzWfmn-P-AvBcnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fRgvmW6OzWfmn-P-AvBcnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ftyi07t9eEe9-e4ojBNJbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ftyi07t9eEe9-e4ojBNJbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nn_ySIHBlBRC_S__9EYUQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nn_ySIHBlBRC_S__9EYUQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ndYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihAOVqchKA5mXlZP4M1IsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihAOVqchKA5mXlZP4M1IsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "r9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDv5HwoOhhJwuGtzx9aiqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XDv5HwoOhhJwuGtzx9aiqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PEL3jW6ozwuPYGESMGBbbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PEL3jW6ozwuPYGESMGBbbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCe68q68pLemWJDxvGUezA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCe68q68pLemWJDxvGUezA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["64Ux2oNdDZBBedmvlh2Jwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["64Ux2oNdDZBBedmvlh2Jwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gJQSsgSapsp92rjPF1WFiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gJQSsgSapsp92rjPF1WFiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "ntYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uchiuLFbH0NhckqiyJoDow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uchiuLFbH0NhckqiyJoDow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "qNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Dqb1JZa6QuOKypgO1FUIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Dqb1JZa6QuOKypgO1FUIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ytYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TrAEEkzHCQIrkyMsb-wF4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TrAEEkzHCQIrkyMsb-wF4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mef8b6Ms_KB9BmHs5fEaQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mef8b6Ms_KB9BmHs5fEaQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "8dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MMNf5Flp1WG-AiF7Q4RJ_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MMNf5Flp1WG-AiF7Q4RJ_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "QuAU7YYByh-A-Biy9wH-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "s9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fgalSE7MGf2Y-ZRC0Xb24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fgalSE7MGf2Y-ZRC0Xb24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "wNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gf9T-ToUcXZ1fopG8bUaCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gf9T-ToUcXZ1fopG8bUaCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "UWUU7YYBO2e_P_Qb-NFi"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "meAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QdX4ICkFiBy7z35tqsMeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QdX4ICkFiBy7z35tqsMeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "R2UV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gkXyNFDJDBzOyUtceexiUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gkXyNFDJDBzOyUtceexiUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZuAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aMeqW0QxLpn1TpYZf4XBMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "p9YV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5herarFi58uky2CNY5OarQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "SGUV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "FeAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQHZ33M2r9CWZs0ylfnGiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQHZ33M2r9CWZs0ylfnGiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DtYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kOsAFOokw3TMOocYazB7hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kOsAFOokw3TMOocYazB7hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LNYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SmKjrD7wsCsyGVvgvupg3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SmKjrD7wsCsyGVvgvupg3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "duAV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Org4Ct_UK1CJypQlyzN79g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Org4Ct_UK1CJypQlyzN79g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-BiyChop"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NJLtoy2AIp4OF7edUsA8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NJLtoy2AIp4OF7edUsA8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qNYV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fmIQ76zzVZ9EWAQ55W78zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fmIQ76zzVZ9EWAQ55W78zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "l-AV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EM9AISJikuWZSi4uSs5f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EM9AISJikuWZSi4uSs5f_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GOAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WGa9qjf8wQqVaf6Gdp-z_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WGa9qjf8wQqVaf6Gdp-z_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qdYV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rp13JE-7UWo9J1PFiierKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rp13JE-7UWo9J1PFiierKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "luAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8YnDoiutnFkCKfHN27NSuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8YnDoiutnFkCKfHN27NSuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "ZOAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLtkTN9H0P9GQGUpxzaGrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gtYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtVvdG2-K8RntFVkz8aZsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtVvdG2-K8RntFVkz8aZsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "muAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOsagAt-XXDxs5XGCBbstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dOsagAt-XXDxs5XGCBbstQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "OtYV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHi_az7OQcBjeyPt41wowA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "95381405781962"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SHi_az7OQcBjeyPt41wowA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "95381405781962"} {"create": {"_index": "profiling-events-all", "_id": "ctYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7NiiM2JcpyLYptGtnS-lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7NiiM2JcpyLYptGtnS-lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aGUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yG5lvQdywRfDEpDAMlDFjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yG5lvQdywRfDEpDAMlDFjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zGUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yc_2GTJ_IVPE7f4u8QXDeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yc_2GTJ_IVPE7f4u8QXDeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "ztYV7YYBBkbVtX3nFmPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BWUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F6v4xvUd6G7lflKiKXtLLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F6v4xvUd6G7lflKiKXtLLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xOAV7YYByh-A-BiyGCg0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "L-AV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g5lILDW4r2wlyzbt5lq7Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g5lILDW4r2wlyzbt5lq7Iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BmUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MUbC0p7FbajtleTdDiK2wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MUbC0p7FbajtleTdDiK2wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "xOAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-bsoNX49ITduR-HMxcIbsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zdYV7YYBBkbVtX3nFmPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKuwq_wY-m6F_YLLdvsE3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKuwq_wY-m6F_YLLdvsE3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3tYV7YYBBkbVtX3nF2Us"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "rGUV7YYBO2e_P_QbF-XY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["99BgVVChjb4P4hAXrcSmGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["99BgVVChjb4P4hAXrcSmGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "A2UV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oiCF7gS8wBa3SfipWqWdgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oiCF7gS8wBa3SfipWqWdgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "yNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9IJobkCHFBtPShwAqokpow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9IJobkCHFBtPShwAqokpow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "iuAV7YYByh-A-BiyNUTr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qb72Yobg_yLohYI9gpP09w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qb72Yobg_yLohYI9gpP09w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mIzahuxkrhduKlDufHRVKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mIzahuxkrhduKlDufHRVKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOKIXPSdx-N8wuoQB9U_bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pOKIXPSdx-N8wuoQB9U_bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wtYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "w9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ejCsmFBHwcIycmn6V3r8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ejCsmFBHwcIycmn6V3r8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "3tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kAevgyPrUYMi1qMg2RT9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kAevgyPrUYMi1qMg2RT9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6OAV7YYByh-A-BiyNkXi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wfVS4y4D58OSyaXvZj-XtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wfVS4y4D58OSyaXvZj-XtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "w-AV7YYByh-A-BiyN0ck"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z4iiv5UxRhQpx3JPtDse_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z4iiv5UxRhQpx3JPtDse_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "FeAV7YYByh-A-BiyK0C1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qwzw6oIfyawdflY_bB-eDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qwzw6oIfyawdflY_bB-eDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "x9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z0qb5lnO7jV9ZiYyxxUpVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z0qb5lnO7jV9ZiYyxxUpVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "0dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sIn36_6lhKQc_bEzQgq03g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sIn36_6lhKQc_bEzQgq03g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "5tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "d2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zs0wdHAUro9OZHb7uDVC0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zs0wdHAUro9OZHb7uDVC0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "f2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ8fRP549U0JQTjsBAy_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ8fRP549U0JQTjsBAy_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WeAV7YYByh-A-BiySFbi"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4YktLuYieY_qIn0-Svbtbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4YktLuYieY_qIn0-Svbtbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ANYV7YYBBkbVtX3nSp3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5yQFzmK6rVAYH_IWw9mY4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5yQFzmK6rVAYH_IWw9mY4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "TuAV7YYByh-A-BiyRE-k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlDB0giXI1NsaTgwfP9dqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlDB0giXI1NsaTgwfP9dqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "cWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96zUk00wJUkz6pqWJ4UVBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "eGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n7QBBvONqlianWpauyZWrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n7QBBvONqlianWpauyZWrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "bmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSznj8DVFmJrz2nQyuMvVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSznj8DVFmJrz2nQyuMvVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "mmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LUbJKRt2QZB4MM480Ex81g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LUbJKRt2QZB4MM480Ex81g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "kWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0VugIogSoCuJazNruqmpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0VugIogSoCuJazNruqmpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WD-Hox2mUf33ggVA1pZW3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WD-Hox2mUf33ggVA1pZW3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Y2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0P5ZzCLXHvPtrKtxiUuFPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0P5ZzCLXHvPtrKtxiUuFPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "dmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "eWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "iWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dpoKTK9LU4hKKEDZqArQ-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dpoKTK9LU4hKKEDZqArQ-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "lmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uf9UVmqLr0wj8jkOytmlgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uf9UVmqLr0wj8jkOytmlgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1WYV7YYBO2e_P_QbSQ9v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nTKQS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["56T0aIwgwSEUNL-7riuYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["56T0aIwgwSEUNL-7riuYkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xtYV7YYBBkbVtX3nVKlD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIUTQnmo7hmDvvAn77UZ1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIUTQnmo7hmDvvAn77UZ1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "U9YV7YYBBkbVtX3nVa1D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["puIsGFT9D9ie7OaAMWkigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["puIsGFT9D9ie7OaAMWkigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UtYV7YYBBkbVtX3nVa1D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mAgmPEf7EXxW53hQ-sKjJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mAgmPEf7EXxW53hQ-sKjJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "7tYV7YYBBkbVtX3nVq52"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JT_5OseDCbBwbh6-ei601g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JT_5OseDCbBwbh6-ei601g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7dYV7YYBBkbVtX3nVq52"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GU1_UWZYiKrKpJ3S0rF8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GU1_UWZYiKrKpJ3S0rF8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F2YV7YYBO2e_P_QbVxih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QBmlTSly2COGQg4tFf4YgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QBmlTSly2COGQg4tFf4YgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OWYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwXoXWu14wnNism8hup1ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwXoXWu14wnNism8hup1ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-tYV7YYBBkbVtX3nW7rm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uV6WbBNOuHvs6QDcFyIEHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uV6WbBNOuHvs6QDcFyIEHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-2YV7YYBO2e_P_QbWR0q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JDfH1YIww9Sqd-S_w7NU1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JDfH1YIww9Sqd-S_w7NU1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RNYV7YYBBkbVtX3nWrnf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["deEhfqa-GWkx1wr4iMz1nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["deEhfqa-GWkx1wr4iMz1nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "uOAV7YYByh-A-BiyWmE2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7-fVN4a3INYDwPmaOS0Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y7-fVN4a3INYDwPmaOS0Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "mdYV7YYBBkbVtX3nWreQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENrq2_MBwld_ERQVMIbQlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ENrq2_MBwld_ERQVMIbQlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "KeAV7YYByh-A-BiyWGBd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a7q9y6bl0FIQxuLqZqANIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a7q9y6bl0FIQxuLqZqANIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "mNYV7YYBBkbVtX3nWreQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "B2YV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AUziHZelmRAq_ogGLsAghQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AUziHZelmRAq_ogGLsAghQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "4GYV7YYBO2e_P_QbWyOI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["07tFiGQvKlKEn8Vy4W9Sog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["07tFiGQvKlKEn8Vy4W9Sog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9-AV7YYByh-A-BiyVFzv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFK8oAGV_jR__SZWaQoiWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFK8oAGV_jR__SZWaQoiWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "-OAV7YYByh-A-BiyVFzv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MErld6wdBGLR2ab9ZWtH2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MErld6wdBGLR2ab9ZWtH2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "uOAV7YYByh-A-BiyVV6i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "NtYV7YYBBkbVtX3ndcxm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPAXeu9JRh62VS0TzctJEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPAXeu9JRh62VS0TzctJEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh6dkbq8WqrY7XSMixfetg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh6dkbq8WqrY7XSMixfetg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TtYV7YYBBkbVtX3ndtKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Wa8MgBNSJuWvg6Zve7ROA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Wa8MgBNSJuWvg6Zve7ROA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RX6MWdoFei8k1kwyhzfnHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RX6MWdoFei8k1kwyhzfnHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6YWns3NF2PVmevxSMrfdSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6YWns3NF2PVmevxSMrfdSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WwFWfRAxe9vNEiy3LvcKPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WwFWfRAxe9vNEiy3LvcKPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iweYdmdhgZ2TexEvbTHmRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iweYdmdhgZ2TexEvbTHmRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "heAV7YYByh-A-Biyd3Y6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3tj55kewRVSqh_hbiqeHsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3tj55kewRVSqh_hbiqeHsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XeAV7YYByh-A-BiyaW45"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKuwq_wY-m6F_YLLdvsE3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JKuwq_wY-m6F_YLLdvsE3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "G-AV7YYByh-A-BiydHGD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6GIXZB_oqJtK4ZOCyzjV1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6GIXZB_oqJtK4ZOCyzjV1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "VWYV7YYBO2e_P_Qbdz58"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lrXQOYdtT3nAkaFRyN7-0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lrXQOYdtT3nAkaFRyN7-0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "q9YV7YYBBkbVtX3naMS4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SJqbNgrSxDdoOACHB93N4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SJqbNgrSxDdoOACHB93N4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "wGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fkclrml2poKZRsRiP2tUBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fkclrml2poKZRsRiP2tUBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "xGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwchOulsOERDFXbfKPcBMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AwchOulsOERDFXbfKPcBMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "yGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "c-AV7YYByh-A-BiyhoV2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qaZ4j35u_YBqQ5HnDB_oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4qaZ4j35u_YBqQ5HnDB_oQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7OAV7YYByh-A-BiyiIYF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ymje1CajexZF5hJ1bAbTlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ymje1CajexZF5hJ1bAbTlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VOAV7YYByh-A-BiyiIjx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["99dRlWUAlFNw4L5T7yQdfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["99dRlWUAlFNw4L5T7yQdfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QOAV7YYByh-A-BiyhIRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CaYO4egGBij97PHY37LF3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CaYO4egGBij97PHY37LF3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CtYV7YYBBkbVtX3nhNrA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oihk6v8OvTDdD6N0NY6YVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oihk6v8OvTDdD6N0NY6YVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UWYV7YYBO2e_P_Qbhkg5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jP--MF88HszSEEHJkdZMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jP--MF88HszSEEHJkdZMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QWYV7YYBO2e_P_QbiE9B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDlisnvqa1LLQOmq1q0Eow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDlisnvqa1LLQOmq1q0Eow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nieY3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0BKf-9CBUYklPmi5iCM1rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0BKf-9CBUYklPmi5iCM1rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TGYV7YYBO2e_P_Qbh029"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NyrWdA_BddZBmB7vWwrYvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NyrWdA_BddZBmB7vWwrYvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "f-AV7YYByh-A-BiyhIIL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7_opwU1mFxT0XU3A2dlAxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7_opwU1mFxT0XU3A2dlAxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "SNYV7YYBBkbVtX3niOWG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ2BKRv9gSdaoFxQ-TzvPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ2BKRv9gSdaoFxQ-TzvPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "TWYV7YYBO2e_P_Qbh029"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6UMSC7GLe9jd7t1ot1_kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6UMSC7GLe9jd7t1ot1_kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "U-AV7YYByh-A-BiyiIjx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eakp9OVIhBxsZNnrdfGKYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eakp9OVIhBxsZNnrdfGKYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "fuAV7YYByh-A-Biyo5MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RhMJrUxrd57e6G7g2-PKcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RhMJrUxrd57e6G7g2-PKcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "R2YV7YYBO2e_P_Qbol5k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9dYV7YYBBkbVtX3nmPyP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLI30dzAv_XVLHnFXWzCzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLI30dzAv_XVLHnFXWzCzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zmYV7YYBO2e_P_QbmV0u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GNcV7YYBBkbVtX3npQJl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aLyOgMQu19TF5wLalqlvBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "707202532850088"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aLyOgMQu19TF5wLalqlvBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "707202532850088"} {"create": {"_index": "profiling-events-all", "_id": "NtYV7YYBBkbVtX3nlvIq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["btxpNnU_e8R601EfodEE5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["btxpNnU_e8R601EfodEE5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0NYV7YYBBkbVtX3nl_dj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0pVn3RaIbpVhn8RviFIpJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "b2YV7YYBO2e_P_Qbo2DE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "adcV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFeV1BctdgGmKhHEdAax5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFeV1BctdgGmKhHEdAax5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MeAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fUnBrD_WzBp45WRRoNXPpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fUnBrD_WzBp45WRRoNXPpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uDNzqwFHdWL1Gt4wJdSyGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uDNzqwFHdWL1Gt4wJdSyGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B9cV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VRt6q5F3ckt_c8O1gwmSjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VRt6q5F3ckt_c8O1gwmSjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2dcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PQ297jfrM7aOAB4-C3MH-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PQ297jfrM7aOAB4-C3MH-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "I2YV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o02UcgaTacPmYjOwwPOCJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o02UcgaTacPmYjOwwPOCJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R8qQ1EkUatykSwAEdlZfRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R8qQ1EkUatykSwAEdlZfRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VNcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nON9RmBx4umF5B_Of_VNaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nON9RmBx4umF5B_Of_VNaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "2NcV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ExUCp1oD4V2746Bz2cZdiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ExUCp1oD4V2746Bz2cZdiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9NcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ojISZd3oQrHFv15BTiVAhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ojISZd3oQrHFv15BTiVAhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pczYn9bA4SlIUvF6oLM4Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "WeAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-gvaAwuroQsfSOFcGq40g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-gvaAwuroQsfSOFcGq40g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-uvhrHdtYBwaSTwW97ffvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-uvhrHdtYBwaSTwW97ffvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "CNcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fp8z5vGvSD0i9Ni8-EZ6jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fp8z5vGvSD0i9Ni8-EZ6jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Y-AV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["48ZFJTNDYJpyOFN3X2WN0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["48ZFJTNDYJpyOFN3X2WN0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6dcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8foXFGiFUjsvoBc2tLNSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I8foXFGiFUjsvoBc2tLNSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "yNcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "q2YV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NNgMPk_Aq5xW7b1t7OKA5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NNgMPk_Aq5xW7b1t7OKA5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "V9cV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d31EKO2VF5LonJxrOu4FNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d31EKO2VF5LonJxrOu4FNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "0OAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9eJFc1RqWTK4Nh5sHxlOdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "SNcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "iNcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "iNcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LKEaCr3J8DRAWmFUoWCNBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LKEaCr3J8DRAWmFUoWCNBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "fNcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "4mYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KOMN7HDuAGD1N2A7P0t7vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KOMN7HDuAGD1N2A7P0t7vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "QGYV7YYBO2e_P_Qbxnnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlrbhXKEUrmfjLJYUMrELQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wlrbhXKEUrmfjLJYUMrELQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-OAV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1uwRNa4999k1DkBivtvQiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1uwRNa4999k1DkBivtvQiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "p-AV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E53CaCO64IW70sjHWzGHVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E53CaCO64IW70sjHWzGHVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "D2YV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kmYV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wZyq92-n1mREdjg_zgtpMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wZyq92-n1mREdjg_zgtpMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "wWYV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBkis1--lWH-VTcyB6uwYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBkis1--lWH-VTcyB6uwYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "gOAV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acVe45FNWlYgmO4nWQHN3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acVe45FNWlYgmO4nWQHN3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "qeAV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ihGJ_26t_QqommWWGt2AFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "qOAV7YYByh-A-Biy08M-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WJw6-5iVNJ-4mcsircvR6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WJw6-5iVNJ-4mcsircvR6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "ZdcV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ_bArkiIPRSWu3KZBADQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ_bArkiIPRSWu3KZBADQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L-AV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YYYi3p87Qv-d-cNhljrsYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YYYi3p87Qv-d-cNhljrsYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nGYV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZGUB8nd8sv9Or-VM0Kjm3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZGUB8nd8sv9Or-VM0Kjm3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-eAV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UcSfB9O7oaCsfgTNqnRSmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UcSfB9O7oaCsfgTNqnRSmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QuAV7YYByh-A-Biy1MfN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pUot7h45U8B9b9S1T5stzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pUot7h45U8B9b9S1T5stzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7mYV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QT_0k1qSEqNIoe2v3zsJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QT_0k1qSEqNIoe2v3zsJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Y9cV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IuR7KAGunHdUgixJ44Kh9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IuR7KAGunHdUgixJ44Kh9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ZNcV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h78omCSCOG8EoQ0xkchTYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h78omCSCOG8EoQ0xkchTYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "BNcV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8mRMx1StXr0LAO6ji3Y2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8mRMx1StXr0LAO6ji3Y2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "JOAV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "JeAV7YYByh-A-Biy0cDF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UpG4HUjCnzDBM_w7fbVK2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "aNcV7YYBBkbVtX3n5EbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vB8t8x7qJssFpC43ts9N9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vB8t8x7qJssFpC43ts9N9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-Biy5t9l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pOAV7YYByh-A-Biy5dxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3ZqEBwfD7Kct76Q2Ha5ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v3ZqEBwfD7Kct76Q2Ha5ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tuAV7YYByh-A-Biy4dbn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0e7BwxOo44d7lCUy997IJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0e7BwxOo44d7lCUy997IJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "INcV7YYBBkbVtX3n40O7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jx5ziVarO0rH_UBySTUCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "wdcV7YYBBkbVtX3n5EQ_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1azdmus8MOaCZZsOVGC4Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1azdmus8MOaCZZsOVGC4Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gNcV7YYBBkbVtX3n4Two"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UDdkGUkVb5eesXaBvqvyqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UDdkGUkVb5eesXaBvqvyqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "s9cV7YYBBkbVtX3n4j9s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-Biy4dNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZvFVTJOMfo7RHR7D2PEUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ntcV7YYBBkbVtX3n40Er"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wMYpNYJGdYQOQzp2QFWVOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wMYpNYJGdYQOQzp2QFWVOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "JdcV7YYBBkbVtX3n4j4u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-SfQ_r9EJdGkmFMOGPAZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q-SfQ_r9EJdGkmFMOGPAZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "z9cW7YYBBkbVtX3nAVhI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acGHnAm6JFFvJ2ZoZKt_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acGHnAm6JFFvJ2ZoZKt_fg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-WYW7YYBO2e_P_QbBKlb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fMEGhVur8bO2mv1boqOVuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ytcW7YYBBkbVtX3nBWBe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gXR6EGOsoWtrSlWApDMCzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gXR6EGOsoWtrSlWApDMCzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b9cV7YYBBkbVtX3n9lYm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "r-AW7YYByh-A-BiyBPC2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L2tnlnNGd85PzXoftF65LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "S2YW7YYBO2e_P_QbAaSR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-riZP-fh7uXaUsCqBO2ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "y9cW7YYBBkbVtX3nBWBe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVbkX_ePnzMrnOl-TBl5FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EVbkX_ePnzMrnOl-TBl5FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-all", "_id": "k-AW7YYByh-A-BiyBfKz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SGWXcHhJ-3eFNiySrhglHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SGWXcHhJ-3eFNiySrhglHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "juAW7YYByh-A-BiyEf7z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqS65a_0vS0KD1oFWfGPCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cqS65a_0vS0KD1oFWfGPCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "j-AW7YYByh-A-BiyEf7z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hMnXoL28a6WRFVFuXnlcrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hMnXoL28a6WRFVFuXnlcrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nOEW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6Z5oRx4O63IFM67ZJuuJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6Z5oRx4O63IFM67ZJuuJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LWYW7YYBO2e_P_QbELiv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUFADSo1xxMWcv8DSPuI8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUFADSo1xxMWcv8DSPuI8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BNcW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vwNl340FtK4II3OTHfAxDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vwNl340FtK4II3OTHfAxDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4-AW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zt84rjIRj6I8L5VSa3HBpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zt84rjIRj6I8L5VSa3HBpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "edcW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gKIIWZ-RBY_pDJxZsnm0jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gKIIWZ-RBY_pDJxZsnm0jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "neEW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HOEW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7-AW7YYByh-A-BiyEfxY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JqJc9Tw8mUc7OkItUIvw5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JqJc9Tw8mUc7OkItUIvw5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "gWYW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t1xfFBeH5Fl1K12J5A31pQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "g2YW7YYBO2e_P_QbFL_E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q1sP74JQ43bJB5q4cKtRIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q1sP74JQ43bJB5q4cKtRIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "qmYW7YYBO2e_P_QbEruU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "89cW7YYBBkbVtX3nEGNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MNoOASNIU68SUFgbeLW58A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "GWYW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_XfhBGlE3Xx8UElIIjuaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z_XfhBGlE3Xx8UElIIjuaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9dcW7YYBBkbVtX3nEGNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EEeUn8j0Iub4lrEKoW-8Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "179675615145181"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EEeUn8j0Iub4lrEKoW-8Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "179675615145181"} {"create": {"_index": "profiling-events-all", "_id": "etcW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["720bYtIjXZ0s4au9mJ3ENA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["720bYtIjXZ0s4au9mJ3ENA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nuEW7YYByh-A-BiyEgDd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9jPK4ekFswUlDMrLg6xAug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9jPK4ekFswUlDMrLg6xAug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "buEW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NYCnn7inzK2gAPHma58uQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NYCnn7inzK2gAPHma58uQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "IWYW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S58C5t85-Y0vir0VJHn3sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S58C5t85-Y0vir0VJHn3sQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "7uAW7YYByh-A-BiyEfxY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jQg_3Bmo6e2S1O85p_SEZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jQg_3Bmo6e2S1O85p_SEZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "CNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ch3muNdb91l8mJnrRw326w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ch3muNdb91l8mJnrRw326w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nqNBcpTJOJBcaLx3xSaIng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nqNBcpTJOJBcaLx3xSaIng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PaaTApbUCVYoJdVKOnUBcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PaaTApbUCVYoJdVKOnUBcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ymYW7YYBO2e_P_QbJczE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgzswmC99T0GXpCWQr9U_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgzswmC99T0GXpCWQr9U_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t4n19LeK4zvHCEOuBRHoDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t4n19LeK4zvHCEOuBRHoDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "BtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "DNcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TUWMTxzeES_T8-svE5R5CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TUWMTxzeES_T8-svE5R5CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "C9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lJAXkKqZmAGFZNufVun9jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lJAXkKqZmAGFZNufVun9jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "ueEW7YYByh-A-BiyIRAu"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "PdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5RtcWDMSyG5oMUK9N5k8yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5RtcWDMSyG5oMUK9N5k8yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "k-EW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7oGs945PXyHA3K9GcsRw1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7oGs945PXyHA3K9GcsRw1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1dcW7YYBBkbVtX3nRZBy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JWmxFWMO8LHVPPV9p1GcnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JWmxFWMO8LHVPPV9p1GcnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "d9cW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RTGr7Nm-Ia9juXQJ0VJo4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aGYW7YYBO2e_P_QbROQw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vcIsDLwygnNOUzkldgQe7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vcIsDLwygnNOUzkldgQe7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yOEW7YYByh-A-BiyQitl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dtcW7YYBBkbVtX3nQo-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["746hwfph0Dw2g_3bePUkEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["746hwfph0Dw2g_3bePUkEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hmYW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D3VUcyuPxGSWdwpH9VSPOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D3VUcyuPxGSWdwpH9VSPOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuEW7YYByh-A-BiyRTUo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mqr5kDewzIwNjBe2t0vTXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mqr5kDewzIwNjBe2t0vTXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1tcW7YYBBkbVtX3nRZBy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPqtJ9Ffu3wDNg6koFPX5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPqtJ9Ffu3wDNg6koFPX5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Q-EW7YYByh-A-BiyQSqw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["osSW2qt9a8zRx0nR8PECjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["osSW2qt9a8zRx0nR8PECjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "hGYW7YYBO2e_P_QbP91J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6Keqe1sXyk36jAJ3WN1sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f6Keqe1sXyk36jAJ3WN1sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "hWYW7YYBO2e_P_QbP91J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7riNXLCE7Lya9tYdhWvxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "Z2YW7YYBO2e_P_QbROQw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYFx-SR9JjDh3LNKYdmEBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bYFx-SR9JjDh3LNKYdmEBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "y2YW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "X-EW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I9TiskxOBE6uewdlBEfbaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "YeEW7YYByh-A-BiyQi3_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "MuEW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PR0G3Br-iqix1uCUZkKS_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PR0G3Br-iqix1uCUZkKS_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "T2YW7YYBO2e_P_QbUe1z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IePXD1TmrKr2VUEUp0lyYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IePXD1TmrKr2VUEUp0lyYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CWYW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kcejzSJCXOEAAMTuFifhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9kcejzSJCXOEAAMTuFifhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7mYW7YYBO2e_P_QbVPdI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oAhRUpu5Nxvud8PhxnY97g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oAhRUpu5Nxvud8PhxnY97g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NOEW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vyzbd-n47muGD1CcY51iSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vyzbd-n47muGD1CcY51iSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KdcW7YYBBkbVtX3nUJll"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7biARfQSIKGkOMBE8K3ifw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7biARfQSIKGkOMBE8K3ifw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jOEW7YYByh-A-BiyUT4z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["00uTEq02DOt2grmBxWEFtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["00uTEq02DOt2grmBxWEFtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aGYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Et5sNZhAoszUicKSkeO_ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bdcW7YYBBkbVtX3nU53R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A4PiDpik1xNqn-sMYyun1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A4PiDpik1xNqn-sMYyun1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "atcW7YYBBkbVtX3nT5d5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BeEW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sd-ZaAvLHLrrMbq7MjTuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sd-ZaAvLHLrrMbq7MjTuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "K2YW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kuJBVypeLq1V0jSA-wxI4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kuJBVypeLq1V0jSA-wxI4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "C9cW7YYBBkbVtX3nU5wV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FpeKkethPGO1uv-qrij4uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FpeKkethPGO1uv-qrij4uQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "_mYW7YYBO2e_P_QbU_RV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OYGXc31yJI5bR-H2iNSwHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "b9cW7YYBBkbVtX3nUpqO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6bno3KY4YPf5Yv8-TeyIMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6bno3KY4YPf5Yv8-TeyIMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-all", "_id": "RmYW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AGYW7YYBO2e_P_QbU_VV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["92cNuiuQKW3x7lS40O9Vmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["92cNuiuQKW3x7lS40O9Vmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b9cW7YYBBkbVtX3nU53R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3n8w8bc5rIZeq-nJR67uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3n8w8bc5rIZeq-nJR67uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gGYW7YYBO2e_P_QbU_aU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KIwcLrlxoEZYnIYFs7xDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KIwcLrlxoEZYnIYFs7xDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "YGYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nnMQdtf0-TCma7GTQu1BbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nnMQdtf0-TCma7GTQu1BbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "aWYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E4d9ZgpjdjB2MMbdIa-vAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E4d9ZgpjdjB2MMbdIa-vAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "juEW7YYByh-A-BiyUT4z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "utcW7YYBBkbVtX3nVJ4L"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sj1IWeYK2LXaE0gPl1F28Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sj1IWeYK2LXaE0gPl1F28Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "JuEW7YYByh-A-Biybk1R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rlf-Kh1cYYNXH3i3_B9teA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rlf-Kh1cYYNXH3i3_B9teA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nYKLY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "htcW7YYBBkbVtX3nYaQt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wfCTZ14vNLwvsq17Hq3glw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wfCTZ14vNLwvsq17Hq3glw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BuEW7YYByh-A-BiyZEso"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YFcmZLo-GvC7WdK5tCotfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qOEW7YYByh-A-BiybUuC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a4F_DzJWoeWMlYJL40d_JA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a4F_DzJWoeWMlYJL40d_JA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w-EW7YYByh-A-Biyclr3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kfr7TPEfSe6g4pC6WtyOxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kfr7TPEfSe6g4pC6WtyOxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "AmcW7YYBO2e_P_QbcRL4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["INv4Z_GTWxG4wGfSHZU1vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["INv4Z_GTWxG4wGfSHZU1vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jNcW7YYBBkbVtX3nf735"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtJZCZ940TmjMXNEWgVXDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qtJZCZ940TmjMXNEWgVXDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FOEW7YYByh-A-Biyclc2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GOEW7YYByh-A-Biyf2a2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xaL3njYZVA5XbbnR4zdhGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xaL3njYZVA5XbbnR4zdhGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "DtcW7YYBBkbVtX3ncrd2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NEr5ZXND311_OYMu-NMslw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NEr5ZXND311_OYMu-NMslw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7eEW7YYByh-A-BiyfVwi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fIYzG8NwYtgLi_ZHHyU4xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fIYzG8NwYtgLi_ZHHyU4xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "E-EW7YYByh-A-Biyf2M6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_QbkSZ4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MbW3yiCJFvhva0WqbvTBag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MbW3yiCJFvhva0WqbvTBag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "I9cW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PeEW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n9MMvRTyGAAOhcwC8K3gwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n9MMvRTyGAAOhcwC8K3gwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X-EW7YYByh-A-Biyj3ZQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P4UuSsDKCXWF3oh3R7oZEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P4UuSsDKCXWF3oh3R7oZEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-BiykHvM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2i-Edq18smF6rac2fCPmsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2i-Edq18smF6rac2fCPmsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "oGcW7YYBO2e_P_QbkSZ4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0NRB9624MZLIKmkHE-1rew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0NRB9624MZLIKmkHE-1rew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bGcW7YYBO2e_P_QbkSjL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECFdcptasOGGQlul_TP0kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECFdcptasOGGQlul_TP0kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "umcW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PRmsP6A6H0WlT5JRWzu5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5PRmsP6A6H0WlT5JRWzu5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P-EW7YYByh-A-BiyjnPr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ztcW7YYBBkbVtX3nkscq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAORKE733KRegC2qyifuEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAORKE733KRegC2qyifuEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "umcW7YYBO2e_P_QbkymJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkrlPnVIce6tMBVHgicCGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkrlPnVIce6tMBVHgicCGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "suEW7YYByh-A-BiyjXFu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OwYjh2SJYfmFVJG36Cn3Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OwYjh2SJYfmFVJG36Cn3Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "Y2cW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBtaj0c5fzDAqxomou5uMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "551319322047447"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBtaj0c5fzDAqxomou5uMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "551319322047447"} {"create": {"_index": "profiling-events-all", "_id": "JdcW7YYBBkbVtX3njsRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KEKnZX1SRSUSzJoangOL-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KEKnZX1SRSUSzJoangOL-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ZGcW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iXZcf6LHfVLaFOybaknpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "u2cW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AxSTJksslsjaD4JN8OKPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AxSTJksslsjaD4JN8OKPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "F-EW7YYByh-A-Biyj3ir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcg4yzcU6w_vTsKTk-8RpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcg4yzcU6w_vTsKTk-8RpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "_uEW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "E9cW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBKNI3Uum2tvcePLaUHnIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BBKNI3Uum2tvcePLaUHnIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "mWcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0VAqWGznmKP6FXK4zqZ7QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0VAqWGznmKP6FXK4zqZ7QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "T2cW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDs7NfSLItAy9yFZzNUo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDs7NfSLItAy9yFZzNUo4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8tcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kuEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXO05qRm-L5_dLDd84meuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WXO05qRm-L5_dLDd84meuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "luEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ofbkGVhqHskFPiKv2X28g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ofbkGVhqHskFPiKv2X28g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "oWcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KfBhnJmEvuvAwkRvUGBJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KfBhnJmEvuvAwkRvUGBJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4-EW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3DRS0zpqMRRIvCRvx_gnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3DRS0zpqMRRIvCRvx_gnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5GcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "x2cW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tvv0GKho3Y3Jvs5JVJ4HCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tvv0GKho3Y3Jvs5JVJ4HCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "k2cW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_ZJuN4Q3XfLWBtpXFkmHgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_ZJuN4Q3XfLWBtpXFkmHgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EWcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-W1It0TVP9HlUzppA_nUmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-W1It0TVP9HlUzppA_nUmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EmcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "IdcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["10lGPWMVE-wMY3Dd5VnXkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["10lGPWMVE-wMY3Dd5VnXkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "I9cW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7aWCPaXdIyFkeOjGCsGbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f7aWCPaXdIyFkeOjGCsGbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "kNcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIjdoSZWUGoqrMkmoKBGPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MIjdoSZWUGoqrMkmoKBGPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5mcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IQdfawGZrkhBWNm1MuU4ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IQdfawGZrkhBWNm1MuU4ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "PtcW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ewqZUIOmU9Ti-nJquCY7dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ewqZUIOmU9Ti-nJquCY7dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "xWcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NEZCSjz-TkZF0o0U1xZQKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NEZCSjz-TkZF0o0U1xZQKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "oeEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uBbKBM9HPWXmF7lgBbqn7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uBbKBM9HPWXmF7lgBbqn7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ouEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFlLbHihvaUX7uvWAN_dUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFlLbHihvaUX7uvWAN_dUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "o-EW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "lmcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7jhdqicGJ85l6MMpJ5h4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7jhdqicGJ85l6MMpJ5h4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "H9cW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHZvNVXXuZ4FaC6U3PxZfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kHZvNVXXuZ4FaC6U3PxZfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "zNcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "w2cW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EkvDjA94Zr1iIohgty7mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-EkvDjA94Zr1iIohgty7mQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9dcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83bjAjxHCy932bC6uK3sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83bjAjxHCy932bC6uK3sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "aOEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mHT6jAWpCslZAdClcFLweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mHT6jAWpCslZAdClcFLweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ROEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHZe7xzP_hYpSdyN0kQ8tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHZe7xzP_hYpSdyN0kQ8tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "aeEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMBO6mK2eUEy_2zoVmK7iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMBO6mK2eUEy_2zoVmK7iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "ymcW7YYBO2e_P_QbvkoZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4SkGmkKhl-y6jJi976f71g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4SkGmkKhl-y6jJi976f71g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "D2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oxzBhk8Wo4MNtv46Cf01yQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oxzBhk8Wo4MNtv46Cf01yQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AeEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dn6DDmlkkMhcrqy-oKH_Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dn6DDmlkkMhcrqy-oKH_Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sOEW7YYByh-A-BiyvZ85"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MlZ2duzbecHR9Swq4KrIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3MlZ2duzbecHR9Swq4KrIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["alVDVSUDsOePavwUi2Uc4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["alVDVSUDsOePavwUi2Uc4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "-OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "_eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Cu6oYF8CgThrL_OjB6KKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4Cu6oYF8CgThrL_OjB6KKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "o9cW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jcBkdPt8EyvUbg8R86Rk3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jcBkdPt8EyvUbg8R86Rk3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "G-EW7YYByh-A-Biyv6XQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I6emm7QMCp3MTtFFeDRa6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["I6emm7QMCp3MTtFFeDRa6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "XuEW7YYByh-A-BiywKYJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "8-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5-br3efshNyjcSWox2NvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S5-br3efshNyjcSWox2NvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AuEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Hmjwbizys6J1V2OuvGqAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Hmjwbizys6J1V2OuvGqAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "GuEW7YYByh-A-Biyv6XQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ERZHMw9hepZtP1YDjwtr1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ERZHMw9hepZtP1YDjwtr1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "N9cW7YYBBkbVtX3nveeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MP07z4BgOJ1bvy0UuehdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-all", "_id": "c2cW7YYBO2e_P_Qb0FnB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3GQlu4cDmBP0J7ys3CIDFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-BiyzrTg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M4rbTRbrX0yQkCxBeFA9NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M4rbTRbrX0yQkCxBeFA9NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jGJYBKwxppFBRbCx_fEt5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jGJYBKwxppFBRbCx_fEt5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mdcW7YYBBkbVtX3ny_BB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pr_aC7V9ziezcWkTX9r7wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pr_aC7V9ziezcWkTX9r7wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xuEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7ofbCHl8qRy2q41G8_s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7ofbCHl8qRy2q41G8_s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EOEW7YYByh-A-Biy0Llz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tEf9Ie5yokrYlSGE7DLxmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tEf9Ie5yokrYlSGE7DLxmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F-EW7YYByh-A-BiyzbAL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AoxNz9Y_PEGGL6UFqTd8NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AoxNz9Y_PEGGL6UFqTd8NA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "IeEW7YYByh-A-Biyz7ao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YDo1NT9KzNVeSq1G9W3WWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YDo1NT9KzNVeSq1G9W3WWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "d9cW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NFliTc5RbA2S_WmSY2-5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4NFliTc5RbA2S_WmSY2-5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "eNcW7YYBBkbVtX3ny_KF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UugzqeTQ92pW0pcPdsUFNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UugzqeTQ92pW0pcPdsUFNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "v-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwmBGtDgORQiem0fqXxYUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TwmBGtDgORQiem0fqXxYUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "o2cW7YYBO2e_P_Qb0Fc4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VGkfGlLCT3CZxXjvshlG7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VGkfGlLCT3CZxXjvshlG7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "x-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9PHIiDKAKQbdjZhfXOPI4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9PHIiDKAKQbdjZhfXOPI4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "mOEW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hy11GM4V5rJ1R_KKBReCYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hy11GM4V5rJ1R_KKBReCYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "J2cW7YYBO2e_P_Qbzlaj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c6o4JEm_SHCSlbGrmocvXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "tuEW7YYByh-A-BiyzrTg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["66C1_zZgLoWX2sy4ZYxW1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "513527008281347"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["66C1_zZgLoWX2sy4ZYxW1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "513527008281347"} {"create": {"_index": "profiling-events-all", "_id": "bWcW7YYBO2e_P_Qb3mI-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t9HIF4XCgjQvhopK4zB1OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t9HIF4XCgjQvhopK4zB1OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "oOEW7YYByh-A-Biy38Nt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYb17oP8aNL5n3jF96PoUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYb17oP8aNL5n3jF96PoUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LmcW7YYBO2e_P_Qb3mTL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7LpnWklabUetOIUe4VKNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7LpnWklabUetOIUe4VKNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "tuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DR99mqPw14HhCOTiH_yCjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DR99mqPw14HhCOTiH_yCjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dl4T3akeu1eU8F-sCfOUww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dl4T3akeu1eU8F-sCfOUww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-ueWdcoRW3U3Wl2s7q1wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-ueWdcoRW3U3Wl2s7q1wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gtgW7YYBBkbVtX3n-haV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q1W8n5Cn-ifIaAP9BQF_Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q1W8n5Cn-ifIaAP9BQF_Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "g9gW7YYBBkbVtX3n-haV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UBsDigUiCriOBIKnOe9n2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UBsDigUiCriOBIKnOe9n2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3OEW7YYByh-A-Biy-tTN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w-GsWvuRbgtEQFjz7G6cAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w-GsWvuRbgtEQFjz7G6cAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wmcW7YYBO2e_P_Qb_4GC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["haUW2KmBYJrtqWFKN3ox5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["haUW2KmBYJrtqWFKN3ox5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8tgW7YYBBkbVtX3n-hQh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "02cW7YYBO2e_P_Qb_38l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfuqRLZYclnGs_5tl5SKFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mfuqRLZYclnGs_5tl5SKFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aYIIEFIIPBZMufRatARTng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aYIIEFIIPBZMufRatARTng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "R2cW7YYBO2e_P_Qb-nVZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqEaDpKRyJAOpyXtzl9UkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "f-EW7YYByh-A-Biy-9iI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKq1so1oRdQrNuV0NoX8eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKq1so1oRdQrNuV0NoX8eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "zOEW7YYByh-A-Biy_N3T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Jy_fLEQmYV8Uv4CPynhtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Jy_fLEQmYV8Uv4CPynhtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "G2cW7YYBO2e_P_Qb_n7b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8O4Oo3VCILgT6pGMxLQiaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8O4Oo3VCILgT6pGMxLQiaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "u-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iL4-l2lLaZN3l2HTgJnKig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iL4-l2lLaZN3l2HTgJnKig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "1GcW7YYBO2e_P_Qb_38l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "AeEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acpHxpMx1lbCfcQ7t4BGwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acpHxpMx1lbCfcQ7t4BGwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pOEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N2sJHNv2xDtI8Fug5gaP7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N2sJHNv2xDtI8Fug5gaP7w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "M2cX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jP--MF88HszSEEHJkdZMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jP--MF88HszSEEHJkdZMeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gmcX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xs7bKuwpf1rgdNVeL5Z1tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xs7bKuwpf1rgdNVeL5Z1tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MmcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O456hrPREziYCrquwnUdNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O456hrPREziYCrquwnUdNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "SuEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ffqI7X0j8c4Op_Y9dHk8Vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ffqI7X0j8c4Op_Y9dHk8Vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "AdgX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7bAi2ETLik8HmJW4q-mO5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7bAi2ETLik8HmJW4q-mO5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "A9gX7YYBBkbVtX3nCyUt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ra9c-heZALvJmUxSmzUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ra9c-heZALvJmUxSmzUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "iWcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UUY2L_ithWPFsPGJM4Kw3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "MWcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["udcCD1ZwYlzlR2BrHqM6qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["udcCD1ZwYlzlR2BrHqM6qQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4GcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NiLAkn8PMf6fUuAyKn54rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NiLAkn8PMf6fUuAyKn54rw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "FmcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OqL1jazxhGNp3BmuN0BL6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5mcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q1_7VQVZ9B_m5nqjto1Vhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q1_7VQVZ9B_m5nqjto1Vhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "52cX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YAxRX4VggixxxzGwx37hxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YAxRX4VggixxxzGwx37hxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "NGcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVutYQOiJQEOoaSuVpBJXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVutYQOiJQEOoaSuVpBJXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "p-EX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "vNgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zii4wg2T59k_VWZoCJQUDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zii4wg2T59k_VWZoCJQUDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "4mcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KwiR_SttfPlB9Vl4LoTdOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KwiR_SttfPlB9Vl4LoTdOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5GcX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "JmcX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_isMSxwsOfQpJC0IwuP96g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_isMSxwsOfQpJC0IwuP96g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "A-EX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["88SBwyQrj_3EBC_tr5p_Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["88SBwyQrj_3EBC_tr5p_Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "E2cX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7Vtiv4jrMy8dqqN7pIRDXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7Vtiv4jrMy8dqqN7pIRDXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "cuEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kbEUN-QOQOIjM5mfj2ILfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kbEUN-QOQOIjM5mfj2ILfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "XuEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rm376MXTBGWCRQJ58nODcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rm376MXTBGWCRQJ58nODcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "FWcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "jGcX7YYBO2e_P_QbDpI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8j8JNdpbtu6ZzDCgLiiQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8j8JNdpbtu6ZzDCgLiiQag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "v-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7Y6G7QHAuKl9wgxs-phIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U7Y6G7QHAuKl9wgxs-phIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eNgX7YYBBkbVtX3nKTOX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrFuJie5559qDcG8I2bFVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrFuJie5559qDcG8I2bFVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PeEX7YYByh-A-BiyHvlf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JZACgiJEVY_n0sywfrDQWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JZACgiJEVY_n0sywfrDQWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hNgX7YYBBkbVtX3nGiz5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7EgL5MlvlPFHn8CzMa-nAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7EgL5MlvlPFHn8CzMa-nAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "duEX7YYByh-A-BiyKv0g"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ja9MBlCW9JbhLw8tshjLeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vOEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Bpc8eToJHZimyCogMpwGRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "WuEX7YYByh-A-BiyHPRK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jygufO1z6CmSlXFVDFIyOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jygufO1z6CmSlXFVDFIyOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "vuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UN3BthZs3VjmxILWgSyPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UN3BthZs3VjmxILWgSyPNw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "_dgX7YYBBkbVtX3nGy2K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "wuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t7wSwGaTC42K8TqyqrWQ8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t7wSwGaTC42K8TqyqrWQ8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "QeIX7YYByh-A-BiyOQRi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7eV1ClIoEc0MOWrL7aYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7eV1ClIoEc0MOWrL7aYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HmcX7YYBO2e_P_QbPMHK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5wAfaxsqFHmGRlT9DISZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5wAfaxsqFHmGRlT9DISZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UWcX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jgUXsxTIbIDkQmcG83gUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jgUXsxTIbIDkQmcG83gUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "YdgX7YYBBkbVtX3nO0KT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsE2Ss7VQy9Y1xUvJ14HPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsE2Ss7VQy9Y1xUvJ14HPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "zNgX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gd9Zti7g9VaXgPNM2AMUpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gd9Zti7g9VaXgPNM2AMUpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "IOIX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVeP7XzJjOmZ2Pz05AHQcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVeP7XzJjOmZ2Pz05AHQcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "H2cX7YYBO2e_P_QbPMHK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GhO-Q7jxmabu9xQq_grssg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GhO-Q7jxmabu9xQq_grssg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "iGcX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37H1sSWP9fHHtDykTwvxJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37H1sSWP9fHHtDykTwvxJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t2cX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zdgX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKi5VuydurxKNxIla0x28A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EKi5VuydurxKNxIla0x28A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "GtgX7YYBBkbVtX3nOTzV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNENHeLd1blNIM02vY64Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNENHeLd1blNIM02vY64Gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "L9gX7YYBBkbVtX3nOz8i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nK-VQLHeSCyigrjH5wLGZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nK-VQLHeSCyigrjH5wLGZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "AmcX7YYBO2e_P_QbObof"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["plpBd6vKoF_CiIU1pw2x5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["plpBd6vKoF_CiIU1pw2x5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "luIX7YYByh-A-BiySRIf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQljazbrYNKb17CR1zcj2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X-IX7YYByh-A-BiyShVm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cia-tEvT-RYth24Bv6xiew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Cia-tEvT-RYth24Bv6xiew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9mcX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSb0Ydm_vV2aKQF-Jm54LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSb0Ydm_vV2aKQF-Jm54LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6mcX7YYBO2e_P_QbSMNE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MvjeD28P3dNyT_MVzGvfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8MvjeD28P3dNyT_MVzGvfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "idgX7YYBBkbVtX3nSErh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQY_WRO1qymUg5IQJijndw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQY_WRO1qymUg5IQJijndw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "udgX7YYBBkbVtX3nSkv7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BD6RKw99uF2og061lVltVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BD6RKw99uF2og061lVltVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dWcX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["btPiCrGC5QuwreUh6KDqzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["btPiCrGC5QuwreUh6KDqzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-WcX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nobPGa726Uz_QIRAEzxZhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nobPGa726Uz_QIRAEzxZhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FmcX7YYBO2e_P_QbTdAJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "J9gX7YYBBkbVtX3nTU6_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["We4ZzWo4Sdy3cRIrD2Ba6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["We4ZzWo4Sdy3cRIrD2Ba6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YOIX7YYByh-A-BiySxi3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HkfH8phILjoSDOJDy-1TVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HkfH8phILjoSDOJDy-1TVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "62cX7YYBO2e_P_QbSMNE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JtgX7YYBBkbVtX3nTU6_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "tmcX7YYBO2e_P_QbXN28"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lFR0pO4Wu14TGU5YNpr5mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lFR0pO4Wu14TGU5YNpr5mA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UmcX7YYBO2e_P_QbWtrI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypK8YAnhyIQbCIxguF3ZYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypK8YAnhyIQbCIxguF3ZYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kuIX7YYByh-A-BiyXSZb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jOIX7YYByh-A-BiyWR5r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DnsHbkP7LCj2ghN7B7D9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6DnsHbkP7LCj2ghN7B7D9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "n2cX7YYBO2e_P_QbXt8U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqlDalQnR0z4CfFMV3Mv9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "huIX7YYByh-A-BiyXSiy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "j-IX7YYByh-A-BiyZymA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nG3ZbKid0T9JiPA-g3DZAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nG3ZbKid0T9JiPA-g3DZAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "nWcX7YYBO2e_P_QbaOMC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m8UxqcMGCNBvKBluS5X8zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m8UxqcMGCNBvKBluS5X8zA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3nXVoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z-xVIHcDRK95_cuEpNrf-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "4tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xXZDG1IWCIku2BjFkk_Ekw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xXZDG1IWCIku2BjFkk_Ekw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AtiTcD0o7LzpBiQNMhP0Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AtiTcD0o7LzpBiQNMhP0Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d0uyKUSw4GUejkSAuddDbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d0uyKUSw4GUejkSAuddDbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "79gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynw1R90P5jqjjO7FNW192w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3nenF5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O7pMotA2VuO21v-RSvDOAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O7pMotA2VuO21v-RSvDOAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-NgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJns5ogzEJmEGiD1xX0ydA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EJns5ogzEJmEGiD1xX0ydA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4eIX7YYByh-A-BiyfDtb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4J0058RPoWpK37V_WzN4IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4J0058RPoWpK37V_WzN4IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} {"create": {"_index": "profiling-events-all", "_id": "kdgX7YYBBkbVtX3ne3fS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKZ1FR707KOqJJQD503DPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKZ1FR707KOqJJQD503DPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Y2cX7YYBO2e_P_QbefBx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R7BFs04CJH6GNBGB3gnfow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R7BFs04CJH6GNBGB3gnfow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "8tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W3Xg5UYDFZ6S6yXmGwJPvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W3Xg5UYDFZ6S6yXmGwJPvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8CftQWwP45Az974XyC6KVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8CftQWwP45Az974XyC6KVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MeIX7YYByh-A-Biyikgc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9mRMBlsO9IKvKzWL8LqfoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9mRMBlsO9IKvKzWL8LqfoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tGgX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3T5Y-Jcmq5ISgDLlSLnByg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3T5Y-Jcmq5ISgDLlSLnByg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ecEckjK5VzUg46drS_Qbqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ecEckjK5VzUg46drS_Qbqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LeIX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CVtNM3kFgea788jNz-19vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CVtNM3kFgea788jNz-19vQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "UWcX7YYBO2e_P_QbiP47"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tSCnGC8MSIDk_S0oLclfKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tSCnGC8MSIDk_S0oLclfKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "3mcX7YYBO2e_P_Qbif8Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wO6E0aI_adazJwV1nEPvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wO6E0aI_adazJwV1nEPvow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "6tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OQKwd7_zKSX8IYHdhu4OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "702806677431836"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_OQKwd7_zKSX8IYHdhu4OA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "702806677431836"} {"create": {"_index": "profiling-events-all", "_id": "YGcX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVutYQOiJQEOoaSuVpBJXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HVutYQOiJQEOoaSuVpBJXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "UmcX7YYBO2e_P_QbiP47"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ubMKKKyUhNm18UW6QrHRVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ubMKKKyUhNm18UW6QrHRVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MOIX7YYByh-A-Biyikgc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3XmH7C16CjfWPwwqHrVw7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3XmH7C16CjfWPwwqHrVw7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "seIX7YYByh-A-BiyikmM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MRPIiqkdVFL_ATcyw44gkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MRPIiqkdVFL_ATcyw44gkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VdgX7YYBBkbVtX3nin7J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0fqU4EglvDX7hh3PMNsxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0fqU4EglvDX7hh3PMNsxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "QtgX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlcjX8Vw9YA9B7H2WMfzTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlcjX8Vw9YA9B7H2WMfzTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YgLJzuU9kxRA_szpHYnDhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YgLJzuU9kxRA_szpHYnDhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWQpEA25V7CPZz_CbRPwlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWQpEA25V7CPZz_CbRPwlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9GZUSBL9TB0CdE5vyfEsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q9GZUSBL9TB0CdE5vyfEsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "79gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0R9Tk_AwuvgNuleyrD0E-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0R9Tk_AwuvgNuleyrD0E-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "49gX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1OSkSfHh0FyowliERICfKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1OSkSfHh0FyowliERICfKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7GgX7YYBO2e_P_QbjANs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BJCmF0rYAGSsMmkTDz_IDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BJCmF0rYAGSsMmkTDz_IDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "z9gX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFiegCzfTyYQuNCyI5Zg9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFiegCzfTyYQuNCyI5Zg9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "QNgX7YYBBkbVtX3ni4AA"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "4tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fkFINeCBMiTJSpNxRsOdew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fkFINeCBMiTJSpNxRsOdew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "E-IX7YYByh-A-BiyjE0n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZSiw25_awwy7RlclMxL6hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZSiw25_awwy7RlclMxL6hA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ztgX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAKC2o2NYggEGwOb_Ja6EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "162746825496619"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAKC2o2NYggEGwOb_Ja6EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "162746825496619"} {"create": {"_index": "profiling-events-all", "_id": "7mgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7-4SLKLQoS7j3p5TwUwKzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8WgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HeIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EXarUgAL9HIosZihvCe9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tNgX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ONg1QQM5k43WL1XUwy52Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ONg1QQM5k43WL1XUwy52Hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "peIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ8fRP549U0JQTjsBAy_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nZ8fRP549U0JQTjsBAy_jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZ0CyfLsOPhGDflPO5HbqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZ0CyfLsOPhGDflPO5HbqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "571288167487052"} {"create": {"_index": "profiling-events-all", "_id": "reIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v5SF2iml9eZuaSs1mX-aSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v5SF2iml9eZuaSs1mX-aSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xGgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EszYJlG3uJtSxM3Y3d7bAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EszYJlG3uJtSxM3Y3d7bAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBcAPztwjs-VUIEIDjbDtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qBcAPztwjs-VUIEIDjbDtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xWgX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_xmAQQzI2PQtnY3j6S3cOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_xmAQQzI2PQtnY3j6S3cOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nGgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BJWhTnZbfJWxo1Rlx1U4ZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BJWhTnZbfJWxo1Rlx1U4ZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tNgX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JR8_DdEIpI8T7Ny-5nFoag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JR8_DdEIpI8T7Ny-5nFoag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yuIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cOIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yjN3QcXIO7ZJpjPqQPEBbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tNgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QDgIPJ6K1Rf5OSw95yEFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QDgIPJ6K1Rf5OSw95yEFHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "XWgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Ea6eul6ZytqY8xapNMsbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Ea6eul6ZytqY8xapNMsbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "m2gX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZbycaXCeyBUz4EBiDGWbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LZbycaXCeyBUz4EBiDGWbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "yeIX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-PQaLTLtULIOEGxMYfLJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s-PQaLTLtULIOEGxMYfLJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "e2gX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "HuIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcHMtbSJVvIGBxeKT7TjXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcHMtbSJVvIGBxeKT7TjXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "YOIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nmIx6kUsvWkiJwjLxLculQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nmIx6kUsvWkiJwjLxLculQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "cOIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbZWbU0S5kd22SAXz7exPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "sNgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fhWOfzRaLRg1Sw58iH7CwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fhWOfzRaLRg1Sw58iH7CwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "beIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "J2gX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WgfE3EpDBODOIydfExij_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "g9gX7YYBBkbVtX3nt6R3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["94o6mawNwOW6nwyr1PAIHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["94o6mawNwOW6nwyr1PAIHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TNgX7YYBBkbVtX3nuKdo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3z_uYJyhnmGT6PJSN17I-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3z_uYJyhnmGT6PJSN17I-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "G-IX7YYByh-A-Biyum09"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GD_7fNw_aMjvomJCJdhcmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GD_7fNw_aMjvomJCJdhcmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3nuao5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3nt6W3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhlnk07FVj7HY3V21x3-gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhlnk07FVj7HY3V21x3-gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7tgX7YYBBkbVtX3nt6I3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "uNgX7YYBBkbVtX3nuKip"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_VzxKSgG_e2BNdUl-pfPBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3nuao5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "q2gX7YYBO2e_P_QbxzPs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BOn5YfVXLbYJVzgO0D8UNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "89gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m2ytJBFkfHdhX1fCXv-xiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m2ytJBFkfHdhX1fCXv-xiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8i6BiToPKTJjFIRVyGCmXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8i6BiToPKTJjFIRVyGCmXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "O2gX7YYBO2e_P_QbyTjm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6gUB2Vi4QgxQPdYRzsxAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6gUB2Vi4QgxQPdYRzsxAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zeIX7YYByh-A-BiyyHV8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vthGd_F8mbZA2w12Nf4aww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vthGd_F8mbZA2w12Nf4aww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_9gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y1JTMrOxhzScpzOLDM9hCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y1JTMrOxhzScpzOLDM9hCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-9gX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PNk5D3ntxPXuIHkBkun6-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PNk5D3ntxPXuIHkBkun6-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ANgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ET7o_hXX2lHnkNRaSpVTBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ET7o_hXX2lHnkNRaSpVTBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jMkr2A9XqdtOl_G9IEsnSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jMkr2A9XqdtOl_G9IEsnSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DdgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bGgX7YYBO2e_P_Qbxi-y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6aVRP1XZGxW_TNZpAozgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6aVRP1XZGxW_TNZpAozgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-all", "_id": "B9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QD2PazKHor-pbdbD3PDPLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QD2PazKHor-pbdbD3PDPLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "CNgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZAomE2KxhcS4gmu1C8JgWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZAomE2KxhcS4gmu1C8JgWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "VtgX7YYBBkbVtX3n5c3Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-G7AAW8oqT97cLlLLBEEKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-G7AAW8oqT97cLlLLBEEKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "NOIX7YYByh-A-Biy6Ivf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9lObyrii2tZY3D8d0ZEhiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9lObyrii2tZY3D8d0ZEhiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "M-IX7YYByh-A-Biy6Ivf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeZUkY-05pj9hvZA8tv9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeZUkY-05pj9hvZA8tv9Zg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "leIX7YYByh-A-Biy6o0H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DV6JRqrUjDUvu9f2B4lulg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DV6JRqrUjDUvu9f2B4lulg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_OIX7YYByh-A-Biy5IDD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQY3N3qZRu8haCsdxq571g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GQY3N3qZRu8haCsdxq571g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y2gX7YYBO2e_P_Qb5lIe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2qSXnyvIGQkSNpP5wPgdA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} {"create": {"_index": "profiling-events-all", "_id": "LdgX7YYBBkbVtX3n6NFW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "79gX7YYBBkbVtX3n6NKY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jrwbv8YUisyxPyCibkR_Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jrwbv8YUisyxPyCibkR_Xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "CmgX7YYBO2e_P_Qb6Vgq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x1lBt1LJeSjGFaVggB_aRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x1lBt1LJeSjGFaVggB_aRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "GmgX7YYBO2e_P_Qb51U6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QNP7PZqJy6OGXmZc1fiP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QNP7PZqJy6OGXmZc1fiP_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-Biy5YKL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtbiDhEltHmoi7DhhlF0WQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtbiDhEltHmoi7DhhlF0WQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "s2gX7YYBO2e_P_Qb51bB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MM2CztTXvV5i9K2i-2RGNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "EtgX7YYBBkbVtX3n589_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xpc2h22mHPdvmOlcypPfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8xpc2h22mHPdvmOlcypPfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "KtgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UXyZCc79Dkgss9nEK0VutQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UXyZCc79Dkgss9nEK0VutQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2mgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g5T7QK05XvJ6l-R8ldhwpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g5T7QK05XvJ6l-R8ldhwpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "9uIX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pBOutl9bHW2BqNx2HBhaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pBOutl9bHW2BqNx2HBhaPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RuIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_7eGxy7JatY66SnXVDAow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_7eGxy7JatY66SnXVDAow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PtgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aVn8RcB-QxhkQWDJX_CUMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t9gX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ocpdZMlRpRzCexEbOVmPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ocpdZMlRpRzCexEbOVmPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ReIX7YYByh-A-Biy9ZTm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e-T0iWff_O-Pyy2T4tpPxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e-T0iWff_O-Pyy2T4tpPxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "cuIX7YYByh-A-Biy95dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Y2gX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UxGwXndIKBYsvQXlfr8jlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UxGwXndIKBYsvQXlfr8jlA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "QdgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "pWgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MdgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2qcLJwksgGzDh4MhNtDMFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2qcLJwksgGzDh4MhNtDMFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "J9gX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s1HOikX7RhbcXlSxKwqqDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s1HOikX7RhbcXlSxKwqqDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-j0lF4sF4jza_a1DeuTz0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-j0lF4sF4jza_a1DeuTz0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YmgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jlpJ01FQ_CCdjG0s8LBgOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jlpJ01FQ_CCdjG0s8LBgOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9-IX7YYByh-A-Biy95jl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mXxveDvgmyZUQk8txqhkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mXxveDvgmyZUQk8txqhkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AP5Eq7B7RisKC973OjTPaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "a2gX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ffFMdQwpHORekV2ieknMEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ffFMdQwpHORekV2ieknMEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r2afFjMCaKrL1sh73z1hIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r2afFjMCaKrL1sh73z1hIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ttgX7YYBBkbVtX3n9dtq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pp5lsGmp-JSx0DYM6KPKrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "5tgX7YYBBkbVtX3n-eZU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TohoLCipAaXWyBdT-2T3rQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TohoLCipAaXWyBdT-2T3rQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "hGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V9tSD5BQ3ATDkE3Dz2odow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V9tSD5BQ3ATDkE3Dz2odow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w-IY7YYByh-A-BiyE6dj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eGgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WSjAZWkrBfhyqCpr7c2wpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WSjAZWkrBfhyqCpr7c2wpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4eIY7YYByh-A-BiyFKxe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuPwjyefoJQ1lu-T5igwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuPwjyefoJQ1lu-T5igwEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "e2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Orgm72EfMt-zO2dZAN4-xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Orgm72EfMt-zO2dZAN4-xQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "O9gY7YYBBkbVtX3nGPqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bDEpUjfMy73JDN93aU2Y1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bDEpUjfMy73JDN93aU2Y1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3mgY7YYBO2e_P_QbFnT2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_9qdqX3M61Erctug7dsAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_9qdqX3M61Erctug7dsAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "fWgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "juIY7YYByh-A-BiyJLod"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3Tz5fQYZgLM16jx54ZxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3Tz5fQYZgLM16jx54ZxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2eIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PeUu-CO8oH7bDpiXW5er7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PeUu-CO8oH7bDpiXW5er7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "weIY7YYByh-A-BiyJL2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAORKE733KRegC2qyifuEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAORKE733KRegC2qyifuEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuIY7YYByh-A-BiyJcFE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "1dgY7YYBBkbVtX3nI__a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jo8tWR_pkEX_X8H988Y6bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jo8tWR_pkEX_X8H988Y6bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "wuIY7YYByh-A-BiyJL2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kNJuZj4X_lXclYreYCLjug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kNJuZj4X_lXclYreYCLjug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "a2gY7YYBO2e_P_QbJn6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "t9gY7YYBBkbVtX3nI_yO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "KdkY7YYBBkbVtX3nJwQY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtXvff3EKZwAqNYCPh_G8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtXvff3EKZwAqNYCPh_G8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "KtkY7YYBBkbVtX3nJwQY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ai5oW8uVA4tEGajwsXvwJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ai5oW8uVA4tEGajwsXvwJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "OOIY7YYByh-A-BiyKMx-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tni8OBdz6TpUMf5YmlBpkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tni8OBdz6TpUMf5YmlBpkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "1NkY7YYBBkbVtX3nOAq2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GwKVzdGAgri-K--qj0BBVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GwKVzdGAgri-K--qj0BBVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "omgY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G8rfpCwclnmPxDW_rTu3XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G8rfpCwclnmPxDW_rTu3XA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pGgY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zb66k8tNN3fufwrfwPNRpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zb66k8tNN3fufwrfwPNRpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XGgY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3wubxICfJSY8FNVzGkEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3wubxICfJSY8FNVzGkEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "W9kY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnaxKNXR9iQyPdmTTWbz9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnaxKNXR9iQyPdmTTWbz9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "f2gY7YYBO2e_P_QbN5Gs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "R2gY7YYBO2e_P_QbOJVz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wY3n6ZuFWe08ye_NO9bMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wY3n6ZuFWe08ye_NO9bMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_QbNYgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fQiJSfBrHoS3h5i-nuWFRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fQiJSfBrHoS3h5i-nuWFRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-GgY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bo6NdGV8GXHmalbT9Hz3Eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XWgY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EkobH195Wur44OeENgdTnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EkobH195Wur44OeENgdTnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "fmgY7YYBO2e_P_QbN5Gs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t_MhSbU2giVaKBznPcc-Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t_MhSbU2giVaKBznPcc-Nw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "ddkY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x8C8r_joS9eFrngYSfAD9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x8C8r_joS9eFrngYSfAD9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "u9kY7YYBBkbVtX3nVh_a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mfKeyebNB7GEjVrotPPKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8mfKeyebNB7GEjVrotPPKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vuIY7YYByh-A-BiyU-6O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IcP7NfEq0GawQQCHmZWcRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gWgY7YYBO2e_P_QbVqw4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21VADknXj310Vq9ESNjcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21VADknXj310Vq9ESNjcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3OIY7YYByh-A-BiyUejm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1-IY7YYByh-A-BiyUuo6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3N5lLpTOYxG1gCT2yPAYAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3N5lLpTOYxG1gCT2yPAYAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nVyNb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uuIY7YYByh-A-BiyV_WZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PtkY7YYBBkbVtX3nUhWB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KTolfZraJkKDWNdjvBwe_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KTolfZraJkKDWNdjvBwe_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "ueIY7YYByh-A-BiyV_WZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bredr3OvHQiC2uo7mFYNAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "fuIY7YYByh-A-BiyVPIV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6TvPSjgriSXKOKa1IM7e3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6TvPSjgriSXKOKa1IM7e3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0GgY7YYBO2e_P_QbVKit"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iDXH9KGzXeYmvEE7qpFOKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "641828620625480"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iDXH9KGzXeYmvEE7qpFOKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "641828620625480"} {"create": {"_index": "profiling-events-all", "_id": "oWgY7YYBO2e_P_QbY7hd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QY705UJL2QEaImwzck5kDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QY705UJL2QEaImwzck5kDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2WgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vv8H2tPfs7d9zjnnJhB0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vv8H2tPfs7d9zjnnJhB0rA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F9kY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Tt9tabVrOQsSQg8A1kRaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Tt9tabVrOQsSQg8A1kRaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L2gY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fYmJVY6gIzPkbudFgeXtGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fYmJVY6gIzPkbudFgeXtGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E-IY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qj4-KfGxeYDC4jIbY_qMxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qj4-KfGxeYDC4jIbY_qMxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2WgY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBMBNfpl26clo2_eg37Few"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PBMBNfpl26clo2_eg37Few"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LNkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EtkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IbZEnp9wozgTuaJYdK6lSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IbZEnp9wozgTuaJYdK6lSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "FdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrCc1ySWaMhrJB1f8olPDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrCc1ySWaMhrJB1f8olPDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ytkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fNOV0V-zSZCXeYqmr986ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "3GgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WTK3WD91wf76sAd6PBxIoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WTK3WD91wf76sAd6PBxIoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6OIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4YpFJ3r3BxuJCj_h-nNzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4YpFJ3r3BxuJCj_h-nNzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6eIY7YYByh-A-BiyZPvI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Spa1oEv_GaWrLXNIiVxEEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Spa1oEv_GaWrLXNIiVxEEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "02gY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lB1Y7h-GI8V7NnJH4cEyWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lB1Y7h-GI8V7NnJH4cEyWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "1mgY7YYBO2e_P_QbcsmS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vHlfPkBgdyUjCnS7-7m_jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vHlfPkBgdyUjCnS7-7m_jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "D9kY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyaOwrYy-y6_MqiyYC7KDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyaOwrYy-y6_MqiyYC7KDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "EeIY7YYByh-A-BiyZf0D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XOEcWEB-1gR5VA6Y_JnK8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XOEcWEB-1gR5VA6Y_JnK8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "3WgY7YYBO2e_P_QbcsdE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_dTR833ucc6p1Tdsdvx5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_dTR833ucc6p1Tdsdvx5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "MGgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "BGgY7YYBO2e_P_QbgtPz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "S-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "WeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bNNll9gtsumikBQkeP5zYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bNNll9gtsumikBQkeP5zYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0dkY7YYBBkbVtX3ngkWp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AyDqByyWIoIiVixwsKuo2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AyDqByyWIoIiVixwsKuo2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "veMY7YYByh-A-Biygwur"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K_CAUyuD7NBkhK5Ltc_feQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K_CAUyuD7NBkhK5Ltc_feQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "W-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yU87pg-Ch2E9K6GDZMg_og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "0OMY7YYByh-A-BiyhA5n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9T2neRyvBAjupi4KvqMEkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9T2neRyvBAjupi4KvqMEkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "HdkY7YYBBkbVtX3ngkRm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dDG6jf6GCHoU_y56rXJY_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dDG6jf6GCHoU_y56rXJY_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "Y-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uoJuSy3Naz5PMjayntwpXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uoJuSy3Naz5PMjayntwpXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "eOMY7YYByh-A-BiylBpj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YlwuTI9pMmyVbwg2FaXibA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YlwuTI9pMmyVbwg2FaXibA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3NkY7YYBBkbVtX3nkU_F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L3YM-JzWQGZBl6Hww0qX5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L3YM-JzWQGZBl6Hww0qX5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "eeMY7YYByh-A-BiylBpj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yXWhC6PUKwhiRKybc8XJKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yXWhC6PUKwhiRKybc8XJKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "CmgY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcQSqbXhDJcv-dVT41RQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcQSqbXhDJcv-dVT41RQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xGgY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_eMY7YYByh-A-BiykRT_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "G9kY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7bsINl9DvTXKKGeGoWTVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7bsINl9DvTXKKGeGoWTVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nlFSh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bTwDM-MjmPXB3OC1RQFixw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bTwDM-MjmPXB3OC1RQFixw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lGgY7YYBO2e_P_QbkeIU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2uW4N0T57kNGJTVG5_1zTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ymgY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HsiX5vdQunBNkC7dzQqFjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HsiX5vdQunBNkC7dzQqFjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "A9kY7YYBBkbVtX3nklHO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwjluL3-fAPsYBuygjQN9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SwjluL3-fAPsYBuygjQN9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "veMY7YYByh-A-Biykxdq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ju1Y8z3O5D2e-y3UCauHLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ju1Y8z3O5D2e-y3UCauHLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "FOMY7YYByh-A-Biykxnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xekeer0c5o0XNQ05adBIWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xekeer0c5o0XNQ05adBIWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "CmgY7YYBO2e_P_QbkOHY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jqtNscAcTM6hZXRdTqaMBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jqtNscAcTM6hZXRdTqaMBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "imgY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJHpr4fLpWoSKqg-aUPBfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "82gY7YYBO2e_P_Qble4x"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fL44zZ44BPFnGW549J-v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fL44zZ44BPFnGW549J-v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "BNkY7YYBBkbVtX3nklHO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A-XVDxnDwU8uNV8SIPsqYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A-XVDxnDwU8uNV8SIPsqYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "l-MY7YYByh-A-BiysCjE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hfDMNuzdjFAGAQxLAUumIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hfDMNuzdjFAGAQxLAUumIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nOMY7YYByh-A-Biysi1P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oxe_oPi543aZz0lTOU2m-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Oxe_oPi543aZz0lTOU2m-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xOMY7YYByh-A-BiysSvY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SSybZ3-qjl-24IZIjWrutg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SSybZ3-qjl-24IZIjWrutg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xeMY7YYByh-A-BiysSvY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HylmGygzkKByc907Hb1zHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t9kY7YYBBkbVtX3nsnET"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C7vQBGljPqDLZ1glBrcWiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C7vQBGljPqDLZ1glBrcWiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wtkY7YYBBkbVtX3ns3bd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29_6ZAb70CIp_EG0wp7_NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29_6ZAb70CIp_EG0wp7_NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4WgY7YYBO2e_P_QbpfyH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ow1D1C0phScv22K7VxLC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ow1D1C0phScv22K7VxLC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4GgY7YYBO2e_P_QbpfyH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4u9WOOyrWYLdgsjOh9aCUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "T9kY7YYBBkbVtX3npWjG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["djLrau8jrfBziaCPclZ3HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["djLrau8jrfBziaCPclZ3HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "w9kY7YYBBkbVtX3ns3bd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WimOxYeSVVOX0wF3HCZkxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WimOxYeSVVOX0wF3HCZkxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "t9kY7YYBBkbVtX3npWUb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["It0gQVHszUoDuF9_NGkXWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["It0gQVHszUoDuF9_NGkXWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "aWgY7YYBO2e_P_Qbr_2i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3hucOiuiT_BuF65onWDmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3hucOiuiT_BuF65onWDmkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "BNkY7YYBBkbVtX3nsGt1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ccuRE7rvGbylFOE2-Vdm-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "f2kY7YYBO2e_P_QbsgDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nK-VQLHeSCyigrjH5wLGZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nK-VQLHeSCyigrjH5wLGZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "iNkY7YYBBkbVtX3nsnOa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fR8gXe-G1OoCrBfWymUTjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fR8gXe-G1OoCrBfWymUTjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "hGkY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A88fFaIU_zwiD_q-n14PHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A88fFaIU_zwiD_q-n14PHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "tdkY7YYBBkbVtX3npWUb"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IsqdVnLNhl2x75Zl1gQDqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "amgY7YYBO2e_P_Qbr_2i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6KBzvcDthx6uaZz_Stfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E6KBzvcDthx6uaZz_Stfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "HNkY7YYBBkbVtX3nsW5T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JtkY7YYBBkbVtX3ns3Wc"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "oOMY7YYByh-A-BiyvzV7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BeOljMY7zmWSgDKbEbSZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4BeOljMY7zmWSgDKbEbSZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xGkY7YYBO2e_P_QbxBjA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GG472XEEVdeqeiwioTPVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GG472XEEVdeqeiwioTPVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OdkY7YYBBkbVtX3nwoGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Xxk_y7umqFVq79tKmttkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6Xxk_y7umqFVq79tKmttkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bNkY7YYBBkbVtX3nwH2y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKJhqpG2dRoKsO5mlCpMbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKJhqpG2dRoKsO5mlCpMbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "hmkY7YYBO2e_P_QbxBZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-_1XfHbZNvE_DNOZ6TgYMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-_1XfHbZNvE_DNOZ6TgYMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "H-MY7YYByh-A-BiyxDwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMABXmd9W1xztmohmhT4jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EMABXmd9W1xztmohmhT4jw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "bdkY7YYBBkbVtX3nwH2y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9o9XxmdKp5kr_ASSIejj0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9o9XxmdKp5kr_ASSIejj0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "H2kY7YYBO2e_P_QbwQ-_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6s327-MJ8tXADNCpUFJLTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6s327-MJ8tXADNCpUFJLTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "72kY7YYBO2e_P_QbwhLW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w2cA5pFSzeyVJ9Di06ODVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w2cA5pFSzeyVJ9Di06ODVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "-9kY7YYBBkbVtX3nw4SF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6OMY7YYByh-A-Biy1EpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RtkY7YYBBkbVtX3n3pnE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A2kY7YYBO2e_P_Qb4CpI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oNARuCgevgyxtAjFL2xZeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "U2kY7YYBO2e_P_Qb1CiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "fNkY7YYBBkbVtX3n1JXT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HAu5rAU21OgIaT7rvuQn1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HAu5rAU21OgIaT7rvuQn1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6eMY7YYByh-A-Biy1EpB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "V9kY7YYBBkbVtX3n4ZwS"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "b2kY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FOMY7YYByh-A-Biy713T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xefg2tu-dTR7fu4bq6TlVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xefg2tu-dTR7fu4bq6TlVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UdkY7YYBBkbVtX3n8Kve"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKoD-DH2DuktCqfanvYyAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SKoD-DH2DuktCqfanvYyAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BWkY7YYBO2e_P_Qb7zcM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U9D_YJUEsrwBEswWxHC35w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U9D_YJUEsrwBEswWxHC35w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0NkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ztkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SzEyh5UKxIErIGMjrb6UXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SzEyh5UKxIErIGMjrb6UXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "L-MY7YYByh-A-Biy8V8f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mXTwlU3Af7Gcl1McbGUk9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mXTwlU3Af7Gcl1McbGUk9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Z-MY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5-D1ZwWartfLwFKR52-CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5-D1ZwWartfLwFKR52-CA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "aOMY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t-flxrF7p2MCZlWnBJdilQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t-flxrF7p2MCZlWnBJdilQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "fdkY7YYBBkbVtX3n8ay8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lo6X16n0sxmFnHCmqvzqeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lo6X16n0sxmFnHCmqvzqeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "oGkY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "q-MY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SVxJAjIDjZrrbvA9qjRyTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SVxJAjIDjZrrbvA9qjRyTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "vWkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLRa2nw0cHalfHkTovbapg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MLRa2nw0cHalfHkTovbapg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ltkY7YYBBkbVtX3n861d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mi0B0tB9mjIesaGe45FXYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mi0B0tB9mjIesaGe45FXYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "quMY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQv8Jjxrz6pIHbJnxDZTDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQv8Jjxrz6pIHbJnxDZTDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "bWkY7YYBO2e_P_Qb7jUi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E1Ij_aNOjEdQHLl7MQgu9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "8GkZ7YYBO2e_P_QbAkYL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9yOjEX9YsHot-nonRkNzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9yOjEX9YsHot-nonRkNzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NuMY7YYByh-A-Biy_mUb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xe1hJxuA7dGkCnSYKpXyog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xe1hJxuA7dGkCnSYKpXyog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aOMZ7YYByh-A-BiyAGoT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XGi0gq3X0lbtkz60bv_FjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XGi0gq3X0lbtkz60bv_FjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "uOMY7YYByh-A-Biy_mZe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l6meUfZ5uC9_p8a-MC7XWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l6meUfZ5uC9_p8a-MC7XWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "190932526140742"} {"create": {"_index": "profiling-events-all", "_id": "sWkZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7kg8w388m41akTi9Kihyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7kg8w388m41akTi9Kihyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZOMZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dqkoz37L8v8ZGKH2dg08IA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dqkoz37L8v8ZGKH2dg08IA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PuMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yCJBwrMAMfpAui_lf-8LYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yCJBwrMAMfpAui_lf-8LYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P-MZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6bVVoHSSJLF6qLyyJlYew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6bVVoHSSJLF6qLyyJlYew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sGkZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5kK1-2HMVYa08NL2RAHTaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5kK1-2HMVYa08NL2RAHTaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0uMZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kjbzs3pi_uYSkjO5yzNzAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kjbzs3pi_uYSkjO5yzNzAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SGkZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jmaxos_Fbss7GX1ulltAuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jmaxos_Fbss7GX1ulltAuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "xeMZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2W434choOPZkVODgIFHPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G2W434choOPZkVODgIFHPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "AWkZ7YYBO2e_P_QbHVUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMWox14mMY2b1SuNGxsCtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iMWox14mMY2b1SuNGxsCtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "SOMZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TCI-U8WcxrkkRuvWag0ygQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pGkZ7YYBO2e_P_QbIV77"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SdkZ7YYBBkbVtX3nHs4s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RQSqI_DYo_fU-yUjLfiPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RQSqI_DYo_fU-yUjLfiPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "QOMZ7YYByh-A-BiyHoJs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjSnJkMJp-ScD3GTE7GQCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UjSnJkMJp-ScD3GTE7GQCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "cGkZ7YYBO2e_P_QbImDZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pf3D6JGFbbrRUgOJ18HuJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pf3D6JGFbbrRUgOJ18HuJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "SWkZ7YYBO2e_P_QbHVji"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xuMZ7YYByh-A-BiyH4VG"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "f2kZ7YYBO2e_P_QbLGOi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XWIVrcPaz7dnfTJVzRuiVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XWIVrcPaz7dnfTJVzRuiVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OGkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GkfSwJU4VtNnyHQkcXbLQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GkfSwJU4VtNnyHQkcXbLQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B9kZ7YYBBkbVtX3nMNxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uog7BBtBaBoHv7gkfaKdng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uog7BBtBaBoHv7gkfaKdng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TdkZ7YYBBkbVtX3nLtnW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["U-SQw_Ej849fFrBkcLqfHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "i2kZ7YYBO2e_P_QbL2kZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cRfPb25MGbKffPO7zvRoZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cRfPb25MGbKffPO7zvRoZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "g9kZ7YYBBkbVtX3nL9qN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dECtgLMdnRfSCldLDKs55Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dECtgLMdnRfSCldLDKs55Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "O9kZ7YYBBkbVtX3nMd2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["76S40x9sTPqO8zAoNyL8dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["76S40x9sTPqO8zAoNyL8dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "-GkZ7YYBO2e_P_QbLGTb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xGUU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ScSKYoSOs8nhVq0muD3gAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ScSKYoSOs8nhVq0muD3gAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ntYU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtJhJ3zPw--x6TQzyvUSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TtJhJ3zPw--x6TQzyvUSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4WUU7YYBO2e_P_QbwKIN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e9NUfgKKbs-MiLMXsDbEjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e9NUfgKKbs-MiLMXsDbEjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Dd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OMaWFUMaKo-t8HBZbSb7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OMaWFUMaKo-t8HBZbSb7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Et8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iBwxinLolVoovC6Eh145Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iBwxinLolVoovC6Eh145Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "n9YU7YYBBkbVtX3nvwQZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Jd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sN_SI69IRP_CTM4xM4ZnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sN_SI69IRP_CTM4xM4ZnyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0M5HPUARuaG-cOZx59FHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0M5HPUARuaG-cOZx59FHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FmUU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u26YAXespQsbQjR7YsAYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u26YAXespQsbQjR7YsAYzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "298U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CryaWZekzG3MnYg7CufHdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CryaWZekzG3MnYg7CufHdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Kd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "K98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9pmIhrtRRi4GPUMxg8HjSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9pmIhrtRRi4GPUMxg8HjSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "N98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sEaRb-2yXJZGrLeypPMviA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sEaRb-2yXJZGrLeypPMviA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "lGUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLT0UoH40niOjk-XVme7dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dLT0UoH40niOjk-XVme7dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "fN8U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJNVQg8pccfKm6nYhuiPHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJNVQg8pccfKm6nYhuiPHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "At8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LbIdVoxeM1glCVhs3QD2Rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LbIdVoxeM1glCVhs3QD2Rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZMsyLjDeZJ1X8UROk68yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZMsyLjDeZJ1X8UROk68yw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjWTEl1JczrCDNWdjCq0IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjWTEl1JczrCDNWdjCq0IQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19eOj7rW2BMrJQCjgPGRMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19eOj7rW2BMrJQCjgPGRMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NdYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4DUvBkuKPYx1hCGNzwitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F4DUvBkuKPYx1hCGNzwitQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyR0VPenXOOdQcTb8oa6LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyR0VPenXOOdQcTb8oa6LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "C98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdoI0rjd901gurnJCTWJVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdoI0rjd901gurnJCTWJVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "k2UU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tUySHOH0tYebEIwqtbzkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tUySHOH0tYebEIwqtbzkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "M9YU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wWjEk4V-ocnXQQZfOB5PAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t76-b4gm5U3oB29oJeJYQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t76-b4gm5U3oB29oJeJYQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "xWUU7YYBO2e_P_QbvJmg"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vUd7LUOlEzT1w32bH1zYbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "698U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pg9BpRl7fhNFrbhldfBoVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pg9BpRl7fhNFrbhldfBoVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "998U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3sCEoFWbinM5GJ3BUzAdHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3sCEoFWbinM5GJ3BUzAdHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Ad8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJqYLUumz9zXvS_kxlOwXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hJqYLUumz9zXvS_kxlOwXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "FN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FXSDb1LRkJ6lyn8itNo02Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FXSDb1LRkJ6lyn8itNo02Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Fd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gni4FNEytoNXn1VB81DlJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gni4FNEytoNXn1VB81DlJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "F98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uX6Z-_eBVfWUQHo7dxxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uX6Z-_eBVfWUQHo7dxxgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BnraydbvEwL6mkTBVZOVLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Mt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QdOz4wxFUC8pDwHEAxZcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QdOz4wxFUC8pDwHEAxZcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SRve3dTLPRl1qAhVYZQKgw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "W9YU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dVb-MiyMMGjQnN4CNy5W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dVb-MiyMMGjQnN4CNy5W_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "RNYU7YYBBkbVtX3nuwHT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DLW1J3k1lahctYuhwA129g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "398U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gl4D81F4_LquzSzjpshT5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gl4D81F4_LquzSzjpshT5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "Cd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83sxCaQdi1aUMB4CY2c2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K83sxCaQdi1aUMB4CY2c2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "H98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyhq7VnU7oy4urORTsa4ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyhq7VnU7oy4urORTsa4ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "Lt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YVVpCpnnAN7nqi22_B110A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YVVpCpnnAN7nqi22_B110A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "XNYU7YYBBkbVtX3nyQUE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nOTOWE8V9a_XoRYtELkH0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nOTOWE8V9a_XoRYtELkH0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "C2UU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-r8cbHNOP2N9259mbYQNyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-r8cbHNOP2N9259mbYQNyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "Ed8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28flplgbX9OoTxrrq9LhNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28flplgbX9OoTxrrq9LhNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "Z2UU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1IpEdYyyzMGVkI9Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ccyeq1IpEdYyyzMGVkI9Ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Z98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRYK-waaBK93YQxC-u6FpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YRYK-waaBK93YQxC-u6FpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Dncz0Y_So0i0vXWTX7iycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ft8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Y6gZg8K9awv8z0hisYsKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Y6gZg8K9awv8z0hisYsKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7jgrYi9xWKJVjQJiteksdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7jgrYi9xWKJVjQJiteksdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9oafXxRRgws5bQkcIU2Q0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9oafXxRRgws5bQkcIU2Q0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "z98U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wh31IgccB0bo8SH5BOevTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wh31IgccB0bo8SH5BOevTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XNYU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "zN8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "amUU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["33M_jV1gmHGxTPvzVsOhJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["33M_jV1gmHGxTPvzVsOhJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "6mUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gRdGxn1bfMhp02lCqIS5Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gRdGxn1bfMhp02lCqIS5Kw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "W98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A41aW57rPqkbdBRy4L9pwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A41aW57rPqkbdBRy4L9pwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Xd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mk9zCNEY-hYZnvZiO93Kbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mk9zCNEY-hYZnvZiO93Kbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ZN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypQufrPd-vWE7YGaekcTfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ypQufrPd-vWE7YGaekcTfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "fd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sd-ZaAvLHLrrMbq7MjTuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sd-ZaAvLHLrrMbq7MjTuQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "pd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "8NYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xPHwmFt4fvCxveu9JS8ZxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xPHwmFt4fvCxveu9JS8ZxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "8dYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["C8RiWN9GOAWu10jfv-Iilw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "hWUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "hmUU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbcOgGVzXu_Kl1MHENboNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "K98U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4KYdSxEIpyB6jl1rRIzYcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4KYdSxEIpyB6jl1rRIzYcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "u2UU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9zCLbc3pKhchwVlW_zTLBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9zCLbc3pKhchwVlW_zTLBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "eN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFZWod3ShZzIho6L40kyaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eFZWod3ShZzIho6L40kyaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "UN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jdzvLx5l7JUNfi9LmdMqdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jdzvLx5l7JUNfi9LmdMqdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "xdYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0_0t2poX7i0kjQvasvtSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0_0t2poX7i0kjQvasvtSEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vtYU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tk-Rn8r6-wqzqI-bfiAJ7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "W9YU7YYBBkbVtX3n2hx_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LcLD9Ru4GLxHGOxhmBbPug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LcLD9Ru4GLxHGOxhmBbPug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7mUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IEh2TcuBJ50L6QBQgKo1LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IEh2TcuBJ50L6QBQgKo1LA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "id8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m77yCqhJC-TV7tjIyUjLSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m77yCqhJC-TV7tjIyUjLSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nixBByAIlNzP6S-DgkxohA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nixBByAIlNzP6S-DgkxohA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SdkBKb56HsioGRxWHq-7TA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SdkBKb56HsioGRxWHq-7TA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w2UU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FbKeTovw8ZZ-HdSWJ6n-2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FbKeTovw8ZZ-HdSWJ6n-2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vdYU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NyRf8XlP9WjHePtKdUVEyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NyRf8XlP9WjHePtKdUVEyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "INYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfJoEeFsWI41bsMAEfnR5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfJoEeFsWI41bsMAEfnR5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wN8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AzjRpwmenH1G04gO5z-8Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AzjRpwmenH1G04gO5z-8Hw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xt8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0WZjWPo0ZsPZ-DIkV3gJrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0WZjWPo0ZsPZ-DIkV3gJrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dWUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgzswmC99T0GXpCWQr9U_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bgzswmC99T0GXpCWQr9U_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "T98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["it1M7ufrxHsYyi2peFanww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "it8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0aQ-GR8dzIcLY-JHg_Ltg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0aQ-GR8dzIcLY-JHg_Ltg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "n98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acgoKBxSl7O4j7VOkIDurg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["acgoKBxSl7O4j7VOkIDurg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "kN8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RV64TmaQgxBDavQQ3RlpBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RV64TmaQgxBDavQQ3RlpBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "vNYU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tl8-uLg-sk_bVEVT-WQP4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tl8-uLg-sk_bVEVT-WQP4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "aGUU7YYBO2e_P_Qb27nE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ImaxZCdsAx2D2FVy0fxyGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ImaxZCdsAx2D2FVy0fxyGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "eWUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1XV7unux6YV2hG1GouNtCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1XV7unux6YV2hG1GouNtCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Ut8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EO1X9bMgoknGN8tYEcbt6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EO1X9bMgoknGN8tYEcbt6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1d8U7YYByh-A-Biy2eKG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3jLco5iklv9rjHlmxCtzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g3jLco5iklv9rjHlmxCtzQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "u9YU7YYBBkbVtX3n2BY6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AREehA9nDZJasQeEH6svQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AREehA9nDZJasQeEH6svQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "JNYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v1g3luunQaTy0sgJ7RCzFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v1g3luunQaTy0sgJ7RCzFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WtYU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlH3AeYcsXnih5MNDHAYTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlH3AeYcsXnih5MNDHAYTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "d2UU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "7WUU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xAB5rWSdYiNfzgIdJBEyIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xAB5rWSdYiNfzgIdJBEyIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "at8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvLeDZxzbcRlBxqtjei7Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kvLeDZxzbcRlBxqtjei7Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ld8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFu0TnwDMO-fagKeZiwsbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFu0TnwDMO-fagKeZiwsbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "zt8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3Wm5BKcHbAbJgVLxR44SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O3Wm5BKcHbAbJgVLxR44SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "qN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XifASgxXQbagp8rNDbQOHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XifASgxXQbagp8rNDbQOHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "907195111575642"} {"create": {"_index": "profiling-events-all", "_id": "jd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "1N8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "umUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruch9eRlQqOnJ3ZVNLKC2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "kd8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-D2Xan0xr7Iyy5r8CY20RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-D2Xan0xr7Iyy5r8CY20RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "8NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "utYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zYVMGADUhvH0MNK-_5jLUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zYVMGADUhvH0MNK-_5jLUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "k9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ne60Rh_KLhugEPI_VMwIQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ne60Rh_KLhugEPI_VMwIQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kFwQt40kRkAJhq_qjy2boQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kFwQt40kRkAJhq_qjy2boQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "htYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UnZlpcKdTEmf9Jf7wgc4Wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UnZlpcKdTEmf9Jf7wgc4Wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "sdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wYQMafKDTOM5M3m09YsCqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wYQMafKDTOM5M3m09YsCqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "u9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FMEbu46FVTF9FY-0Ogn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FMEbu46FVTF9FY-0Ogn2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "x9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjNVMj90Vubz91AMpodGGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rjNVMj90Vubz91AMpodGGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "z9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_m8wOPYHgqUseziTFic-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_m8wOPYHgqUseziTFic-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "3tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xkw543uTXeeuNcRX3BWzOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xkw543uTXeeuNcRX3BWzOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "4NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [3], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [3], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "49YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VnpinE4u8LaMWLZMBdXuZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "5dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JYl32o-03G4ABrH8cW9MlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "9NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wOaaLLn26MWCq1Ch7gi66A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "1dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jliDtdpQ5AYvFVIEkH2R2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jliDtdpQ5AYvFVIEkH2R2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "qdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OHN-NCR9tXyaSbIcRGyJXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OHN-NCR9tXyaSbIcRGyJXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "ctYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UbnTibb7iUG5Z59b5ewlIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjHl88ojwoksS7PDXJBaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBjHl88ojwoksS7PDXJBaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xe7_zbD7BhFg8NiRYVvMrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xe7_zbD7BhFg8NiRYVvMrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TBeuzjOZRDdI9h9tZfZZsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TBeuzjOZRDdI9h9tZfZZsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sLM1wIlvdF1g5AqGWS2w3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sLM1wIlvdF1g5AqGWS2w3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BdYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyFXzJO3EyfOUXZc5VIG_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cyFXzJO3EyfOUXZc5VIG_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-9YU7YYBBkbVtX3n-UTI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3YiY7TtFv0EXQiZMyJynqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ptYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hCoRxPXk-6CzoYUlUSWOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hCoRxPXk-6CzoYUlUSWOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlT_4DHKrs5Ys4kSTL31fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MlT_4DHKrs5Ys4kSTL31fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rlbPtxuicfhcv7QXNW6CDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rlbPtxuicfhcv7QXNW6CDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHUuby7f7Ki-mhiDAG_3SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHUuby7f7Ki-mhiDAG_3SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L9YU7YYBBkbVtX3n9jmK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-oVh-FVYE_OigiSXRD1tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-oVh-FVYE_OigiSXRD1tA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "btYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-f-8xMNzAVnOWhCPzAg7Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-f-8xMNzAVnOWhCPzAg7Cg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "6dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRGWrc208dGoT33fGEbwGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRGWrc208dGoT33fGEbwGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "hNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAMqWYZA5nX1ba5rg42kvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CAMqWYZA5nX1ba5rg42kvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "m9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XAkh0cI6mI0TEjgeMQjJRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "rdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkV0kGs2CSg2biD88r4Y4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkV0kGs2CSg2biD88r4Y4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "stYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NobRtV28TztWPphel-_oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NobRtV28TztWPphel-_oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "tdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mY-rd4h7J7uWaPfvMpVGGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mY-rd4h7J7uWaPfvMpVGGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "udYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP1YbEn43FveSGHDAeyzEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP1YbEn43FveSGHDAeyzEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "xNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QZMmKE4g5NoBX6HRV7SWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5QZMmKE4g5NoBX6HRV7SWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "99YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lKZJwz7nYfsG1OMpqNS4TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lKZJwz7nYfsG1OMpqNS4TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "-9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzPHOZ2KMa2AZ8PFjN6JMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzPHOZ2KMa2AZ8PFjN6JMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "CNYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynjt3bgLGnY61oQESibEHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynjt3bgLGnY61oQESibEHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "I98U7YYByh-A-Biy7P0G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ycc5WIDSFgbOYKJJPEnKPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ycc5WIDSFgbOYKJJPEnKPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7dYU7YYBBkbVtX3n7jVX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yzwq46KsVTwibTlrmeJDug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yzwq46KsVTwibTlrmeJDug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LWUU7YYBO2e_P_Qb79AO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xgQ5fvtkK4YCunRGORxAiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xgQ5fvtkK4YCunRGORxAiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ydYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2BrtK-7vEpxtyRvA-Da53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2BrtK-7vEpxtyRvA-Da53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "EGUV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hMnXoL28a6WRFVFuXnlcrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hMnXoL28a6WRFVFuXnlcrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DNYV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jw0LVPxt2I2Zcn1jBHHTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3jw0LVPxt2I2Zcn1jBHHTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "deAV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rW61i2rZH66wSQyYlV4AKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rW61i2rZH66wSQyYlV4AKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jOAV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3unjN-Nom23dUWou6f5fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l3unjN-Nom23dUWou6f5fA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "59YV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zKpNTqz8S7smmzjSBvFLmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zKpNTqz8S7smmzjSBvFLmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jeAV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_v5AZnkwJNNAFHCBYTKsLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_v5AZnkwJNNAFHCBYTKsLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "juAV7YYByh-A-BiyCRYi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B-XLpCbHVWJllSfmbTHDIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B-XLpCbHVWJllSfmbTHDIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "D9YV7YYBBkbVtX3nB1HM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["--ixTzVal287MaHIkMjGPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["--ixTzVal287MaHIkMjGPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LtYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gtt2kNKLBYrjW8ZF3asaVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gtt2kNKLBYrjW8ZF3asaVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JOAV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wc2YJ7FTpO6RxJmi8R3V5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wc2YJ7FTpO6RxJmi8R3V5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RmUV7YYBO2e_P_QbDOFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6b-IQfEVBkMZQup2Hh2og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6b-IQfEVBkMZQup2Hh2og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mOAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mSsTbj23GsDgy2L_ys-j9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mSsTbj23GsDgy2L_ys-j9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZeAV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFCYP0M0hh6g3AUrorpNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XFCYP0M0hh6g3AUrorpNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "eOAV7YYByh-A-BiyCBIn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NLuoJVh7KKlp7vUyDXbc5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NLuoJVh7KKlp7vUyDXbc5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "g9YV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kv93tElXuO9W5qREarSlDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kv93tElXuO9W5qREarSlDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "wuAV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XEVDehOwFGRzuyg-wdytUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XEVDehOwFGRzuyg-wdytUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "QNYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RakQwb6TZGrlrD1xg1MS9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RakQwb6TZGrlrD1xg1MS9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "Z-AV7YYByh-A-BiyCBR8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KcOiTTTgvYGRMXlpLOi98w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "7eAV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xuAV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86mdF-KM7NXo0RUNJiei_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86mdF-KM7NXo0RUNJiei_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ddYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SQYzaRy22h79zcc3oYHt2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SQYzaRy22h79zcc3oYHt2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ZmUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eIiWRPbXZKuww0eQLj2S1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eIiWRPbXZKuww0eQLj2S1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "x-AV7YYByh-A-BiyGSzz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BjjctUOzAXO89YV2nk2Q4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BjjctUOzAXO89YV2nk2Q4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ymUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Icjoo1-DazyjO-tC_2ln0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Icjoo1-DazyjO-tC_2ln0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "AmUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ntU9lIOS2on6fT6gjqaLpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ntU9lIOS2on6fT6gjqaLpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "CGUV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9KEwJQyYCkGUHgQfZ4zuUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9KEwJQyYCkGUHgQfZ4zuUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "cdYV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1_2jb7w-6SaVosGj92Tp3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1_2jb7w-6SaVosGj92Tp3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "xdYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKeJv4UECTJRoO7tbd8ieA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKeJv4UECTJRoO7tbd8ieA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "49YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EqC6GrxSGBqn7Se_QkfBvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EqC6GrxSGBqn7Se_QkfBvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xWUV7YYBO2e_P_QbLPlx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MZ2ns561NqM1CIUtwsXKqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MZ2ns561NqM1CIUtwsXKqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf9wGp5TNFiImJfF3zrljg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf9wGp5TNFiImJfF3zrljg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "xtYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n1K87iiownRMy9p9EhnxaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n1K87iiownRMy9p9EhnxaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "2dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["is-GrshzXGfvyrs7C84YDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["is-GrshzXGfvyrs7C84YDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "2tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cGm2F3NETfQrvkp4OdpTFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cGm2F3NETfQrvkp4OdpTFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "3NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD87Iq0SHAPj8Fv9uEQOUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hD87Iq0SHAPj8Fv9uEQOUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "IOAV7YYByh-A-BiyLELp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BpKdezWYGYGHxKuRbIhA6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BpKdezWYGYGHxKuRbIhA6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "T9YV7YYBBkbVtX3nKoD0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W_4xBcIc_f_s9tU-JNOc3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W_4xBcIc_f_s9tU-JNOc3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "4tYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["to88lQuatgOtWyhP8T7OMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["to88lQuatgOtWyhP8T7OMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "zdYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P3ialIWlnxijlxjtEz_ZOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P3ialIWlnxijlxjtEz_ZOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "ztYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GlIWXDdurIjEanwPccKsgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GlIWXDdurIjEanwPccKsgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "MWUV7YYBO2e_P_QbOP8d"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yI2e6HYAfhTSJaxYuulCOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yI2e6HYAfhTSJaxYuulCOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "jWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nO9wgb1CAloL4EZkWArlWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nO9wgb1CAloL4EZkWArlWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lUwPl7LdcSnsIUgnw1ojfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lUwPl7LdcSnsIUgnw1ojfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1dYV7YYBBkbVtX3nS6Gk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Eh1qER1qLyoMW0w6ZkEkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "oWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8J86z5adi7zJtjuGctS5Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8J86z5adi7zJtjuGctS5Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "fWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHXfHm0BU3ZDtLvmt4EIRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHXfHm0BU3ZDtLvmt4EIRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "g2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t6ufu4-IpYRs7bFVfd4NLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t6ufu4-IpYRs7bFVfd4NLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-WmMHqB8hxsW-_Rm9LtnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-WmMHqB8hxsW-_Rm9LtnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "amYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QqagX4SxhMaRMlzq_9N22A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QqagX4SxhMaRMlzq_9N22A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "a2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pDo331a23FHFPXYKG9i3EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pDo331a23FHFPXYKG9i3EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "bGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["It7LZ_q9NvTlZJoCJvT4UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["It7LZ_q9NvTlZJoCJvT4UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "emYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vt8oTjSVhChgy2VdDHcdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3vt8oTjSVhChgy2VdDHcdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "nWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NIcwjcTUxYrOZlE8A754rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "S9YV7YYBBkbVtX3nR5Yn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rt3hWtoW0qQnxFuClIgRWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Rt3hWtoW0qQnxFuClIgRWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "RtYV7YYBBkbVtX3nR5mR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a1Wk2s-gPeQ3RACuvlpgIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a1Wk2s-gPeQ3RACuvlpgIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "dtYV7YYBBkbVtX3nS587"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FAfemJcT6DP2ZiUG7J8bPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FAfemJcT6DP2ZiUG7J8bPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ZmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oPgWgw_HJ-7hbpa6_4Pqeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oPgWgw_HJ-7hbpa6_4Pqeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "iGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nay4Cu7cpfWvHwjKfzebpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nay4Cu7cpfWvHwjKfzebpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "imYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aHwd23m95kbO5iH430mBgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aHwd23m95kbO5iH430mBgA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "19YV7YYBBkbVtX3nTKb2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xVGi1i7nlJYkT__QgtZrJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xVGi1i7nlJYkT__QgtZrJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "YmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mtj0z4-Jv9LSHprcHM_y6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mtj0z4-Jv9LSHprcHM_y6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "e2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "mWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AFNGR4OlXqTo-8_xvYFKBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AFNGR4OlXqTo-8_xvYFKBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "udYV7YYBBkbVtX3nRZKx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YHlz2_RUb_dJDnbIGfEi0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "K2YV7YYBO2e_P_QbVhYN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Q9YV7YYBBkbVtX3nWrnf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oCsk-dy_lD0KOZfnzHxYTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oCsk-dy_lD0KOZfnzHxYTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4WYV7YYBO2e_P_QbWyOI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iOgvcGNEugo-q4Mte_An1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-dYV7YYBBkbVtX3nW7rm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nNScNuSTrpa5-8cxBl8OiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "N2YV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S4WvNNBIMRmvCXXO42eZaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S4WvNNBIMRmvCXXO42eZaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "StYV7YYBBkbVtX3nVrHh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQ1fVd58k2fSqjQSJ4y2iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "S9YV7YYBBkbVtX3nVrHh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q8Eu40FpZPClw51Nc5Z0VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q8Eu40FpZPClw51Nc5Z0VQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "F2YV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "yWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vWYV7YYBO2e_P_Qbajgv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-C8OkGycyUxmY2Oeulo77A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-C8OkGycyUxmY2Oeulo77A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JdYV7YYBBkbVtX3ndc64"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOiM2iaG3zJbqgtGW26o0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GIXoZcc-rO2_QJqWdyhQCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GIXoZcc-rO2_QJqWdyhQCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "z2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5uwo_M9Ua17W7BQNlGpxyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5uwo_M9Ua17W7BQNlGpxyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "s2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdQO73uJU5ltMBM9sQEM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GdQO73uJU5ltMBM9sQEM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "v2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b_jCta422d6xvVpqh75ZGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b_jCta422d6xvVpqh75ZGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Xt8BX3Fxv0nw4SPWrSguQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Xt8BX3Fxv0nw4SPWrSguQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["toPZwdg4nGX0bw501hsszg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JeAV7YYByh-A-BiydG8z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6bno3KY4YPf5Yv8-TeyIMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6bno3KY4YPf5Yv8-TeyIMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-all", "_id": "zGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c09KLYvfDtrLePqGFrZGFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c09KLYvfDtrLePqGFrZGFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "ymYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["apJrIWswhYE4MqQ6C-GbSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["apJrIWswhYE4MqQ6C-GbSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0GYV7YYBO2e_P_QbdDzG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qfmPxWX0umuPnDn2aoiurQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "7eAV7YYByh-A-BiyiIYF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bQaxjHqOXy8jFaY6w3jpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8bQaxjHqOXy8jFaY6w3jpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LtYV7YYBBkbVtX3nhd1U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0VugIogSoCuJazNruqmpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n0VugIogSoCuJazNruqmpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TGYV7YYBO2e_P_Qbh0uD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fn2Ai3DCNmO1q3hi2Wb60Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fn2Ai3DCNmO1q3hi2Wb60Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "SdYV7YYBBkbVtX3niOWG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4n3YuffBdoPIiHaB1UC0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u4n3YuffBdoPIiHaB1UC0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "148877361383403"} {"create": {"_index": "profiling-events-all", "_id": "RGYV7YYBO2e_P_QbmFzZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruy3OOd-IyG1ZkwpGQGBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ruy3OOd-IyG1ZkwpGQGBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eWYV7YYBO2e_P_Qbllh-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCa7vDPVTmdjv0FBSHomYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZCa7vDPVTmdjv0FBSHomYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TWYV7YYBO2e_P_Qbl1q1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "kdYV7YYBBkbVtX3nmPkA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9SYu-N9HWWrCeEAOt9YiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L9SYu-N9HWWrCeEAOt9YiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "cGYV7YYBO2e_P_Qbo2DE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "EuAV7YYByh-A-BiypJjC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fvee1-CYSv6CWV-rI4TxkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fvee1-CYSv6CWV-rI4TxkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "t2YV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3KY9CUj1lI4EPyAmsjiKpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3KY9CUj1lI4EPyAmsjiKpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-all", "_id": "BdcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_TD7x_m3wC-TEuP9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_TD7x_m3wC-TEuP9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CdcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["czdRcblS6ivfa0r3vBCxww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["czdRcblS6ivfa0r3vBCxww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tGYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nfuQzK4dMvkwCIn4oK0vJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BtcV7YYBBkbVtX3ntRYQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0DLtHxiVxElcFIXMT-PNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZOAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cjNpri0ftTdS6gywMlEj6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cjNpri0ftTdS6gywMlEj6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zpy6U6QwlCQnvibG2K7Iuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zpy6U6QwlCQnvibG2K7Iuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "idcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h3J3yP8dE1Gp9C8Y2fBhOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h3J3yP8dE1Gp9C8Y2fBhOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "42YV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O5lLlWeDVPBzxcQgxCRocQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O5lLlWeDVPBzxcQgxCRocQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "gmYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pdAduE6Gutq4FbdcnP42xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pdAduE6Gutq4FbdcnP42xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hGYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGCNe0J99A_EC_qmplbVRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OGCNe0J99A_EC_qmplbVRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "U-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f34iYGJZ4-vox7c1m40S5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f34iYGJZ4-vox7c1m40S5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "etcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2kXwUSA3PTDw3kyQaaCEMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2kXwUSA3PTDw3kyQaaCEMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "K2YV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxRH1n6rM_I4hLiGtKmVMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YxRH1n6rM_I4hLiGtKmVMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "69cV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ml7vM_TA_xUcAexnu4FJAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ml7vM_TA_xUcAexnu4FJAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ytcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jNdyoypr6XrrbEBsVS2_Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jNdyoypr6XrrbEBsVS2_Xw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "zdcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Lcmvo890HG8Y4rQbXwRxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jNcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kk6lQFGFmE5-o8l9P-PnVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kk6lQFGFmE5-o8l9P-PnVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ImYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CCqMRHd4WGpx3xij440EOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CCqMRHd4WGpx3xij440EOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "6NcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BZrfAQrKtaiW6I35J5iBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5BZrfAQrKtaiW6I35J5iBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "89cV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [4], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [4], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9dcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9tcV7YYBBkbVtX3ntBEr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "UOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qi_HV2s76U-q22eSjxJyyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qi_HV2s76U-q22eSjxJyyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WOAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "i9cV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hITXE_D420gqVob6jyPWhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hITXE_D420gqVob6jyPWhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "0-AV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZjfatQVxHkimbXA3s51kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZjfatQVxHkimbXA3s51kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "MuAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "NOAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oswz9Ug-CA3h0V4jS_UMxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oswz9Ug-CA3h0V4jS_UMxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "OmYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sjgFFvTDTMQOTVFeiCq8hQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sjgFFvTDTMQOTVFeiCq8hQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "WuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V6pL6H57Sh06W9eadqo0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V6pL6H57Sh06W9eadqo0ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "itcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bc6HNlC8Sl7niDN9L84HCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bc6HNlC8Sl7niDN9L84HCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "rGYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBbDg0Db98hCosBBvxLmXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBbDg0Db98hCosBBvxLmXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "0tcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "v2YV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ci1aB63L8kECW29ygL8YPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ci1aB63L8kECW29ygL8YPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EWYV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rtcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lE8Ul76Ux_RbEcuXBt93-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lE8Ul76Ux_RbEcuXBt93-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kGYV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AjN_kWkUNJ8KmZKfGtKOWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AjN_kWkUNJ8KmZKfGtKOWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rdcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k1TJV5J17869y08LRTIrbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E8q5-T4I0EEq3oPd2J28VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ndcV7YYBBkbVtX3n1C-A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUICzvay5gqiM1JCIDYjDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUICzvay5gqiM1JCIDYjDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "HWYV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_2Gi4xXPiktjMQVPnPo6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_2Gi4xXPiktjMQVPnPo6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MOAV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MeAV7YYByh-A-Biyxr4p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "feAV7YYByh-A-Biy0b5D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vfg07z_Uc57UwdNH4Rkz_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vfg07z_Uc57UwdNH4Rkz_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} {"create": {"_index": "profiling-events-all", "_id": "BdcV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RK5QOedYDJN8YhVo9FJwjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "ZNcV7YYBBkbVtX3nxSih"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Of21tDBsawVNvxkGbr6swA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Of21tDBsawVNvxkGbr6swA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nmYV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RiwkHW7QG1cujKZJxeET4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RiwkHW7QG1cujKZJxeET4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "hmYV7YYBO2e_P_Qb5Ymt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["unr_AT5uIzeOxUG_JOGaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["unr_AT5uIzeOxUG_JOGaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "-WYV7YYBO2e_P_Qb5ooi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B9mdhsnY5y_-MapRECAsRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B9mdhsnY5y_-MapRECAsRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ftcV7YYBBkbVtX3n4Two"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IqfRn2aVThGWJpMyYAGTnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IqfRn2aVThGWJpMyYAGTnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wtcV7YYBBkbVtX3n5EQ_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n021nAexdd_F-L49egYEAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n021nAexdd_F-L49egYEAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JNcV7YYBBkbVtX3n4j4u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxgOBo6uq7uvbQcqbAhQEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxgOBo6uq7uvbQcqbAhQEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "aeAV7YYByh-A-Biy5NuM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4uPdEWYsvs4SFw1vIspTAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4uPdEWYsvs4SFw1vIspTAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "vuAV7YYByh-A-Biy4NHi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r6N0xoA2ZW8gX4-YxbnuYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r6N0xoA2ZW8gX4-YxbnuYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "peAV7YYByh-A-Biy5dxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jthhLIqVB5doOdOhwJAhFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jthhLIqVB5doOdOhwJAhFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "G-AV7YYByh-A-Biy5d7m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cfo59YpRKB0q5iQSQJ-VYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "n9cV7YYBBkbVtX3n40Er"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ICTXUEt57m3Mefmfzh3iUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "314337526876654"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ICTXUEt57m3Mefmfzh3iUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "314337526876654"} {"create": {"_index": "profiling-events-all", "_id": "auAV7YYByh-A-Biy5NuM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-2CQZEnf6BMvQazkJUZsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M-2CQZEnf6BMvQazkJUZsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "BuAV7YYByh-A-Biy4dWo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P5qpfZ9QS6f9dFQXQ-RQug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P5qpfZ9QS6f9dFQXQ-RQug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "DdcW7YYBBkbVtX3nA11E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-P4L1LyUnq2IHmuakdfLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L-P4L1LyUnq2IHmuakdfLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} {"create": {"_index": "profiling-events-all", "_id": "79cW7YYBBkbVtX3nAFa0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gD23Bd8kEVujP5Tq3uPRhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gD23Bd8kEVujP5Tq3uPRhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "nmYW7YYBO2e_P_QbAKJr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V1p0cyagFSh4bcZOqHE1xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V1p0cyagFSh4bcZOqHE1xA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VGYW7YYBO2e_P_QbBawR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5pUaZNDVlK5DFtb06wgQqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5pUaZNDVlK5DFtb06wgQqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LtcW7YYBBkbVtX3nAls_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ryXlsOyzYLGsXWk1fBrhYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ryXlsOyzYLGsXWk1fBrhYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "meAW7YYByh-A-BiyAuya"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rkgBP4sIA5dHtR_5QDvD0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rkgBP4sIA5dHtR_5QDvD0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} {"create": {"_index": "profiling-events-all", "_id": "-mYW7YYBO2e_P_QbBKlb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KYi5gWT8f3sgP5wTTol1PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KYi5gWT8f3sgP5wTTol1PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "n2YW7YYBO2e_P_QbAKJr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ww_KG3DMJJ4ZQFU4V6lPqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ww_KG3DMJJ4ZQFU4V6lPqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ztcW7YYBBkbVtX3nAVhI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Wc8cD-xlBFleqsp-xbM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Wc8cD-xlBFleqsp-xbM4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LdcW7YYBBkbVtX3nAls_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQB8mTpjqxNXboFLF_ikTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQB8mTpjqxNXboFLF_ikTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "2-AW7YYByh-A-BiyAu7q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wKd3bA5CzFfK_BkLhBHABw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wKd3bA5CzFfK_BkLhBHABw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "52YW7YYBO2e_P_QbAKAj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "8OAW7YYByh-A-BiyEfxY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GITcXcM5OZJEsFYPj2RnOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GITcXcM5OZJEsFYPj2RnOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Y2YW7YYBO2e_P_QbE72B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GGYW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vyzbd-n47muGD1CcY51iSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Vyzbd-n47muGD1CcY51iSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qWYW7YYBO2e_P_QbEruU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ut68c_tuuoqFzX7ruLfoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7ut68c_tuuoqFzX7ruLfoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GmYW7YYBO2e_P_QbEbqq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["odxDK_3zvNwVZ9HE8UBEtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["odxDK_3zvNwVZ9HE8UBEtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b-EW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wx1SQ999fU4_Vx8sVoOw-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wx1SQ999fU4_Vx8sVoOw-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5OAW7YYByh-A-BiyD_jF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rv7vsqjWP8SoKG0Qu1ylfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rv7vsqjWP8SoKG0Qu1ylfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "q2YW7YYBO2e_P_QbEruU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uPfQx41sGpWXSF6wjd1f8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uPfQx41sGpWXSF6wjd1f8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GuEW7YYByh-A-BiyEwMv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UwLGDv_kxs9iZbW8xcSUiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UwLGDv_kxs9iZbW8xcSUiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xtcW7YYBBkbVtX3nFWpl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["en13QzIrjXnNEN-2tQMMJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["en13QzIrjXnNEN-2tQMMJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "eNcW7YYBBkbVtX3nEmVM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "kNcW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAQHjXtThJ1eaHLevfklmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAQHjXtThJ1eaHLevfklmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "K9cW7YYBBkbVtX3nFGl3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ig2MzPdh_XK7em8mWoJag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Ig2MzPdh_XK7em8mWoJag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "xdcW7YYBBkbVtX3nFWpl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n5uPBDEBKL0cPVfOG1jyTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n5uPBDEBKL0cPVfOG1jyTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "j9cW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "ANcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oKjEqCTMwkPftp0JIk3zEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akR0ajfGkZj2z5CmqvQfvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["akR0ajfGkZj2z5CmqvQfvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWQBAJ7ncYkjoV_tk9YLSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWQBAJ7ncYkjoV_tk9YLSg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_tcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T2adJ0VUBNmWRoosWSssPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T2adJ0VUBNmWRoosWSssPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "9eEW7YYByh-A-BiyIxQ6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6OaUumRb8P6q4GlOGK0eGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Q9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "T9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3tO3AhnrBAiBOTlaDL412Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3tO3AhnrBAiBOTlaDL412Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "UtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTTi8ZBWlyKqRGwjukTflA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LTTi8ZBWlyKqRGwjukTflA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eHad6fXlNZDDIqYPS_NA_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eHad6fXlNZDDIqYPS_NA_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0j1wiZ2zi9t7EenFUwZ_Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0j1wiZ2zi9t7EenFUwZ_Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkUlg8ipxB6y2tnHWbLlxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PkUlg8ipxB6y2tnHWbLlxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "-9cW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["muSA4-3A5tqLjcddDaeDBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "_NcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-G51CEezafd_J98dgV5JgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-G51CEezafd_J98dgV5JgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "_dcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T5Cn4ZcI85w-SXFfrytVPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T5Cn4ZcI85w-SXFfrytVPg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "BdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UoCOFE0Ha3XaxXZbhILYDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UoCOFE0Ha3XaxXZbhILYDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "B9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uQC4_VLdsRdPOY_eYCLgyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uQC4_VLdsRdPOY_eYCLgyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "CdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQw85LEW4DpLukB4K3A6Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lQw85LEW4DpLukB4K3A6Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "CtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E0PbyjdVN-U5rJIxbRMmXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E0PbyjdVN-U5rJIxbRMmXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "DdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fn0ZK2-ZIUvfytO-QISHyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fn0ZK2-ZIUvfytO-QISHyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05r6Ccnm9nLiv5rAFI61BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["05r6Ccnm9nLiv5rAFI61BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "RNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZpjYqKFeza_P-0E6-9HQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "D9cW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TpDEzWoy6rEMZYVF9eYCTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TpDEzWoy6rEMZYVF9eYCTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TtcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "5tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynwp47PusWaUtQGudVhz4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ynwp47PusWaUtQGudVhz4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "A9cW7YYBBkbVtX3nIHCT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tq6Q7NqNkBok1R0-y_UPeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tq6Q7NqNkBok1R0-y_UPeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "sWYW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHeythk0HZH6YmI9vQ5rRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHeythk0HZH6YmI9vQ5rRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "8eEW7YYByh-A-BiyQy5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fay02h057oipAap2CpcvzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fay02h057oipAap2CpcvzA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ROEW7YYByh-A-BiyQSqw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh6dkbq8WqrY7XSMixfetg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rh6dkbq8WqrY7XSMixfetg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B2YW7YYBO2e_P_QbP9-R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bciyx_9NZlf5osbnTw9ncg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bciyx_9NZlf5osbnTw9ncg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CGYW7YYBO2e_P_QbP9-R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7755LNVrLbBmdM_Bp6XCxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7755LNVrLbBmdM_Bp6XCxQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h2YW7YYBO2e_P_QbRObI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "r2YW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x_C9pMCGlnFGRtyqng1scA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x_C9pMCGlnFGRtyqng1scA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "ddcW7YYBBkbVtX3nQo-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jlfx0CU2a7x4kprrtwg64Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jlfx0CU2a7x4kprrtwg64Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "lOEW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JkCyXgxX7cEcni0HaLkYUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JkCyXgxX7cEcni0HaLkYUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "umYW7YYBO2e_P_QbPtv2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BN1QyTRWZUfNNPVd_m-f5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BN1QyTRWZUfNNPVd_m-f5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "kuEW7YYByh-A-BiyQzHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXIswAHFAGNbG7pCJXH-2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GXIswAHFAGNbG7pCJXH-2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "huEW7YYByh-A-BiyPiek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "zWYW7YYBO2e_P_QbQeID"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ppE0asB2Tjvm1WVJwx6bDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ppE0asB2Tjvm1WVJwx6bDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "5WYW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yqNwMmnv9h-z0-i604hZXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yqNwMmnv9h-z0-i604hZXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UGYW7YYBO2e_P_QbUe1z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-JEJOChfUhn_oksa05rgbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-JEJOChfUhn_oksa05rgbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Z2YW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2IwLSNJXYCXB5L0gWZQiOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2IwLSNJXYCXB5L0gWZQiOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "M-EW7YYByh-A-BiyTjpF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8e2eKxLMr45T-uq51LWiRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8e2eKxLMr45T-uq51LWiRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TmYW7YYBO2e_P_QbUe1z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["trg5FG0_Dj2SBeJw5MOwoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["trg5FG0_Dj2SBeJw5MOwoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "72YW7YYBO2e_P_QbVPdI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdtY_NIqhiA3emudSaygtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdtY_NIqhiA3emudSaygtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B2YW7YYBO2e_P_QbUe_C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j7OoU3oXSY3AFf-whF_CWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j7OoU3oXSY3AFf-whF_CWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5GYW7YYBO2e_P_QbUOsU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VXEIZNsetkTnWe5kx41b7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VXEIZNsetkTnWe5kx41b7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "B-EW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6SfMk8pl8KEOh7Msy9oRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H6SfMk8pl8KEOh7Msy9oRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "YmYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YiqN1eguj9w9NAvkPJxo-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YiqN1eguj9w9NAvkPJxo-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "vNcW7YYBBkbVtX3nVJ4L"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t5iMV2bxdd31FJyizPOYCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t5iMV2bxdd31FJyizPOYCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "HOEW7YYByh-A-BiyUD3c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mAZtQho57bjyTMlusRjj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mAZtQho57bjyTMlusRjj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bNcW7YYBBkbVtX3nT5d5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "R2YW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wi6N3XBGb2fuENnxnEyLLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wi6N3XBGb2fuENnxnEyLLw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "KtcW7YYBBkbVtX3nUJll"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_y9NqchzoBrOm_UtCMj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_y9NqchzoBrOm_UtCMj_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "xdcW7YYBBkbVtX3nTpXo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGWkKDGzXSSBbLkENAOIkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wGWkKDGzXSSBbLkENAOIkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "HeEW7YYByh-A-BiyUD3c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "u9cW7YYBBkbVtX3nVJ4L"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ifPg0tbOeATgXu54GVLHjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ifPg0tbOeATgXu54GVLHjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "beEW7YYByh-A-BiyX0Zg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9yOjEX9YsHot-nonRkNzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y9yOjEX9YsHot-nonRkNzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "RtcW7YYBBkbVtX3nX6G1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AidY4CO5JNQB7gWz7IQBaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AidY4CO5JNQB7gWz7IQBaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Z9cW7YYBBkbVtX3nYajE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whMMD-Ig4w265V1dioRGrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whMMD-Ig4w265V1dioRGrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "AWcW7YYBO2e_P_QbbQfF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gO3h9sz_Pp88e_MYvoWQhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gO3h9sz_Pp88e_MYvoWQhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "5eEW7YYByh-A-Biycli0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_TD7x_m3wC-TEuP9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ql87_TD7x_m3wC-TEuP9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i9cW7YYBBkbVtX3nf735"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKhp4VrunMdJZkEZm9IkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iKhp4VrunMdJZkEZm9IkqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FeEW7YYByh-A-Biyclc2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zrel0O8Eu19Ixn8b1A7RrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zrel0O8Eu19Ixn8b1A7RrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cmcW7YYBO2e_P_QbfRJk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V8737ugipSYB_laFotiYpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V8737ugipSYB_laFotiYpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mOEW7YYByh-A-Biyf2R6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrfjqA-Dh9U3GF1qMdtRQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrfjqA-Dh9U3GF1qMdtRQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "G9cW7YYBBkbVtX3nfryk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RWHF3OwT21IPak-nIUzKKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RWHF3OwT21IPak-nIUzKKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jWcW7YYBO2e_P_QbgBWH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ic2LVsuiX2BndjGY3s8emQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ic2LVsuiX2BndjGY3s8emQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PdcW7YYBBkbVtX3nfbnk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0wzD6Wsaoym2okQ8aY53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q0wzD6Wsaoym2okQ8aY53w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "GtcW7YYBBkbVtX3nfryk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xg3Upyi105Wyx-NTECB2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xg3Upyi105Wyx-NTECB2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "RuEW7YYByh-A-BiykHvM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzu7roeVjuX8DIGpBc0otA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "0dcW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mTpUz_E1PPzj0HR92ABMpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mTpUz_E1PPzj0HR92ABMpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FuEW7YYByh-A-Biyj3ir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WBHQM4NBGzoZVLedZma7Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WBHQM4NBGzoZVLedZma7Ig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "neEW7YYByh-A-BiykHkK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txUH5yrbhq1IXgpWcJMBxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txUH5yrbhq1IXgpWcJMBxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yeEW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ul5WCOLuBGGX66Anz_J-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ul5WCOLuBGGX66Anz_J-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XuEW7YYByh-A-Biyj3ZQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uaiZKrXoT8VGJLZeMjATrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uaiZKrXoT8VGJLZeMjATrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nOEW7YYByh-A-BiykHkK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFVwB25B3ZOzmrFYMtl7jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFVwB25B3ZOzmrFYMtl7jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_OEW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-HAzLlWL3fwYJPxGXqYsZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-HAzLlWL3fwYJPxGXqYsZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "yuEW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRl5mcquqOzq3HPlHFumow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aRl5mcquqOzq3HPlHFumow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "yOEW7YYByh-A-BiyjG3E"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HCpiBj8BD8aEJWFEDHXgqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HCpiBj8BD8aEJWFEDHXgqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "zdcW7YYBBkbVtX3nkscq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dF3lN3ea4am_7tDjMTNP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6WcW7YYBO2e_P_QbjR7F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TEYPXE1OBEat8qmRauzsiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TEYPXE1OBEat8qmRauzsiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "4uEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDcbOGXjyzRDEWJtXUJ7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDcbOGXjyzRDEWJtXUJ7rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "TGcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iVK1cbIgag654ehUa-HUNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QuEW7YYByh-A-BiyrYsf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86WQcXcUxaHfJUCEplsqoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["86WQcXcUxaHfJUCEplsqoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UGcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fHrd9ZU73jKyeFVMnONXJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fHrd9ZU73jKyeFVMnONXJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F-EW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ285knnYYuMww0WgMbI2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bQ285knnYYuMww0WgMbI2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GGcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVY8nef_n-I9Q52QhyCFfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVY8nef_n-I9Q52QhyCFfQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zdcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nBUbTpmi8j18IFjmOSwgBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nBUbTpmi8j18IFjmOSwgBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lGcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nq7kSiChsqLqIUaoOI5SGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nq7kSiChsqLqIUaoOI5SGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "FGcW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5T5ZLDbv0qRIOWXAecPJiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5T5ZLDbv0qRIOWXAecPJiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "k-EW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XaUnPPtgxfYR4iOYVLS0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "lOEW7YYByh-A-Biyn4n1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ND1k9rOosEcGzLPWnPdgVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ND1k9rOosEcGzLPWnPdgVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "oGcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jtcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["txZXHAJurNaMIlI0kux2YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "j9cW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tVG5BmNboq64Jjq3eLhTAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tVG5BmNboq64Jjq3eLhTAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "V9cW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h0lEtzKJzcNxepmOT3KRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h0lEtzKJzcNxepmOT3KRtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5eEW7YYByh-A-BiyoYqh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SFn-AE4FVjnPbzGVfeaMqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "42cW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5WcW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZ2YsSTqh3amiqmt5jrW4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EZ2YsSTqh3amiqmt5jrW4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "S2cW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AxLFvg4n6uQItdMk3gw_xg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "O9cW7YYBBkbVtX3nrNlH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZUvWAqmAXt-dgxjo_MjchA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZUvWAqmAXt-dgxjo_MjchA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hdcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZKNzQAHHe_cNd3rO-y4iLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9NcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sl8hikPZI3gmfoj4I-xFMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sl8hikPZI3gmfoj4I-xFMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "GmcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZcpIqjO8GbOGxvXYAifsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZcpIqjO8GbOGxvXYAifsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "pOEW7YYByh-A-BiyrYy7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["naLB5wSXMG6mCbQGVr-m2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["naLB5wSXMG6mCbQGVr-m2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ZeEW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4I-ntmDjAgUXJfwbuBJNjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4I-ntmDjAgUXJfwbuBJNjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "Z-EW7YYByh-A-Biyro4M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6US40l27xGVk9xU0Gj_K9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6US40l27xGVk9xU0Gj_K9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TmcW7YYBO2e_P_QbrDkF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lWGBthO0cXLKT_wGxBJl5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lWGBthO0cXLKT_wGxBJl5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6mcW7YYBO2e_P_QbsUPY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["531_Sc4IW-g1NnLnDZ_hAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["531_Sc4IW-g1NnLnDZ_hAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cAz0gk7brP4PWna-bhJGIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cAz0gk7brP4PWna-bhJGIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A-EW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K-Ytw62_KLFXRAkcUu6qRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K-Ytw62_KLFXRAkcUu6qRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BuEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlDB0giXI1NsaTgwfP9dqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OlDB0giXI1NsaTgwfP9dqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "qOEW7YYByh-A-Biyspx4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hnpa0jil7FRY5KNbXbXjyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hnpa0jil7FRY5KNbXbXjyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "7-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "--EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "AOEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cgbUcRDTpEjDrsHsz7--9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cgbUcRDTpEjDrsHsz7--9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} {"create": {"_index": "profiling-events-all", "_id": "69gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsU0osaCNAmSunlpUc3Ozg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UsU0osaCNAmSunlpUc3Ozg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9WcX7YYBO2e_P_Qbh_pU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hpl7qJJwhIXHDYYdvHuzLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Hpl7qJJwhIXHDYYdvHuzLg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kuIX7YYByh-A-BiyiUZS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xqMKJtcmKXbh2cms887n-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xqMKJtcmKXbh2cms887n-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lGcX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l_LfIb1A5Uh6akK6C3GVnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l_LfIb1A5Uh6akK6C3GVnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "5OIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_AVql7KXMLg1O-JULbNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_AVql7KXMLg1O-JULbNgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "VNgX7YYBBkbVtX3nin7J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9i0d0snq2LSo5WLubtd6_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9i0d0snq2LSo5WLubtd6_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "V2gX7YYBO2e_P_QbiQGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eX5L_3abHLPWPQF-_snJfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eX5L_3abHLPWPQF-_snJfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4tgX7YYBBkbVtX3ni4Pc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HnIE-9MlTVx0Ab-mshynaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HnIE-9MlTVx0Ab-mshynaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7WgX7YYBO2e_P_QbjANs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWAxO1Icd_0_-O3aV3iUhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CWAxO1Icd_0_-O3aV3iUhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "k2cX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ze3jQXtgwNkR6O4a_Nqg1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ze3jQXtgwNkR6O4a_Nqg1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5uIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5tbIu8B2wKAudkUXTqytHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5tbIu8B2wKAudkUXTqytHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "0NgX7YYBBkbVtX3niXvV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zeLqMJxxpT2jsR6Xt4zqGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "L-IX7YYByh-A-Biyikgc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O9ef8dRV4l_MugfvQ0rYYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["O9ef8dRV4l_MugfvQ0rYYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "sOIX7YYByh-A-BiyikmM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7Swiq0tk_yociUJzvIr0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7Swiq0tk_yociUJzvIr0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3dzkAiyt1YVI-og1A_HKMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3dzkAiyt1YVI-og1A_HKMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJzVoueJRM62h7Ahq8M6SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJzVoueJRM62h7Ahq8M6SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "bOIX7YYByh-A-Biyi0uU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BeIW539VCuG8AbY5zkzibA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BeIW539VCuG8AbY5zkzibA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7eIX7YYByh-A-Biyh0Kg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzJd5yzlB5VRPpGvz2d_9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pzJd5yzlB5VRPpGvz2d_9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WGgX7YYBO2e_P_QbiQGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XC5SywLBeX1PQ5gC8i2e8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XC5SywLBeX1PQ5gC8i2e8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "U9gX7YYBBkbVtX3nin7J"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RGoTgpaa0vsxWtWSGraFrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RGoTgpaa0vsxWtWSGraFrA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "3NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "39gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Egb8M192QRouZ1YPjNwqmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Egb8M192QRouZ1YPjNwqmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7mgX7YYBO2e_P_QbjANs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HFDZtj7y0Bw2k96K0Shk-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HFDZtj7y0Bw2k96K0Shk-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "8eIX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rNgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y9X7gkveuiKIarXoPu9Pow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y9X7gkveuiKIarXoPu9Pow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YeIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wv08CwSYSbgcSoEXkrZnIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Wv08CwSYSbgcSoEXkrZnIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9GgX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3hLenFHyAFyb6H7VmWWGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3hLenFHyAFyb6H7VmWWGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "9WgX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Os-4RhVkjeRwXnMgi8sCPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "r9gX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_gVd-AvWZmQ3WMy6t6XAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w_gVd-AvWZmQ3WMy6t6XAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "72gX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdc8gR_Y8kDXnRgAlQGfhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hdc8gR_Y8kDXnRgAlQGfhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "8GgX7YYBO2e_P_Qbpxl-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ttgX7YYBBkbVtX3np5HZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3QVerrpALkFsA-z-U___AA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "emgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g4wOsBXMok0GNueh82GdWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g4wOsBXMok0GNueh82GdWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "JtgX7YYBBkbVtX3nqZao"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["avHlGvNfTVzeaAgsVgxB6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["avHlGvNfTVzeaAgsVgxB6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ouIX7YYByh-A-BiynF0B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TuPnIZnhjIAYjeiVxPyaLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TuPnIZnhjIAYjeiVxPyaLQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "711845992008202"} {"create": {"_index": "profiling-events-all", "_id": "buIX7YYByh-A-BiymlgR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mIwFBWh1v3kx8u1FeFlbIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mIwFBWh1v3kx8u1FeFlbIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "seIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R1wuCeOIa20fh-d5eRRVFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["R1wuCeOIa20fh-d5eRRVFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZtgX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["92cNuiuQKW3x7lS40O9Vmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["92cNuiuQKW3x7lS40O9Vmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b-IX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-9_uQoUPE9EW73Ys_J5m3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-9_uQoUPE9EW73Ys_J5m3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9mgX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIxtnf4ZytccTyNG23fGog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AIxtnf4ZytccTyNG23fGog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "s9gX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qpqVuz6fzTFpU75L4AxuKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qpqVuz6fzTFpU75L4AxuKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "Z9gX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["slgUvSTKxzBwaU847WWWjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["slgUvSTKxzBwaU847WWWjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "y-IX7YYByh-A-BiyqF8h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pxt9G8AauuDa281-G4uTWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pxt9G8AauuDa281-G4uTWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "844449768587301"} {"create": {"_index": "profiling-events-all", "_id": "KmgX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nWgX7YYBO2e_P_QbphZT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "8uIX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Q6w1HKYFAJALkbhmH-RHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Q6w1HKYFAJALkbhmH-RHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "G98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zOolLKwTF6c0fdaMu4zrpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5lorII3BQFhJxreg2edqjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5lorII3BQFhJxreg2edqjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "898U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdV0WYTy4PSs_A4me7FKqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AdV0WYTy4PSs_A4me7FKqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "-t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9UpR2U-Z66umiXz9ZVDmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9UpR2U-Z66umiXz9ZVDmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "lmUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UutkxbmCiH9flxeQtiJBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UutkxbmCiH9flxeQtiJBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "It8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zhkr7FPwkPtUyVPXWQDkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zhkr7FPwkPtUyVPXWQDkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "F2UU7YYBO2e_P_QbvZyb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9N8U7YYByh-A-BiyusJq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0-Jsd5mQCWnt_-lPVIShHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0-Jsd5mQCWnt_-lPVIShHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "r9UU7YYBBkbVtX3nu_4f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vj8M1UtdEZK08xJh31zdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8vj8M1UtdEZK08xJh31zdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "Id8U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnBTQbU2oNTyfQ4d69ZrwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnBTQbU2oNTyfQ4d69ZrwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "-d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XgUh4zP6_HxjUL-1XhJT2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XgUh4zP6_HxjUL-1XhJT2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "A98U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jedq9pa2af0dW7deMw2jFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jedq9pa2af0dW7deMw2jFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lncubcdiqHSYqwQrDvrkCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lncubcdiqHSYqwQrDvrkCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "CN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4muA3nXQ7wRP5Hb8eGEGZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4muA3nXQ7wRP5Hb8eGEGZg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ntYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ieFm4DhmWNYMrTtIZLOTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4ieFm4DhmWNYMrTtIZLOTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fd8U7YYByh-A-Biyvcco"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzDNpxQnzmRTQIj87w61bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JzDNpxQnzmRTQIj87w61bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tBKNWCTouiyLWmoA4fnhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1tBKNWCTouiyLWmoA4fnhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IxM2ggcVNlY2O-JpYzPXTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IxM2ggcVNlY2O-JpYzPXTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Kt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ijh2g5A8fvLXjeEqDoDNpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ijh2g5A8fvLXjeEqDoDNpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GN8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaHxjoiTM1eQ6lx1DMgvTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KaHxjoiTM1eQ6lx1DMgvTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "l2UU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YZ6XTwSTsk_RRpTARdTTcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YZ6XTwSTsk_RRpTARdTTcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-98U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K9LDD5AZV4XmqBf_IoPXlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4N8U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Bx6QFlsny3BVfw-E8xnEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8Bx6QFlsny3BVfw-E8xnEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "u98U7YYByh-A-Biyyc_A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAPXh-Ln7dsyIue7-chOWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAPXh-Ln7dsyIue7-chOWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDpZZR8qlUndvJSVZUQGfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PDpZZR8qlUndvJSVZUQGfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Gd8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3rOpJzGPS7tGvMhQ90uyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_3rOpJzGPS7tGvMhQ90uyg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "ndYU7YYBBkbVtX3nvAI_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BYfLgwssJN01WD8jqeu3Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "eWUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mjmL0Xb5ExHKk3gY3SfF8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mjmL0Xb5ExHKk3gY3SfF8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "IN8U7YYByh-A-Biyv8mc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y8na3ceZxIiFeB38FaoyuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["y8na3ceZxIiFeB38FaoyuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HRl0p2QhnLJg3zvMHmkZqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HRl0p2QhnLJg3zvMHmkZqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6t8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN29r4iQqyKpKryFAHklNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FN29r4iQqyKpKryFAHklNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5QOVChXLsrqENbKSsGj8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5QOVChXLsrqENbKSsGj8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8N8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["an9gjQnke-IYWAGoKUs5KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["an9gjQnke-IYWAGoKUs5KQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j_ZkdluVAC4IXHAbI6Pmjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j_ZkdluVAC4IXHAbI6Pmjw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Ht8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XQeY0u1F2xnHmZQvstPXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Jt8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uIMM5HqMkglfbJ18Ml0GlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uIMM5HqMkglfbJ18Ml0GlQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Ht8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g0TcViARYA_NarblNdiqUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "lWUU7YYBO2e_P_QbyKOD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OxVykxLrjAY-XgNQtErYDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OxVykxLrjAY-XgNQtErYDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "KtYU7YYBBkbVtX3nygdO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQfZAh-DQHDVJDhrdQQeqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UQfZAh-DQHDVJDhrdQQeqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "DWUU7YYBO2e_P_Qbvp4b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whLFrJ0C3L5ID9FEmIKmhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["whLFrJ0C3L5ID9FEmIKmhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYTaEZ21SPKDnDxndpockQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FYTaEZ21SPKDnDxndpockQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "AN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hyslIhEYrdCY7Y2kR4LC4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "Kd8U7YYByh-A-Biyu8Z1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "LN8U7YYByh-A-BiywMu7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mwUpd0imVLBffXq6CKbujA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mwUpd0imVLBffXq6CKbujA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "6d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NQzAAYItWlUR8Wx0iQghsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NQzAAYItWlUR8Wx0iQghsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "398U7YYByh-A-BiyyM0P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RLske_-faZ7wKdYb3WXphQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nt8U7YYByh-A-Biyy9Ef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "fWUU7YYBO2e_P_QbvqCh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVlyLKXyb8x0uLNYAPexSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PVlyLKXyb8x0uLNYAPexSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "9d8U7YYByh-A-BiywMq7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7I_OssEt4qZsJxTrqNd4gQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7I_OssEt4qZsJxTrqNd4gQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "Ft8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8h10fs0ddiOcVgnyW4Tl_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8h10fs0ddiOcVgnyW4Tl_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "Gt8U7YYByh-A-Biyx8yq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jsGoGFJd_KwHDVlL9hbdSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014803"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jsGoGFJd_KwHDVlL9hbdSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "55734071622694"} {"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67AU8cgiv2OiIR5ejtdmRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["67AU8cgiv2OiIR5ejtdmRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Vt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zQ1nyOGbOtedL7gx4fO8XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDM5FGocWkrUljGSyVLiPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BDM5FGocWkrUljGSyVLiPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "iN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cW8t-wBFVbXPMN_YH8nydw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cW8t-wBFVbXPMN_YH8nydw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6Z5oRx4O63IFM67ZJuuJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j6Z5oRx4O63IFM67ZJuuJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0t8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28hHkhN7jPc2yLRpJAYfPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["28hHkhN7jPc2yLRpJAYfPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "x2UU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nWUjPDlBGs10DeEAyhYVTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b9YU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Xd2WZFqlgKVx01Ohrr1dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Xd2WZFqlgKVx01Ohrr1dQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Zt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["beuv2u9oMMhwQHihFlStkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["beuv2u9oMMhwQHihFlStkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rmUU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bNNll9gtsumikBQkeP5zYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bNNll9gtsumikBQkeP5zYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0N8U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K3Z7Bso8_acxSu6Vxdfbjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "wt8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcQSqbXhDJcv-dVT41RQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HcQSqbXhDJcv-dVT41RQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "zd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EruDr_ih7XLGuzv_u8mEQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EruDr_ih7XLGuzv_u8mEQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "0N8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xWfVfitdsTIFX4dhe6CakA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "72UU7YYBO2e_P_Qb3L3V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2vgTPpm8BMcHhsujCAFSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2vgTPpm8BMcHhsujCAFSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "WN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mdw3BiJM92OOtEHXgQMjkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mdw3BiJM92OOtEHXgQMjkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "aN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-tJlKr_KhSmekGKYSh387Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "bN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2bYjKMpMW5W361PJ9SbEqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "cd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XmdrI-QkL3G1KMx-UT00Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XmdrI-QkL3G1KMx-UT00Dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "c98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wmGM9d6YoSoIyBMvtxpaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3wmGM9d6YoSoIyBMvtxpaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ht8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7lZc2qqwTOxuwAsl_tPb5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7lZc2qqwTOxuwAsl_tPb5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "jN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDosqYNWqMjeDR-l1Za_TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDosqYNWqMjeDR-l1Za_TQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "kt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5hG8KKglQrQ3G7KSXA2QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["j5hG8KKglQrQ3G7KSXA2QQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "od8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Uz66tx2I5JTSXA6CNdimw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-Uz66tx2I5JTSXA6CNdimw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "89YU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Nr_8hMt7lL3ObaXhoWtKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_Nr_8hMt7lL3ObaXhoWtKw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "9NYU7YYBBkbVtX3n3h9C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzPOzTEXdQzPan7rC__T_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzPOzTEXdQzPan7rC__T_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "r2UU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uWH1YJMiRNhCnBrl6NfCMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "h2UU7YYBO2e_P_Qb38Ek"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydmNLaPNVcV_2d5DkMu7ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ydmNLaPNVcV_2d5DkMu7ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "LN8U7YYByh-A-Biy3-v-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G81V791m7uA9YBPgoQEn8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G81V791m7uA9YBPgoQEn8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "V9YU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uh-jwsuxuUYFlAJ62euRwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "btYU7YYBBkbVtX3n2BjO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcGz4984lW_7ADxWvMJl6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcGz4984lW_7ADxWvMJl6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "cN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ilIjnGLprZJBf-XmwKk7UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ilIjnGLprZJBf-XmwKk7UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "lNYU7YYBBkbVtX3n2h7w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["799eAdJjPYE03w7zg0dmIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["799eAdJjPYE03w7zg0dmIQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "xtYU7YYBBkbVtX3n1xTG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQ4Z-jiPS9ERtxr-dNMVPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TQ4Z-jiPS9ERtxr-dNMVPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ItYU7YYBBkbVtX3n2hoO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4f9KZiG-idTZu0O-sRt4aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z00iShXdXFb3_lRNuX4ZQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Z00iShXdXFb3_lRNuX4ZQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xd8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NXFmJwy8bX4T3TBtUWzk4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NXFmJwy8bX4T3TBtUWzk4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dt8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rG147l1B0EGMuLS3fy86lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rG147l1B0EGMuLS3fy86lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ACT7gU2GPCwMpgWEOyi5HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ACT7gU2GPCwMpgWEOyi5HQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUWb9UKO7qICsUy_ccfdaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUWb9UKO7qICsUy_ccfdaQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "o98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["val5lb3yDclirfA_QdK7Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["val5lb3yDclirfA_QdK7Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vWUU7YYBO2e_P_Qb4MZd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96g1R53V5QyPuXTUHSgw4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["96g1R53V5QyPuXTUHSgw4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WdYU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6IN4ndcB5qmSJYNzvpVbgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6IN4ndcB5qmSJYNzvpVbgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Wd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2WgjTSIQCP6U6Q-JjUia1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2WgjTSIQCP6U6Q-JjUia1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WJtwE6C4KDOaEo17zelbiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WJtwE6C4KDOaEo17zelbiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "m98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1W94d88mnm9x39d54400ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1W94d88mnm9x39d54400ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yt8U7YYByh-A-Biy3enR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kqSFQUO3VSzNPTrQP20mfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kqSFQUO3VSzNPTrQP20mfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rWUU7YYBO2e_P_Qb3r-v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7RMgnGzd9pjT-Nh8jG3zbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7RMgnGzd9pjT-Nh8jG3zbw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "lN8U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSHgan70C0hkYZy36mxqBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vSHgan70C0hkYZy36mxqBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "yN8U7YYByh-A-Biy2-RY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F_APHoeVxOWNqwDMoBgBUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["F_APHoeVxOWNqwDMoBgBUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "eN8U7YYByh-A-Biy3edS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZEQXM7WYfQLn99tFhWnyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eZEQXM7WYfQLn99tFhWnyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "k98U7YYByh-A-Biy4ewW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ROD9hyXKyG1xyIp3eNp24A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "b98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Y5-o0gkUhbrP54-KmzBRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Y5-o0gkUhbrP54-KmzBRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "k98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jxx94k5bF0AyU24TvMCnFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jxx94k5bF0AyU24TvMCnFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WNYU7YYBBkbVtX3n4CG5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kCi3XJtF81OLZhjrXcqzHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "098U7YYByh-A-Biy1-BK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JnSKFHek1VX4hQrcBvK6Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "dmUU7YYBO2e_P_Qb3LtA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVxfeW31BKBlFSOTuEq2vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVxfeW31BKBlFSOTuEq2vg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "Zd8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ryfu5a--oA0HxtDhUCtdpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ryfu5a--oA0HxtDhUCtdpg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "j98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsjTmLeWgJZGEXKE2bGYPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nsjTmLeWgJZGEXKE2bGYPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "lt8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zLdPokHD2Z2SVrMjPVZbgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zLdPokHD2Z2SVrMjPVZbgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "xGUU7YYBO2e_P_Qb38OV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HSqoNRZZIrgV8Hc05ks5og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HSqoNRZZIrgV8Hc05ks5og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "f98U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y3XyMSK9tPI3_U0zY2ps0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y3XyMSK9tPI3_U0zY2ps0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "rN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yPsp3gldnYluQE1Il8N2GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yPsp3gldnYluQE1Il8N2GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "pN8U7YYByh-A-Biy3enQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GzMkMHSbJB6nV1XM7_SYKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014810"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GzMkMHSbJB6nV1XM7_SYKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "428437761470762"} {"create": {"_index": "profiling-events-all", "_id": "7dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WvJZCAk7gVxCX3Q5TFv5cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WvJZCAk7gVxCX3Q5TFv5cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pXACL2-jPjXQBG18kGP3iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pXACL2-jPjXQBG18kGP3iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ftYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyPUjDErN9KDQ5m99X0sAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zyPUjDErN9KDQ5m99X0sAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h9YU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ePjKQtLllV_2B6Oq3TJ35Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ePjKQtLllV_2B6Oq3TJ35Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2KQ1xLodxTiqHmDQYXbmJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2KQ1xLodxTiqHmDQYXbmJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "V9YU7YYBBkbVtX3n-UE3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vBuMYbV0eX1rnNuqJvyNWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vBuMYbV0eX1rnNuqJvyNWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NtYU7YYBBkbVtX3n-UN7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tnEGCyYPY-9Dy4jeOy-iBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tnEGCyYPY-9Dy4jeOy-iBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "It8U7YYByh-A-Biy6_ul"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAgkJzf4StR0guQvtrxwfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UAgkJzf4StR0guQvtrxwfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qtYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fZs8SW_-AMd6brkAp6VfIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fZs8SW_-AMd6brkAp6VfIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "edYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZsYEzt_8lrTbaZDB8kywA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZsYEzt_8lrTbaZDB8kywA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "itYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DWfScUV2_2OCeYx4zWNovQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "mNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9bN4B0y0HQxr-zG0AhOUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b9bN4B0y0HQxr-zG0AhOUQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "otYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IoJlfiMVuBuG6DfHS2d0IA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IoJlfiMVuBuG6DfHS2d0IA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "uNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-PWxSiTmjhtgtcqWr-cUtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-PWxSiTmjhtgtcqWr-cUtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "zNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SjE2Ni6CAQyLI_0LOuh-XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SjE2Ni6CAQyLI_0LOuh-XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "zdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sx2U9dpgshF4QL4T5gZ6MQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sx2U9dpgshF4QL4T5gZ6MQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ztYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["40e3Tg8yjxNKy4P6BuWO-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["40e3Tg8yjxNKy4P6BuWO-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "2NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WNKWldEDEQV0rRa3BHpz0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WNKWldEDEQV0rRa3BHpz0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "3dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iJXWguOQwBM8DxQXGl57jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iJXWguOQwBM8DxQXGl57jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "-NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLX1mOZZ4FB_ggjZCD1W-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hLX1mOZZ4FB_ggjZCD1W-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9uEZQLKh57x4BtzNglutA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D9uEZQLKh57x4BtzNglutA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "0dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViC03sje9QXvOY-ekeiy4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ViC03sje9QXvOY-ekeiy4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "i98U7YYByh-A-Biy9_8o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFwqiF8mGnNqqISBiOraPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFwqiF8mGnNqqISBiOraPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoP9hAiZoGUDEMy64jET7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OoP9hAiZoGUDEMy64jET7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFWcqgahvwzy1xUY69A0Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFWcqgahvwzy1xUY69A0Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHgSIcaSuS6XNpC67kiXTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GHgSIcaSuS6XNpC67kiXTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z6VzC1_Xu_H2TiDjzjPdmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z6VzC1_Xu_H2TiDjzjPdmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ANYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lo1FK0cOT4jUm2Qr6L-02w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lo1FK0cOT4jUm2Qr6L-02w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lNYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-B1OuisGq94rIWOaaG-QZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-B1OuisGq94rIWOaaG-QZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IDJuAvr20i1MdkeJctVLcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IDJuAvr20i1MdkeJctVLcg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4dYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKfrUz68RAX4mdNriJ73lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PKfrUz68RAX4mdNriJ73lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dRBdj6fqBaNFs9qEBG9D-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dRBdj6fqBaNFs9qEBG9D-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ktYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y8nvfrvenFH8tjnsQqRmig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y8nvfrvenFH8tjnsQqRmig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "BmUU7YYBO2e_P_Qb-NOw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VQ0HdY-PXTuyjNIK6sm3RQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VQ0HdY-PXTuyjNIK6sm3RQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "bdYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ju1Y8z3O5D2e-y3UCauHLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ju1Y8z3O5D2e-y3UCauHLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6NYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["66YyzrRAaK1eflQF_FbcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["66YyzrRAaK1eflQF_FbcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "-tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LA1QfR7E7BQq2NnqmNTjFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LA1QfR7E7BQq2NnqmNTjFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "AtYU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kks8edTwYqrUkhTSOKMQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kks8edTwYqrUkhTSOKMQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "B9YU7YYBBkbVtX3n9z6H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["amHFhXVq-o4KXgR6R1r-Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["amHFhXVq-o4KXgR6R1r-Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ldYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "_tYU7YYBBkbVtX3n9z2H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014816"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LpjlQ5x3C5y0GS9aUsntg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "jdYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JI7mG0vgGSTA2uia9-1jSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JI7mG0vgGSTA2uia9-1jSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "q-AV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["boIzddYopai9UjphB37nhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["boIzddYopai9UjphB37nhQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PtYV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEq1JWlDmlwTpiy46PgDqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YEq1JWlDmlwTpiy46PgDqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "m-AV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EiP_fqJ5eainxyo48aQcOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EiP_fqJ5eainxyo48aQcOQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dOAV7YYByh-A-BiyCRh4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kNYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fdWGYIeNIIrvl5yNTWQFCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fdWGYIeNIIrvl5yNTWQFCA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "DmUV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BhvORIoUEUvqKKPPz94jvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "F-AV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wUfvGFMhsPYCiR2iraE6yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wUfvGFMhsPYCiR2iraE6yA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "_NYV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PwiymugfyWZ7JNBkVfJTzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "gdYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fhL78fB6ht38oYP9R7oGng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fhL78fB6ht38oYP9R7oGng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "7-AV7YYByh-A-BiyDB-G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "5tYV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_m8wOPYHgqUseziTFic-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T_m8wOPYHgqUseziTFic-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "nOAV7YYByh-A-BiyDSFn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZvW02WsFdrDb2uuQD6AqIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZvW02WsFdrDb2uuQD6AqIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "JuAV7YYByh-A-BiyCxxq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lfg5-StCmQRLLhdxDtBcFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Lfg5-StCmQRLLhdxDtBcFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OdYV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lAXP_bDkVl41XjIqstP9YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lAXP_bDkVl41XjIqstP9YA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P9YV7YYBBkbVtX3nDFzR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFOpEBwKNMGOTnHzKtdQnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pFOpEBwKNMGOTnHzKtdQnQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5dYV7YYBBkbVtX3nDV0h"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1StoQg7J8aPbo68sE2e2FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1StoQg7J8aPbo68sE2e2FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FuAV7YYByh-A-BiyBxBv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7dZ7-R85Uk0iMtgooj6v_Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_tYV7YYBBkbVtX3nCVTP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o02UcgaTacPmYjOwwPOCJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o02UcgaTacPmYjOwwPOCJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "quAV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RNwCIBshkIMvUtAdsIyUXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} {"create": {"_index": "profiling-events-all", "_id": "jtYV7YYBBkbVtX3nBk4o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P_F4N85n6ygrRQ1ObfKSJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LdYV7YYBBkbVtX3nCFPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VrBz5ulfwdPTqnMaGIpcBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "qtYV7YYBBkbVtX3nClae"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWfc397MJFynjmcnyAtS1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MWfc397MJFynjmcnyAtS1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gNYV7YYBBkbVtX3nC1gN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XB2RBcspSf2rnOrxNGF7Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XB2RBcspSf2rnOrxNGF7Mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "w-AV7YYByh-A-BiyCx2w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP1YbEn43FveSGHDAeyzEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aP1YbEn43FveSGHDAeyzEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "O9YV7YYBBkbVtX3nC1r7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SsB_u-p6-kmstFPsLe9XQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SsB_u-p6-kmstFPsLe9XQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "D2UV7YYBO2e_P_QbBuCR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU2gNL0dqNkZNb3bXXutHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU2gNL0dqNkZNb3bXXutHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "rOAV7YYByh-A-BiyBg34"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNDnc_BbX-bZvBLeZE3IhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014821"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNDnc_BbX-bZvBLeZE3IhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "NGUV7YYBO2e_P_QbGelA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hSPX2ocR_Ka7dmSG_0BvUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MeAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8T064malfbI6yltLIiW-8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8T064malfbI6yltLIiW-8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "c9YV7YYBBkbVtX3nFmEP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RacUKMIrwwT1y_qD2hDfpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RacUKMIrwwT1y_qD2hDfpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LeAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pDq0KLS_CVlPqSda6JpGZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pDq0KLS_CVlPqSda6JpGZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "B2UV7YYBO2e_P_QbF-SC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OLDYY6fj7GShTOkVXzydtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OLDYY6fj7GShTOkVXzydtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} {"create": {"_index": "profiling-events-all", "_id": "MOAV7YYByh-A-BiyHDPM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlF3sWH6N3gcr5OTBdjCWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UlF3sWH6N3gcr5OTBdjCWg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZWUV7YYBO2e_P_QbGOeB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch1MSb9N9bTihIUdmamkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ch1MSb9N9bTihIUdmamkLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yGUV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uVz8NwCzYiroPS8zol4cYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uVz8NwCzYiroPS8zol4cYQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "x2UV7YYBO2e_P_QbGuqP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26eMbIowZ7RFzGdD2uFyMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014826"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["26eMbIowZ7RFzGdD2uFyMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "wdYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2NuFpd57ieo26ztmYwFIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H2NuFpd57ieo26ztmYwFIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUKA7gaaH9QtcEUOhnkXBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PUKA7gaaH9QtcEUOhnkXBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "19YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LadRZ9nrWUWtpCeBiU-rCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LadRZ9nrWUWtpCeBiU-rCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pGUV7YYBO2e_P_QbNfql"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AqW4O0lT_YcKP7qw6bzS2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AqW4O0lT_YcKP7qw6bzS2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "140556023255829"} {"create": {"_index": "profiling-events-all", "_id": "3dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WB2ChzRmsP63O7cEov2qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7WB2ChzRmsP63O7cEov2qw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "kGYV7YYBO2e_P_QbOALl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53PCQ4S8hGae7xDUxkptJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["53PCQ4S8hGae7xDUxkptJg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "ydYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yLwY_MOsydDU7XEbyC_1EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yLwY_MOsydDU7XEbyC_1EQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qVW6zqZFUDf4jmIJtsdFjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qVW6zqZFUDf4jmIJtsdFjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "5dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_NYV7YYBBkbVtX3nN4vV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zwhp9WeyhfaKSBb1ToTrGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zwhp9WeyhfaKSBb1ToTrGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "09YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0fqU4EglvDX7hh3PMNsxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["f0fqU4EglvDX7hh3PMNsxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u6l9MuBKqlPDG0c4BbLwSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["u6l9MuBKqlPDG0c4BbLwSw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "2NYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5ViqVqqhAWPiT5DHT3ocA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5ViqVqqhAWPiT5DHT3ocA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "-9YV7YYBBkbVtX3nNolA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4dYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0JrvqOGSV5sSkPZVHmV-1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0JrvqOGSV5sSkPZVHmV-1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "v9YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XI0a5uYy8WGcbycZNNF9pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XI0a5uYy8WGcbycZNNF9pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "xNYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TaW85eSCND8M8sXCtd--5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TaW85eSCND8M8sXCtd--5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ytYV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "29YV7YYBBkbVtX3nK4JW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "-GUV7YYBO2e_P_QbNvuJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pNtMkp20SCCEh-TxrA7W_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7-AV7YYByh-A-BiyOEia"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iAyna-aTAn1PsVqMhzzlmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "UdYV7YYBBkbVtX3nNYhc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNDnc_BbX-bZvBLeZE3IhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014832"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TNDnc_BbX-bZvBLeZE3IhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "V-AV7YYByh-A-BiyRFH8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_4SSZ-fDRU6dq-MfFWxOng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_4SSZ-fDRU6dq-MfFWxOng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "bWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bX4y30xaW5TGzCNkEXdvXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bX4y30xaW5TGzCNkEXdvXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBfh2StrmCD3agR-LjX8jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lBfh2StrmCD3agR-LjX8jA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "otYV7YYBBkbVtX3nRpQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LiSJgYaS_IuBq_4ymnNLrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LiSJgYaS_IuBq_4ymnNLrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "vWYV7YYBO2e_P_QbSRHb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RSnmXvhjCRc5PWjsdxAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RSnmXvhjCRc5PWjsdxAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "b2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hicFPnqcgI-QATM_d1RRhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hicFPnqcgI-QATM_d1RRhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_zNN2R6gCnlCmrGYYAK4_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5uAV7YYByh-A-BiyTFeK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wg4weiqhx4cQSZpZOkpJ7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wg4weiqhx4cQSZpZOkpJ7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "aGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtaoZwIzTcxhkVhNaJ4ybg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YtaoZwIzTcxhkVhNaJ4ybg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "cmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3rA5HVT6PyGXCEVq07mnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3rA5HVT6PyGXCEVq07mnw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-P0Vso9aXjNnbKarUe02Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-P0Vso9aXjNnbKarUe02Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "jGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9i4bcor3bCmUHnFwLkINw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9i4bcor3bCmUHnFwLkINw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "oGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NnEd2rdWIzQh3lzvczhnrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NnEd2rdWIzQh3lzvczhnrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EuAV7YYByh-A-BiyRlNc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9be6nEEjsc2_ia_Ui8XKOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9be6nEEjsc2_ia_Ui8XKOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "FmYV7YYBO2e_P_QbSA5P"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_CuNkg8IjplIBsYDC3MqZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_CuNkg8IjplIBsYDC3MqZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "fmYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OJQp-pLhhKtUabxqe1o08Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OJQp-pLhhKtUabxqe1o08Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "k2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7I7fZ1n3NXikDC-SAVTDhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7I7fZ1n3NXikDC-SAVTDhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ZWYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CFNczi5jgqdp9YJbvPCa9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CFNczi5jgqdp9YJbvPCa9g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "gGYV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFdYACc4s_4eKR1XWC7l8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fFdYACc4s_4eKR1XWC7l8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "i2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KuDdfusItDSRJVlZWeuIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-KuDdfusItDSRJVlZWeuIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "n2YV7YYBO2e_P_QbRQpV"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014837"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "9uAV7YYByh-A-BiyVFzv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrtGgsej_ZvMvypTCZY9mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JrtGgsej_ZvMvypTCZY9mg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KOAV7YYByh-A-BiyWGBd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YoeXFhmTkr3_l-fmzIYzFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YoeXFhmTkr3_l-fmzIYzFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Q2YV7YYBO2e_P_QbWSCB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJPjpnk4438S9AxhBdL7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJPjpnk4438S9AxhBdL7Og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BmYV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU1r9dRWaA73O7zRX_V2Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DU1r9dRWaA73O7zRX_V2Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xNYV7YYBBkbVtX3nVKlD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h9g7rZTa7cbOgmdfpCroqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h9g7rZTa7cbOgmdfpCroqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-mYV7YYBO2e_P_QbWR0q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SpBP0MEtp9HLwHtyNGRBfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SpBP0MEtp9HLwHtyNGRBfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0OAV7YYByh-A-BiyVFqd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b782ua3hr4B0mzdz6X7qIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b782ua3hr4B0mzdz6X7qIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GGYV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Sz3zcn_jRruHSw5ug1i1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Sz3zcn_jRruHSw5ug1i1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ueAV7YYByh-A-BiyWmE2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sfb50IP_djC3GCW2v6RYMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Sfb50IP_djC3GCW2v6RYMA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Z9YV7YYBBkbVtX3nV7Q-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYYgiy_hJlJmGi14KCzeng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dYYgiy_hJlJmGi14KCzeng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "aNYV7YYBBkbVtX3nV7Q-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z5-B-mtdUNg5G8Toj1uZ9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z5-B-mtdUNg5G8Toj1uZ9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "CGYV7YYBO2e_P_QbWyI8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["shWMJLfbuiijw_CV7zD8MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["shWMJLfbuiijw_CV7zD8MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "3tYV7YYBBkbVtX3nWbXf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q-t0WQ1QPG_465StwGrNQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q-t0WQ1QPG_465StwGrNQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "OGYV7YYBO2e_P_QbWBy9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VhuOZfIjfkTp0PdE7E7l0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VhuOZfIjfkTp0PdE7E7l0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "GWYV7YYBO2e_P_QbWBoF"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014842"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jphq2mADJdPqQSMJRmqCfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "vWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A998Aw2wlvaHmpTDQoJVWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A998Aw2wlvaHmpTDQoJVWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zWYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eYJ3KKpVqQxoShfKUyVbPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eYJ3KKpVqQxoShfKUyVbPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gNYV7YYBBkbVtX3ndcoT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_DergfmxCZYVsT8aG5xQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_DergfmxCZYVsT8aG5xQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0WYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21VADknXj310Vq9ESNjcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["21VADknXj310Vq9ESNjcWw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YmYV7YYBO2e_P_QbaTbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8tq3ImbcqHoL1eNze2XmnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8tq3ImbcqHoL1eNze2XmnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "umYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7izJ-LV-AEcodCtu0-YXBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7izJ-LV-AEcodCtu0-YXBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HNYV7YYBBkbVtX3nasl7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zy8I_mLxkUqRNobY73aLCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2XkIPoT1RGScJv7HcNexyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2XkIPoT1RGScJv7HcNexyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "0GYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_U__gC97iLDLPRg-7bXig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H_U__gC97iLDLPRg-7bXig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "EGYV7YYBO2e_P_Qbczvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h15-mwdtFf1_Tp_C0u_H4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h15-mwdtFf1_Tp_C0u_H4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "uGYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c_YW_y8Erj_86DJCOJ5hiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c_YW_y8Erj_86DJCOJ5hiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "u2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-sR7gULJJ6wMZ9ZddAv4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-sR7gULJJ6wMZ9ZddAv4g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "x2YV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oe_nHyIGjMEfD9kwUevsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oe_nHyIGjMEfD9kwUevsMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "TNYV7YYBBkbVtX3naMf3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["itGspDeyDyUECCgRGfTEng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["itGspDeyDyUECCgRGfTEng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "tmYV7YYBO2e_P_QbaTSA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014848"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JOAV7YYByh-A-Biyg4Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LC6mVf6FPr_kqWjuiJLTRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LC6mVf6FPr_kqWjuiJLTRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gOAV7YYByh-A-BiyhIIL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mM0lZYG8GYmeCMXMbETOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0mM0lZYG8GYmeCMXMbETOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "S2YV7YYBO2e_P_Qbh0uD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OVUJWL9ZnL1p_YLKqzUSFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P-AV7YYByh-A-BiyhIRV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Va3LK8uFodhrLyRtybcuhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "I-AV7YYByh-A-Biyg4Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5hO63TnTaHm6rWDJ9tLlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o5hO63TnTaHm6rWDJ9tLlg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "u2YV7YYBO2e_P_Qbh0lI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LdYV7YYBBkbVtX3nhd1U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CEu7QDQCpna6AMKIewlkmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CEu7QDQCpna6AMKIewlkmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-all", "_id": "cuAV7YYByh-A-BiyhoV2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QIUi7r0lX0T7lggo-V8-5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QIUi7r0lX0T7lggo-V8-5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "l2YV7YYBO2e_P_QbhEb-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vTYOA5_SnOZSwiGON798-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vTYOA5_SnOZSwiGON798-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "6dYV7YYBBkbVtX3nh-MJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n1Ma-6R1TuGNeT2qh3rpLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014854"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n1Ma-6R1TuGNeT2qh3rpLA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "WdYV7YYBBkbVtX3nov24"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZfWmwYaJIIOUGCRBPlr6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZfWmwYaJIIOUGCRBPlr6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BtYV7YYBBkbVtX3no_91"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_cwyhujbNFnjVbOtCoyQwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_cwyhujbNFnjVbOtCoyQwg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "9tYV7YYBBkbVtX3nlvPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OD4R30IpW0nvOt_G6qR8Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014860"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OD4R30IpW0nvOt_G6qR8Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0eAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Pia_VKvNIpcjOrg5PBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0Pia_VKvNIpcjOrg5PBFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1eAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PbvkExxuXir8i2DmyuUgsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PbvkExxuXir8i2DmyuUgsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tWYV7YYBO2e_P_QbuHEg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkZgcPyvanvZxrwD91jJQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NkZgcPyvanvZxrwD91jJQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "N2YV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r1HvPKUhWfo1c_dGIcqb1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "T-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZPTQfDgXmRrvRJctvBjMQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZPTQfDgXmRrvRJctvBjMQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VjZoTTtVYbpedfOtHXez9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VjZoTTtVYbpedfOtHXez9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "V-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0i9UUQjQ7yqS-rcTUC_StQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0i9UUQjQ7yqS-rcTUC_StQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4WYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kIp3c6lhOmVwD-TdMXCwzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kIp3c6lhOmVwD-TdMXCwzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1OAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X27L9SIqnKudu5fjFY2qfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X27L9SIqnKudu5fjFY2qfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JGYV7YYBO2e_P_Qbs23k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9PStVBMpTyifWDjuM_1F9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9PStVBMpTyifWDjuM_1F9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rmYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dUuQ2lSMaZyy3BCVVsDF1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fdcV7YYBBkbVtX3ntRfi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pq-E12uy1vBeK4HeCjUqKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pq-E12uy1vBeK4HeCjUqKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SdcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QjtKZoprzXCLbmVAEEoqNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "zNcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vF_VQLSiCrZAF-ltqCX4Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vF_VQLSiCrZAF-ltqCX4Kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Z9cV7YYBBkbVtX3nsgwF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GqY4_lTSGhEb3OIQFssjmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GqY4_lTSGhEb3OIQFssjmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VtcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3eCfffgWDywlQf98in5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B3eCfffgWDywlQf98in5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4GYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sizNQvpwrsYG1iwjQh48UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "XuAV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oWsHJQGRgZYwHwaOMaB07w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oWsHJQGRgZYwHwaOMaB07w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "rWYV7YYBO2e_P_QbtW5b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jPOL2BCon4p4v0UyqfsXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5jPOL2BCon4p4v0UyqfsXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "1uAV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8eRxSiE_6KOXeGPJZDEAg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "RdcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me0oRgVcR_uBmJ_kCe-VfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["me0oRgVcR_uBmJ_kCe-VfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LGYV7YYBO2e_P_QbtnB5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YLcFpzDQdtlqJCOlCEyl9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YLcFpzDQdtlqJCOlCEyl9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6tcV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3h9kpMSl0a0kJr7xr2rPxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3h9kpMSl0a0kJr7xr2rPxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "y9cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "z9cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MxaBJ5vAlZJbFL1ZFA-tNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MxaBJ5vAlZJbFL1ZFA-tNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "09cV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX6_U4PFMyyAKyc5PyNFEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lX6_U4PFMyyAKyc5PyNFEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VdcV7YYBBkbVtX3nsg5Y"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1m76_MQ1CKkUeXqbKRoHZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1m76_MQ1CKkUeXqbKRoHZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "OGYV7YYBO2e_P_Qbsmir"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9ECosqumaYYOVTFlJRp6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9ECosqumaYYOVTFlJRp6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "gGYV7YYBO2e_P_Qbs2tB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9BGZHTzs6oj_j1YiF-r26w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9BGZHTzs6oj_j1YiF-r26w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YuAV7YYByh-A-BiytqnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IPIMyWIkL5MsP1Bo20O32w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "MOAV7YYByh-A-Biyt6sa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JHoQWviQB3DglItLg3z8Dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JHoQWviQB3DglItLg3z8Dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "59cV7YYBBkbVtX3ntxpc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8UN7adkU7fT1ZBcxBGzmmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8UN7adkU7fT1ZBcxBGzmmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ztcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["niPAiGls6k32DnDasicdew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["niPAiGls6k32DnDasicdew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "itcV7YYBBkbVtX3nuB51"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuDdBF0iwQiPnskDDqWYwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yuDdBF0iwQiPnskDDqWYwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "19cV7YYBBkbVtX3nsw-Q"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x1DopX-Mm-f8qb0DCkjPyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x1DopX-Mm-f8qb0DCkjPyA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "RtcV7YYBBkbVtX3nthkq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_9EUaNCl3IuE7tIxwFYMuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "0dcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMBO6mK2eUEy_2zoVmK7iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XMBO6mK2eUEy_2zoVmK7iw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "W-AV7YYByh-A-BiytKZu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["860tvNw0EZMCDcPC0s5-KA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["860tvNw0EZMCDcPC0s5-KA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "0NcV7YYBBkbVtX3ntxyk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W24Y25ivMwuM7NhKCx2-SQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "1-AV7YYByh-A-Biytaeh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8P7h-qet3p603NxSf5JWTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8P7h-qet3p603NxSf5JWTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "5GYV7YYBO2e_P_Qbsmn3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GDclsv_fsyemmV-JwlFeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0GDclsv_fsyemmV-JwlFeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "idcV7YYBBkbVtX3ntBPF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ASErGV7Ep5Qa_hvKdrg1Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014866"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ASErGV7Ep5Qa_hvKdrg1Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "8GYV7YYBO2e_P_Qbxnew"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CL5weeVaATD-2rEA3Y4f8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CL5weeVaATD-2rEA3Y4f8Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "A9cV7YYBBkbVtX3nxSdX"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vLpK350nikq7KFGmYwazg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vLpK350nikq7KFGmYwazg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wmYV7YYBO2e_P_Qbx3ol"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aq5HJRyvf0tzNYqtMdi3JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Aq5HJRyvf0tzNYqtMdi3JQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "j2YV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EijkmEEZKl52rGWO7h0aXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "EGYV7YYBO2e_P_Qb037f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["avHlGvNfTVzeaAgsVgxB6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["avHlGvNfTVzeaAgsVgxB6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "1NcV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EOO-biRc_oXEIgdrmE3Yfg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "-uAV7YYByh-A-Biyxbvb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x_f2mxVuf-0C8zGyqNgR_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x_f2mxVuf-0C8zGyqNgR_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "H2YV7YYBO2e_P_Qb0XuE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ykMVLYSfkbON4cDYPX_Bug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ykMVLYSfkbON4cDYPX_Bug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GuAV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yY8YFryVNm9WZVvrCSeuww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yY8YFryVNm9WZVvrCSeuww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5tcV7YYBBkbVtX3n0ilU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b656ShIEq9w_RkKDz2WXsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b656ShIEq9w_RkKDz2WXsw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "09cV7YYBBkbVtX3n1C00"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tALP4PSq-pTzVgkPI2BjaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tALP4PSq-pTzVgkPI2BjaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kWYV7YYBO2e_P_QbxXYP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eyk6myVZ88WlljRICe8V4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eyk6myVZ88WlljRICe8V4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "r9cV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EA7jmP4TdABUc9EMMeGdDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EA7jmP4TdABUc9EMMeGdDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sNcV7YYBBkbVtX3nxil1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mkFUdRqA_r18Eg2eao8QGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mkFUdRqA_r18Eg2eao8QGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZdcV7YYBBkbVtX3n0iyh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TVIGjcT1LXA0y6eT2GUjVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TVIGjcT1LXA0y6eT2GUjVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nWYV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHKEygcq3rVrnRHn0tQvCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UHKEygcq3rVrnRHn0tQvCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "n2YV7YYBO2e_P_Qb0nzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1deqhHF4DdD8sVl-g6p7dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1deqhHF4DdD8sVl-g6p7dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "YOAV7YYByh-A-Biy08WI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4KnU6IH3mkqGAC1cm7wZtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4KnU6IH3mkqGAC1cm7wZtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "G-AV7YYByh-A-Biy0sIJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eEjs7_9575hZerEBB52yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014872"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eEjs7_9575hZerEBB52yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "K-AV7YYByh-A-Biy4tjs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXgAgM2hMcqzn0fnoAoP0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "seAV7YYByh-A-Biy49n9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h3J3yP8dE1Gp9C8Y2fBhOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["h3J3yP8dE1Gp9C8Y2fBhOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Z9cV7YYBBkbVtX3n5EbR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Iji_zQRXoBblaoaKwHTcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-GYV7YYBO2e_P_Qb5ooi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S-j_I9z7LfR6_TFzt2st2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S-j_I9z7LfR6_TFzt2st2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "h2YV7YYBO2e_P_Qb5Ymt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5c1QuSeaLbMocVTvYRIwcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5c1QuSeaLbMocVTvYRIwcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "suAV7YYByh-A-Biy49n9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7xwMOd4RJ8Ot1XrcX4r_8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7xwMOd4RJ8Ot1XrcX4r_8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TNcV7YYBBkbVtX3n5UgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "X-AV7YYByh-A-Biy4dNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rFs-0q-mW95c43NFrT9uBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014878"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rFs-0q-mW95c43NFrT9uBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "_OAW7YYByh-A-BiyAekA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVsUuzDWhnoUag5GJcXYzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JVsUuzDWhnoUag5GJcXYzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8NcW7YYBBkbVtX3nAFa0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["peEoWSsNziqM-hGC6EpouA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["peEoWSsNziqM-hGC6EpouA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KGYW7YYBO2e_P_QbAabd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NxGiaShnOfbsdncn_w2-8w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "muAW7YYByh-A-BiyAuya"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqiKGqkA5IoNaeD9flVx0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fqiKGqkA5IoNaeD9flVx0Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FmYW7YYBO2e_P_QbA6id"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrB5T-9pXds_Mi6uJBhFEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DrB5T-9pXds_Mi6uJBhFEQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sOAW7YYByh-A-BiyBPC2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fdt-C6H2QksCac6R9wTd_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fdt-C6H2QksCac6R9wTd_w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kuAW7YYByh-A-BiyBfKz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8y9d1sq41lKVZ2hOEtOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a8y9d1sq41lKVZ2hOEtOWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-all", "_id": "U2YW7YYBO2e_P_QbBawR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0k6wELJt8HNaoJlSxjp1OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0k6wELJt8HNaoJlSxjp1OQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "ytcW7YYBBkbVtX3nBF4I"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cdhfW3Az6hl2kyXX_PlbPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "641828620625480"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014884"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cdhfW3Az6hl2kyXX_PlbPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "641828620625480"} {"create": {"_index": "profiling-events-all", "_id": "8GYW7YYBO2e_P_QbELUW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k2c8JznJ4XJJ2wtl1jvs7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k2c8JznJ4XJJ2wtl1jvs7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cOEW7YYByh-A-BiyEwXO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x7E_WMpPyNR6UoR6jD_ztQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZWYW7YYBO2e_P_QbE72B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0WY9BQOdRjXYQkYwkFdgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0WY9BQOdRjXYQkYwkFdgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "72YW7YYBO2e_P_QbELUW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kOAW7YYByh-A-BiyEf7z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0mdBgw13J_O1CukthEqMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P0mdBgw13J_O1CukthEqMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "kdcW7YYBBkbVtX3nFmxw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4_rg67KP9ZbtiP0CeHeyFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4_rg67KP9ZbtiP0CeHeyFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "BdcW7YYBBkbVtX3nFGcu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QvlUdkP4T0hZxSt3gSdllg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QvlUdkP4T0hZxSt3gSdllg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "IGYW7YYBO2e_P_QbFcGw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QWHewGzkmPtQ4MCGkNndoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QWHewGzkmPtQ4MCGkNndoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "9NcW7YYBBkbVtX3nEGNk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RXKJU69zgwLTvkyKxffdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6RXKJU69zgwLTvkyKxffdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "K2YW7YYBO2e_P_QbELiv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3ORtBaUkgpJHtPNW2d8ZAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3ORtBaUkgpJHtPNW2d8ZAQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-BiyEwMv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FxTaDizS0-OeBLILGTyzyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FxTaDizS0-OeBLILGTyzyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "G-EW7YYByh-A-BiyFQcS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014890"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "RdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m4xUM11zLI-btfCgwf6IbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m4xUM11zLI-btfCgwf6IbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "69cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mdeRbDX2AaZ19IQrZUW2Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mdeRbDX2AaZ19IQrZUW2Vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CROrpVXcmXQOxuX7oY29og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CROrpVXcmXQOxuX7oY29og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6tcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RWz2cEGgcNrcd3eaLVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["b2RWz2cEGgcNrcd3eaLVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hp7nnrgj4rg9PepT5KvZxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hp7nnrgj4rg9PepT5KvZxg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ENcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hsZRqI3yAbmj0WUJqK3N6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hsZRqI3yAbmj0WUJqK3N6Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDjdfIDXYeKpMzfOZsKweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qDjdfIDXYeKpMzfOZsKweg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UeEW7YYByh-A-BiyIhPk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kl-ygAMUUp50SfchyrhbRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Kl-ygAMUUp50SfchyrhbRg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "O9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NiVW0V5NwxAo0iHOds4ZXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NiVW0V5NwxAo0iHOds4ZXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "SNcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ADkra47La3HpwdD_ixkQqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ADkra47La3HpwdD_ixkQqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "SdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrKlAuh0mNP-abBix0Hafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrKlAuh0mNP-abBix0Hafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pN5IOT_VxO3_wUIBhsiEIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pN5IOT_VxO3_wUIBhsiEIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7fLjmESQgzutRqqKhKAIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9NcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bI0z5pYH2KJIm4IMFjDYGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bI0z5pYH2KJIm4IMFjDYGQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "-dcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cG6xy387-SzKYkUtR_Jn3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cG6xy387-SzKYkUtR_Jn3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "AtcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VcxRLLsRsRxgG1o3M1zeCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VcxRLLsRsRxgG1o3M1zeCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "SdcW7YYBBkbVtX3nJn4S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QhuAxDp-mAXxSlQCTHCDJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QhuAxDp-mAXxSlQCTHCDJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "49cW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iwupaAsbz59XDygi08k4AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iwupaAsbz59XDygi08k4AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "7dcW7YYBBkbVtX3nJHi9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ldIz4_ZIf6SyO1TJCB_KFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ldIz4_ZIf6SyO1TJCB_KFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "-tcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9tg9pzqKdnfA2ABqB6tHtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9tg9pzqKdnfA2ABqB6tHtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "AdcW7YYBBkbVtX3nJXsP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mzoBdlEKKFJr7cg7JTbkCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mzoBdlEKKFJr7cg7JTbkCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "TdcW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jR2WafQ5aT4KiR_9VxLM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jR2WafQ5aT4KiR_9VxLM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "S9cW7YYBBkbVtX3nI3eQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xricnf20K4kRE1JxfxLKUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xricnf20K4kRE1JxfxLKUA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "9tcW7YYBBkbVtX3nJXoP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TliOfrc4IBAVNwcIQStW3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TliOfrc4IBAVNwcIQStW3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "aeEW7YYByh-A-BiyJRZt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3uWWKodcRyYR91PnFWenuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014895"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3uWWKodcRyYR91PnFWenuQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "MtcW7YYBBkbVtX3nQItF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sdYsXSOFq3ZV5V3ZTd5OZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sdYsXSOFq3ZV5V3ZTd5OZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "M9cW7YYBBkbVtX3nQItF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CROrpVXcmXQOxuX7oY29og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CROrpVXcmXQOxuX7oY29og"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "edcW7YYBBkbVtX3nQYxi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AePsFsEWIAKcD6i5fTcKwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8eEW7YYByh-A-BiyQCi1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hz7cJPgHH18BeBTdm_DtkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hz7cJPgHH18BeBTdm_DtkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "562164997202330"} {"create": {"_index": "profiling-events-all", "_id": "8uEW7YYByh-A-BiyQy5a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WL6Cc06d288zx9ELZZqz5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WL6Cc06d288zx9ELZZqz5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aWYW7YYBO2e_P_QbROQw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-FgHfu9tQhYTgpwF5irr9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-FgHfu9tQhYTgpwF5irr9w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "sGYW7YYBO2e_P_QbP-Dm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7uqXjdMn8cKJH0c7LBBRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["s7uqXjdMn8cKJH0c7LBBRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "3NcW7YYBBkbVtX3nQo0Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VjM0wOnf3jCPBA8dcfHmfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VjM0wOnf3jCPBA8dcfHmfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "x-EW7YYByh-A-BiyQitl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4lcZDimr4HL3ZJBoS4zaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r4lcZDimr4HL3ZJBoS4zaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "uOEW7YYByh-A-BiyRDN8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZVHdt4rRKbUdxnZTJm-T_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014901"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZVHdt4rRKbUdxnZTJm-T_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "X2YW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TSyLQAdR8wymfWchXZ62Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TSyLQAdR8wymfWchXZ62Ew"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6tcW7YYBBkbVtX3nTpOO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FPsM-hxiPAxa6Tn5oevNoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FPsM-hxiPAxa6Tn5oevNoQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "teEW7YYByh-A-BiyTzvE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M3p5yPCVtJT8g9hbQp71SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["M3p5yPCVtJT8g9hbQp71SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZmYW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ujmw3KBSZEY5_4s7Myq2pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ujmw3KBSZEY5_4s7Myq2pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cNcW7YYBBkbVtX3nUpqO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OmeWJ7pAymYhWRrAnd1xrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OmeWJ7pAymYhWRrAnd1xrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CtcW7YYBBkbVtX3nU5wV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDMn1VGkg3lC6D8rQjVrvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wDMn1VGkg3lC6D8rQjVrvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6dcW7YYBBkbVtX3nTpOO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUhFzDZcHwff0_YJWeg6vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aUhFzDZcHwff0_YJWeg6vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BuEW7YYByh-A-BiyUkAI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XpxK_Q-DP0fSfpiLzuOV7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "KmYW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fphxs_kpB5neRcVNyqbyvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fphxs_kpB5neRcVNyqbyvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "LGYW7YYBO2e_P_QbUvPO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yGIeKLHM9G7RRknI-piiTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yGIeKLHM9G7RRknI-piiTA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "gWYW7YYBO2e_P_QbU_aU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["weC-mDxEvnrRd8m5lrSC_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["weC-mDxEvnrRd8m5lrSC_g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "x9cW7YYBBkbVtX3nTpXo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oF-wY_acT328qrZ3ugnkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oF-wY_acT328qrZ3ugnkzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xtcW7YYBBkbVtX3nTpXo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5dotPkeOMgRPYfdERquW0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5dotPkeOMgRPYfdERquW0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SGYW7YYBO2e_P_QbT-o1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "Y2YW7YYBO2e_P_QbUvBL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QicAohYElZnDluXcclQ5ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QicAohYElZnDluXcclQ5ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "btcW7YYBBkbVtX3nU53R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-BiyTzvE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["18dt2YlDI5SQuyr5uDM2hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["18dt2YlDI5SQuyr5uDM2hg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "_2YW7YYBO2e_P_QbU_RV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zWnar1cv2OPLTAmuUX5okA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zWnar1cv2OPLTAmuUX5okA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "8GYW7YYBO2e_P_QbVPdI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XGi0gq3X0lbtkz60bv_FjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014906"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XGi0gq3X0lbtkz60bv_FjA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "nWcW7YYBO2e_P_QbYAGS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gmcW7YYBO2e_P_QbYwYk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sb2Ufhkj-HCEBpI7dzePDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014911"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sb2Ufhkj-HCEBpI7dzePDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "5OEW7YYByh-A-Biycli0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UuDeBu8oU2omluou-0a1Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UuDeBu8oU2omluou-0a1Ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "q-EW7YYByh-A-BiyfmHu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["462hK3NQJ12J9biGtouuGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["462hK3NQJ12J9biGtouuGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "FOEW7YYByh-A-Biyf2M6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlesHQMkaxUDV_hg8gFhww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlesHQMkaxUDV_hg8gFhww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WuEW7YYByh-A-Biyc1w8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8m9XmKLa72WdntoQwSY0tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8m9XmKLa72WdntoQwSY0tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "jGcW7YYBO2e_P_QbgBWH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NCSbO-OFxqpqVTMmflnoIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NCSbO-OFxqpqVTMmflnoIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "reEW7YYByh-A-BiyfV6p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RmHwYLknd0bV48qFH9eQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RmHwYLknd0bV48qFH9eQ6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ptcW7YYBBkbVtX3nfrpi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GG0F2L0nSA_B6ZW5v6LB3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GG0F2L0nSA_B6ZW5v6LB3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "168532957631583"} {"create": {"_index": "profiling-events-all", "_id": "p9cW7YYBBkbVtX3nfrpi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAkV_97hJaROs8HKSG_NUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DAkV_97hJaROs8HKSG_NUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "l-EW7YYByh-A-Biyf2R6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPqqmDZLLGF6_pzrJ1s5lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sPqqmDZLLGF6_pzrJ1s5lA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "DdcW7YYBBkbVtX3ncrd2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014916"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "ROEW7YYByh-A-BiykHvM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wJMcWNAb5ql2fkVg8DVb0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wJMcWNAb5ql2fkVg8DVb0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EGcW7YYBO2e_P_QbkCRr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o7jkJLtD4xHchcLgzNuuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-o7jkJLtD4xHchcLgzNuuA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "6GcW7YYBO2e_P_QbjR7F"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["K8gQh5zdfmwr_L8d6j_v5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vGcW7YYBO2e_P_QbjiAN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g4J6Jl239ZcoU2ZSj7-fag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g4J6Jl239ZcoU2ZSj7-fag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "09cW7YYBBkbVtX3nksnh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IzpuUVv759Abltk8UjLULQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IzpuUVv759Abltk8UjLULQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ZWcW7YYBO2e_P_QbjiKj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IkFQJGH6hdklKpjmMwHToQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IkFQJGH6hdklKpjmMwHToQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "seEW7YYByh-A-BiyjXFu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ay1JvUpYidc_jtVVQh5xJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "sOEW7YYByh-A-BiyjXFu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kpyhs2kTFJc98nncsIEGzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kpyhs2kTFJc98nncsIEGzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "52cW7YYBO2e_P_QbjR7F"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6uN-YY_i1gvVmqACLDXQMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "_eEW7YYByh-A-BiyknyA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fLHZEyltMzzscfMhon-Tzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fLHZEyltMzzscfMhon-Tzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "uNcW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MqCIDPuPM-mrPy2Wr4E0pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MqCIDPuPM-mrPy2Wr4E0pg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "utcW7YYBBkbVtX3nk8tE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6XkFhPi9lM3BiwzJEIoaIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "uWcW7YYBO2e_P_QbkymJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "FNcW7YYBBkbVtX3nk83N"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6yoC5MEhf-Plh-uBAaDFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "DuEW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RM52I8qJK_HFvsZhTonctg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "D-EW7YYByh-A-BiyjXAa"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014921"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["A37WFlc27IDax1__xu-KJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "JNcW7YYBBkbVtX3noNM2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4pxTtEE_f9QsF_FY1lgc-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4pxTtEE_f9QsF_FY1lgc-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eXATor8dtVm3LPIO_GNaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eXATor8dtVm3LPIO_GNaZA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kdcW7YYBBkbVtX3nodQJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NRT6b-EmSsUKrT0-0ibcag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0dcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "52cW7YYBO2e_P_Qbojgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z8goRTVMaTzMkIP86WRVRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z8goRTVMaTzMkIP86WRVRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "lmcW7YYBO2e_P_QbnjHj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E2cW7YYBO2e_P_QbnzMm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn2EpQqWCVem8DknXDkNXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cn2EpQqWCVem8DknXDkNXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "G-EW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0NFUe2QgjtWEWYDSLMm1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p0NFUe2QgjtWEWYDSLMm1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "mmcW7YYBO2e_P_QbnzSu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UwSPv3v3mJV5n8bvEwP9ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UwSPv3v3mJV5n8bvEwP9ww"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "F2cW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ade_-rYDOOWEqYEPYyknBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ade_-rYDOOWEqYEPYyknBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "GWcW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E518XUc1CtUggz7KTKp7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["E518XUc1CtUggz7KTKp7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "G2cW7YYBO2e_P_QboDaE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rtLWsf0bQDHrSMWDW9YU3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "WdcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3zYROBVu24JPj2x-xW0ysA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3zYROBVu24JPj2x-xW0ysA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "WtcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uqwRXN4Yq9WZrlMPcUG5Yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uqwRXN4Yq9WZrlMPcUG5Yg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "0NcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dKz6wRYxk5b-EmykX6Tcqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dKz6wRYxk5b-EmykX6Tcqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "xmcW7YYBO2e_P_QbrDqK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xgi2WyDfYTM06WuIqjfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3Xgi2WyDfYTM06WuIqjfkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "gtcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FjtKztgbAQPS6bJqFyRkYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "hNcW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g7rfCmzBd1WanveypHmAqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g7rfCmzBd1WanveypHmAqA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "8dcW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W0j_klLnHW1yyhF4U8DXiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W0j_klLnHW1yyhF4U8DXiA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "VtcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["43Mh5txMzJNoI6svI0SbQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["43Mh5txMzJNoI6svI0SbQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WNcW7YYBBkbVtX3noddV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6dB94SEYMjCukJ9TS8bDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N6dB94SEYMjCukJ9TS8bDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ztcW7YYBBkbVtX3nodjp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPeOIoXE8SwG5uuXQoAI6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OPeOIoXE8SwG5uuXQoAI6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "g9cW7YYBBkbVtX3nrNrT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LcYkQAM-vgmPtnOsNMORSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LcYkQAM-vgmPtnOsNMORSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "89cW7YYBBkbVtX3nrdtn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7irlEx7CVauqLLMLkiu9aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7irlEx7CVauqLLMLkiu9aA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "GOEW7YYByh-A-Biyn4hj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q7XAR2zqlv3Nkd1rHK-fsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q7XAR2zqlv3Nkd1rHK-fsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "n2cW7YYBO2e_P_QboDfC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014927"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "FmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ssUCcghlPpbufn_FI7lhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5ssUCcghlPpbufn_FI7lhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7HYxR39MOi2F5s3SuKENw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7HYxR39MOi2F5s3SuKENw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B-EW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6VlRZTvCAGEjKAJI9WErGg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "E2cW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QB20QHI7TlFL4JvuFhH_6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QB20QHI7TlFL4JvuFhH_6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-uEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Nu4JYvGvXl5CW_RB7l_vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0Nu4JYvGvXl5CW_RB7l_vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "_-EW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUICzvay5gqiM1JCIDYjDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NUICzvay5gqiM1JCIDYjDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "BOEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vSsOv3oIeGq1jnkLewmKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-vSsOv3oIeGq1jnkLewmKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "8OEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NWTYSV7vGDryRONnCUqo1A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "c2cW7YYBO2e_P_QbvEm2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q67ZvLIlucofkIvus5w-GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["q67ZvLIlucofkIvus5w-GQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gq5ri62azb2HgYO44ajr9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gq5ri62azb2HgYO44ajr9Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FGcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XxoiLx9HpNbK-YWzICyumQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XxoiLx9HpNbK-YWzICyumQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "f-EW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7ofbCHl8qRy2q41G8_s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e7ofbCHl8qRy2q41G8_s7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BeEW7YYByh-A-Biyspsk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yTAi1Yo0NZNgWpXZUjzOrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yTAi1Yo0NZNgWpXZUjzOrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "XeEW7YYByh-A-BiywKYJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XL31E2Uzdrei76bGcaLiXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XL31E2Uzdrei76bGcaLiXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "BmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-xXoA0lL9IYRJcrTwtAWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g-xXoA0lL9IYRJcrTwtAWA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "gOEW7YYByh-A-BiyvqKW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vQXtdmIzgIVlhx1gewz_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vQXtdmIzgIVlhx1gewz_RA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} {"create": {"_index": "profiling-events-all", "_id": "8eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5bQcQ0KEBggKnhUPDGb0jQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "pdcW7YYBBkbVtX3nv-hH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZ5KGLHdU9j4VxTqgQfhhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bZ5KGLHdU9j4VxTqgQfhhg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "-eEW7YYByh-A-Biyspok"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6LMgC_pj236jbZulsolnmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "CmcW7YYBO2e_P_QbvkxZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg3TaXRMJTka-oF2wrTuxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg3TaXRMJTka-oF2wrTuxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-all", "_id": "fGcW7YYBO2e_P_Qbvk3S"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECM4wduGn2SgkCpNnIpPqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014932"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ECM4wduGn2SgkCpNnIpPqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741865085146651"} {"create": {"_index": "profiling-events-all", "_id": "7NcW7YYBBkbVtX3nzPOJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ii5fUg--kGCwh43V7vfk4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ii5fUg--kGCwh43V7vfk4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xeEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nd9rMkTYCiObUWdQEYWSwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Nd9rMkTYCiObUWdQEYWSwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_Qb0Fc4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ri5pW0t6s5lXro7RV78vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2Ri5pW0t6s5lXro7RV78vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B9cW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_BHWrMWBlVU6-0DD2Kvl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "muEW7YYByh-A-Biyz7fk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zk1KOzfHoLWnIpBzzSfmpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zk1KOzfHoLWnIpBzzSfmpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DeEW7YYByh-A-BiyzK0R"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1dmpJ55uvZdOMq_7dLN78g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1dmpJ55uvZdOMq_7dLN78g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oFFMBClb7YDKbss0-D49Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oFFMBClb7YDKbss0-D49Bg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GmcW7YYBO2e_P_QbzVOk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lXS9jaakohlJ8WgrZlMjbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lXS9jaakohlJ8WgrZlMjbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "itcW7YYBBkbVtX3nzfVn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RtFA4NAxhPCgHCcZm471A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0RtFA4NAxhPCgHCcZm471A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MOEW7YYByh-A-BiyzrNj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tvUUMUcodTkJ0m6RggT6bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tvUUMUcodTkJ0m6RggT6bA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "GeEW7YYByh-A-BiyzbAL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MDX9xkXZ6YV1jVI86ZVY2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MDX9xkXZ6YV1jVI86ZVY2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "neEW7YYByh-A-BiyzK7K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-ggHg8zNX_Qs55mykGTE7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-ggHg8zNX_Qs55mykGTE7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "556968501734974"} {"create": {"_index": "profiling-events-all", "_id": "CdcW7YYBBkbVtX3nz_cq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CBlNVd4rPCO2FdA0l90MKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CBlNVd4rPCO2FdA0l90MKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "iNcW7YYBBkbVtX3nzfVn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p5nXo4mBd3u0s_59PDRZvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["p5nXo4mBd3u0s_59PDRZvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "L-EW7YYByh-A-BiyzrNj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["idsijnsI-3EEcw8J1DhUvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["idsijnsI-3EEcw8J1DhUvg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "D-EW7YYByh-A-Biy0Llz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W1X66sQmZo7R_inBU4PeQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["W1X66sQmZo7R_inBU4PeQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "y-EW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhCENzeJsRypXPr7NLjqVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mhCENzeJsRypXPr7NLjqVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "lmcW7YYBO2e_P_QbzFFQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9ROJ1260u7kvs85ZsQXWJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9ROJ1260u7kvs85ZsQXWJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "GGcW7YYBO2e_P_QbzVOk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgbYFeQR5UbL1ILQeJXsrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hgbYFeQR5UbL1ILQeJXsrg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "yOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S05AC4-RVY5vRimCgolcQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S05AC4-RVY5vRimCgolcQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "mGcW7YYBO2e_P_QbzFFQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nV3Fn_RzzKrNcUUuAsluvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nV3Fn_RzzKrNcUUuAsluvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "zOEW7YYByh-A-BiyzbHq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcg4yzcU6w_vTsKTk-8RpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcg4yzcU6w_vTsKTk-8RpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "omcW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29tkR1iuog5-kDCdzfxqQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["29tkR1iuog5-kDCdzfxqQw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "o2cW7YYBO2e_P_QbzlQs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVLBSGTuYWH3O356lNUySg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014938"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VVLBSGTuYWH3O356lNUySg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "g-EW7YYByh-A-Biy3cBp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dC0hqK0ytFANzaVY5y-X0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dC0hqK0ytFANzaVY5y-X0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "A2cW7YYBO2e_P_Qb6mbH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FrtmF-TX0N6XSfQgrjNNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FrtmF-TX0N6XSfQgrjNNSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "otgW7YYBBkbVtX3n4AeL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LU5M-Y2vAZAPnKMCmcDaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LU5M-Y2vAZAPnKMCmcDaJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "313646706170047"} {"create": {"_index": "profiling-events-all", "_id": "u2cW7YYBO2e_P_Qb3WD9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BNgW7YYBBkbVtX3n4AZK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vvJfyuw2NkjY_OhqTi4dyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vvJfyuw2NkjY_OhqTi4dyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "3tgW7YYBBkbVtX3n3QKs"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t3YPrWrDzJFDnReQ7K0ZIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t3YPrWrDzJFDnReQ7K0ZIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "O-EW7YYByh-A-Biy3sKF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GUmcuPH6_akbAJCgr_HMZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GUmcuPH6_akbAJCgr_HMZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "SdgW7YYBBkbVtX3n3wQf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RCyrcGCWUG81ALfuR1iT2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RCyrcGCWUG81ALfuR1iT2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "BGcW7YYBO2e_P_Qb6mbH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e3lcOyxzIAx9GClHCrbUDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e3lcOyxzIAx9GClHCrbUDA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ReEW7YYByh-A-Biy6seD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uc3rxkKkk8AS6xhrVwHG8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uc3rxkKkk8AS6xhrVwHG8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "hWcW7YYBO2e_P_Qb3F3b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnYjvsg56TcxE6xD0wQ5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014943"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnYjvsg56TcxE6xD0wQ5qA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "RmcW7YYBO2e_P_Qb-nVZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQfdRiN_i6nsUpr-osGkTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HQfdRiN_i6nsUpr-osGkTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "CtgW7YYBBkbVtX3n_BuV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z2emazyAu13iRamH5lmUoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z2emazyAu13iRamH5lmUoA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "g-EW7YYByh-A-Biy-9YK"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBpdnhabztGdbOuXyBjkeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DBpdnhabztGdbOuXyBjkeg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "vuEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbxQOwOeVRIDcuzZmln_AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JbxQOwOeVRIDcuzZmln_AQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BtgW7YYBBkbVtX3n-xhN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lGYnfjmvwXki2C5OKuIGdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lGYnfjmvwXki2C5OKuIGdg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i9gW7YYBBkbVtX3n_Blb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uTJCeaCRI3Z-859bdSx3XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uTJCeaCRI3Z-859bdSx3XQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "t-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9CvZpABHsErJ2oaka4jO4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9CvZpABHsErJ2oaka4jO4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "DeEW7YYByh-A-Biy_Nwe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1RCMO4Rht0Tyq-ucg22Gag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1RCMO4Rht0Tyq-ucg22Gag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "y-EW7YYByh-A-Biy_N3T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "LNgW7YYBBkbVtX3n_R7G"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Hq3X6R0xZFl8IPGx4UbCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1Hq3X6R0xZFl8IPGx4UbCQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "XOEW7YYByh-A-Biy-9rd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["J6yDhkd9T90hDGIK4K7YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "vOEW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xdSUu7a3b1m64nGHPCzjtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xdSUu7a3b1m64nGHPCzjtQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ldgW7YYBBkbVtX3n_RyM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "v-EW7YYByh-A-Biy_t8M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDgwhZo9YDrEqaVRvCqKvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014949"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SDgwhZo9YDrEqaVRvCqKvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "x-EX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GITcXcM5OZJEsFYPj2RnOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GITcXcM5OZJEsFYPj2RnOg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "iuEX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sodrqLHefNrUwN3yDuu-2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sodrqLHefNrUwN3yDuu-2Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "wNgX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XxgF8S8zcb8A1_Ecius1nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XxgF8S8zcb8A1_Ecius1nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AuEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["El5SJjgC1dQRf1W23p8Oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["El5SJjgC1dQRf1W23p8Oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BOEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PCWzQZLMSEDq6jgDAbtbDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PCWzQZLMSEDq6jgDAbtbDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "UtgX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xe-mgxEb6Ktl0FGwLrD9QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Xe-mgxEb6Ktl0FGwLrD9QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "i-EX7YYByh-A-BiyC-Nk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MRbhvMfZ_M5nO9oLscAerQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MRbhvMfZ_M5nO9oLscAerQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BuEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7tyayDV_vQllSdORuTrY9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7tyayDV_vQllSdORuTrY9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tmcX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YOEX7YYByh-A-BiyDev8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cA8SM2W7SPYEpBx-8uBa1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "o-EX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKsocjlsvM68oICIvKxy7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKsocjlsvM68oICIvKxy7A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "v9gX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19wmIvUZK4UmSOptZH3T1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["19wmIvUZK4UmSOptZH3T1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "NGcX7YYBO2e_P_QbCoY2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r5Qk0y0lu82qLRvIh-Mz7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["r5Qk0y0lu82qLRvIh-Mz7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "T9gX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["78TuS6LlqqCJkHSW5a7paQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["78TuS6LlqqCJkHSW5a7paQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "J2cX7YYBO2e_P_QbC4mb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6FS78rLcwklRcuuvZdYp0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6FS78rLcwklRcuuvZdYp0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "t2cX7YYBO2e_P_QbDIuZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QuzNOG3t4OkPYTKYBPqKPQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "FGcX7YYBO2e_P_QbDI3K"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "kGcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BlQOTBVYBirJP-nXExTkPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BlQOTBVYBirJP-nXExTkPA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6GcX7YYBO2e_P_QbDY8s"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgA2e1jJZcOpDqcyIoAQmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgA2e1jJZcOpDqcyIoAQmA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6-EX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XXVig9Ie3HmFHZwzuss1kg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "peEX7YYByh-A-BiyDuyF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dkCDIssAAuuJOY5L9uP-Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dkCDIssAAuuJOY5L9uP-Lw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "MGcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vurXS1ra6ryPwSCr6lehBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vurXS1ra6ryPwSCr6lehBw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "u9gX7YYBBkbVtX3nCSH9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WRL9yLuHTV7ynk4o7WuvDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WRL9yLuHTV7ynk4o7WuvDw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "U9gX7YYBBkbVtX3nCiNo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["84RiA4pbVL7KMlDvnXnbFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "32cX7YYBO2e_P_QbCoef"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZcpIqjO8GbOGxvXYAifsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZcpIqjO8GbOGxvXYAifsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "RuEX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["77WALZLy-UdbTovdy-aeKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["77WALZLy-UdbTovdy-aeKQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "R-EX7YYByh-A-BiyCuLc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZpiULf3cc4PAnQBQeWnmvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZpiULf3cc4PAnQBQeWnmvQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "xuEX7YYByh-A-BiyC-Tq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0427nwt0KroQkvwzA7egA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G0427nwt0KroQkvwzA7egA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "f2cX7YYBO2e_P_QbDIov"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T9ahUsDV5TPFP3kZTiNCSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T9ahUsDV5TPFP3kZTiNCSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "BeEX7YYByh-A-BiyDOZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B5zce_f4N45Itu5RhOF9CQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "dOEX7YYByh-A-BiyDedc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["11Tl3YbjvipxnomXbH8dow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["11Tl3YbjvipxnomXbH8dow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5-EX7YYByh-A-BiyDemY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcHz46TjNV4prWC1qZE-6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["bcHz46TjNV4prWC1qZE-6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "MmcX7YYBO2e_P_QbDZHL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5CUA13BfSKgPE5R1fmHh5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5CUA13BfSKgPE5R1fmHh5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "jWcX7YYBO2e_P_QbDI78"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014955"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["OFdK4mvMOorRf1NaABBLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "w2cX7YYBO2e_P_QbHpyj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJhw6TGulS2g4dgLha_6Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JJhw6TGulS2g4dgLha_6Fw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KtgX7YYBBkbVtX3nHTPi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WGcX7YYBO2e_P_QbHJmW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2m3Q7K61sMG8WQrx7RXxxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2m3Q7K61sMG8WQrx7RXxxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m89QqjE-qUNSc3kuFiQzbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m89QqjE-qUNSc3kuFiQzbA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pGcX7YYBO2e_P_QbHp7f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YC25zlLJYeBTwotVPhLafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YC25zlLJYeBTwotVPhLafg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yuEX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EwRlWIvafZgNvSviLLBxdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EwRlWIvafZgNvSviLLBxdw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "YuEX7YYByh-A-BiyKftS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BuZCvHOLrtMxpNr2RzKFfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BuZCvHOLrtMxpNr2RzKFfA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "w-EX7YYByh-A-BiyHfVe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY70RGM6lV3NgAwSeTX8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014959"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY70RGM6lV3NgAwSeTX8Tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "f-IX7YYByh-A-BiyOAGi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5DxLQCjm2m1lyk1iyQve0g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "geIX7YYByh-A-BiyOAGi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jKJw7MgwzsyLy5Y5-ZGSMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hmcX7YYBO2e_P_QbOrtJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["puIsGFT9D9ie7OaAMWkigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["puIsGFT9D9ie7OaAMWkigA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YtgX7YYBBkbVtX3nO0KT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlUPq402XAoMqzEe9Lt4Rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TlUPq402XAoMqzEe9Lt4Rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9uIX7YYByh-A-BiyOALn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_59QHFa1Rqj5C5mCwepbVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_59QHFa1Rqj5C5mCwepbVQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "QuIX7YYByh-A-BiyOQRi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RyXi5_2LXUkPg6q5AxjLZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RyXi5_2LXUkPg6q5AxjLZw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "O9gX7YYBBkbVtX3nPEVT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7QawPKHJF79qrjka8nzLbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7QawPKHJF79qrjka8nzLbQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "y9gX7YYBBkbVtX3nPEMb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E99aSr-SRhrdHQrfS71Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7E99aSr-SRhrdHQrfS71Qg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "uGcX7YYBO2e_P_QbOr_Z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "P-IX7YYByh-A-BiyPQgM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRNWgj9ADC9F-xKz9gBTGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GRNWgj9ADC9F-xKz9gBTGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "IuIX7YYByh-A-BiyPQuP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPbfHhT749ZR1t85wslN0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GPbfHhT749ZR1t85wslN0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AWcX7YYBO2e_P_QbObof"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GWuZD3Bv-Fozl4N5Yzi5dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GWuZD3Bv-Fozl4N5Yzi5dw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "3eIX7YYByh-A-BiyPAaT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfU3KGa4jQE4GKP8Psa9ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FfU3KGa4jQE4GKP8Psa9ng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "qNgX7YYBBkbVtX3nOj0O"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MVipWFhXPDISxsBT7IZfCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MVipWFhXPDISxsBT7IZfCw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "t-IX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgBnLrnFQyEiB71eITD44g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AgBnLrnFQyEiB71eITD44g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ueIX7YYByh-A-BiyPQlQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oTHLMe0BewCEp798WVpJtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oTHLMe0BewCEp798WVpJtg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "3uIX7YYByh-A-BiyPAaT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZ8clAp9paL9k-C90WPkIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aZ8clAp9paL9k-C90WPkIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "UGcX7YYBO2e_P_QbOr2M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014964"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qkp5EyZaH9EKC1Tx2EnCYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "C-IX7YYByh-A-BiyTBo1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXipnObSe0dCYjfUl0jbxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DXipnObSe0dCYjfUl0jbxA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "SWcX7YYBO2e_P_QbScVi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hYfhfJkQW17kyXXXeL8OrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hYfhfJkQW17kyXXXeL8OrQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "F2cX7YYBO2e_P_QbS8o-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gBMo3RNl4xbFgjyE8KLEeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gBMo3RNl4xbFgjyE8KLEeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "l-IX7YYByh-A-BiySRIf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg46hsyTTfWnv4qsLCjw3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Yg46hsyTTfWnv4qsLCjw3Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dGcX7YYBO2e_P_QbTdFC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lSo6n255V9zP1aYcLPpfmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lSo6n255V9zP1aYcLPpfmQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "COIX7YYByh-A-BiySRTi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pCi6Bn9hgoUvfDY9KWDh-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pCi6Bn9hgoUvfDY9KWDh-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "nGcX7YYBO2e_P_QbSsgn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DajmKOxs5mZzvp3q0vIZRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DajmKOxs5mZzvp3q0vIZRw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "D-IX7YYByh-A-BiyShe9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzlp5KSh-SCscA1-K9srWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fzlp5KSh-SCscA1-K9srWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FOIX7YYByh-A-BiyTBx8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-PPbP4nOCiClHW7_KYwMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y-PPbP4nOCiClHW7_KYwMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JdgX7YYBBkbVtX3nTU6_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NeIDUkh-VuAV72dDJWGFbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NeIDUkh-VuAV72dDJWGFbg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6OIX7YYByh-A-BiySBCO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k4HJrAiqQ3V4Sy2tIInxZQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dWcX7YYBO2e_P_QbS8t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jV0cBQfixQcleXHjzqFw0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jV0cBQfixQcleXHjzqFw0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9WcX7YYBO2e_P_QbS8zy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DeIX7YYByh-A-BiyTBo1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qZRkXnh8pLDVlUVidYeFDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-mcX7YYBO2e_P_QbScad"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AOFrzbtSbZoZPfOFvByqkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AOFrzbtSbZoZPfOFvByqkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "SmcX7YYBO2e_P_QbScVi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gra3ZDS-h8Qb6oN3nyQ91w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Gra3ZDS-h8Qb6oN3nyQ91w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "YeIX7YYByh-A-BiySxi3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014970"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "gWcX7YYBO2e_P_QbWtiF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["1QLTwfIs5p4VcZehcoW7uw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "keIX7YYByh-A-BiyXSZb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9raaEJOc-xp60E1LDA7XaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9raaEJOc-xp60E1LDA7XaA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JOIX7YYByh-A-BiyWSCu"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lgc01vu6tLGgLO8IPeQGXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["lgc01vu6tLGgLO8IPeQGXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "5-IX7YYByh-A-BiyXCQS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IalcRP42h8xF7vm8KTlEiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IalcRP42h8xF7vm8KTlEiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DGcX7YYBO2e_P_QbZ-K9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4sjDMbuo1EQDli2AMeF1pA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "HWcX7YYBO2e_P_QbWdTt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uD9v9EeBRS5EzcNLZ8q2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uD9v9EeBRS5EzcNLZ8q2gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "94526795721060"} {"create": {"_index": "profiling-events-all", "_id": "KOIX7YYByh-A-BiyWyN4"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJQF0B534N8TwJ-_OUbvmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kJQF0B534N8TwJ-_OUbvmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "WNgX7YYBBkbVtX3nW1nF"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["P-dCdUT1LEJyae6UYwKugg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "HOIX7YYByh-A-BiyaCtL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JHzvVskHWYcoFwQr_Ta92A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JHzvVskHWYcoFwQr_Ta92A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "U2cX7YYBO2e_P_QbWtrI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fa7wECARkxA2ek4DYeGk9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014975"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fa7wECARkxA2ek4DYeGk9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "tdgX7YYBBkbVtX3neGzr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VSiIga6kK669vm3_VFRBxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VSiIga6kK669vm3_VFRBxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4dgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YjeaaN9Gs9Jtblq8lj7A3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YjeaaN9Gs9Jtblq8lj7A3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "b2cX7YYBO2e_P_Qbd-2U"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MY4vqWXc_k9n6qImvJUI7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "89gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ArhssJT4V7-kmdsezZTRQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ArhssJT4V7-kmdsezZTRQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "99gX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_rVC5Sy8eAmzcpq8FYPgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g_rVC5Sy8eAmzcpq8FYPgQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qNgX7YYBBkbVtX3neW_-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EO1Dm97l4fnw6_SNto3oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EO1Dm97l4fnw6_SNto3oog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kWcX7YYBO2e_P_QbevM8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9rychglqQSAQzOKooiFxFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9rychglqQSAQzOKooiFxFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6tgX7YYBBkbVtX3ne3WS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5gjPCLIYZbMZi0UuOcP2yQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014980"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5gjPCLIYZbMZi0UuOcP2yQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "lmcX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV8E-OYfEEKqtlp023Tqng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VV8E-OYfEEKqtlp023Tqng"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YWcX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDQou-XRb52d9gCJh1ayOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fDQou-XRb52d9gCJh1ayOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8isTUPr0FRuKib4cU3qR3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8isTUPr0FRuKib4cU3qR3w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-Biyh0Kg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D4jMgEWnva8oEa4cv5QFeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D4jMgEWnva8oEa4cv5QFeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7OIX7YYByh-A-Biyh0Kg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2mGUnlgeNy9yq7TLiDTKvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2mGUnlgeNy9yq7TLiDTKvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "l2cX7YYBO2e_P_Qbh_zn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RX6MWdoFei8k1kwyhzfnHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RX6MWdoFei8k1kwyhzfnHA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kwSNJ4ks9P4lHM_hMfcyhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kwSNJ4ks9P4lHM_hMfcyhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "89gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Of2hetgQ4G3EMs-obnxUFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Of2hetgQ4G3EMs-obnxUFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "ydgX7YYBBkbVtX3niHnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qbOly4UeXgEZ8EetANZqFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qbOly4UeXgEZ8EetANZqFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnFHj_GHdhJ9FbnuH0i77A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnFHj_GHdhJ9FbnuH0i77A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "49gX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PacxNzOkBSNx_21zrmhePw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PacxNzOkBSNx_21zrmhePw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "LuIX7YYByh-A-BiyhkDE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AM0prgm67n5d6K3VpPj9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7AM0prgm67n5d6K3VpPj9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "X2cX7YYBO2e_P_Qbh_kU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ezB3Rrr_knGYPkl_kYdRNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ezB3Rrr_knGYPkl_kYdRNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "9GcX7YYBO2e_P_Qbh_pU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H8A3dYuSIPwxTp-xzJya1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H8A3dYuSIPwxTp-xzJya1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "4-IX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7ex70r3IhidNSVrzLcqAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-7ex70r3IhidNSVrzLcqAA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "5eIX7YYByh-A-BiyiER2"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3H-L6UsF703PU8SR2ZlmEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3H-L6UsF703PU8SR2ZlmEA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "x9gX7YYBBkbVtX3niHnT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pD-pJcDVTjS_r_eW7GWMcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["pD-pJcDVTjS_r_eW7GWMcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "smgX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGf4xT_jVUAejwXntzL3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FGf4xT_jVUAejwXntzL3PQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "suIX7YYByh-A-BiyikmM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdUr9M80lv8cnRJG6q84UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LdUr9M80lv8cnRJG6q84UA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "3tgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AZiPGUJq8VLe0bcF5JOdFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AZiPGUJq8VLe0bcF5JOdFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "beIX7YYByh-A-Biyi0uU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BcwMHWALpdPlatMjiBW_wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BcwMHWALpdPlatMjiBW_wg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "EuIX7YYByh-A-BiyjE0n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nngybL9jLob9MFAj_5uE0w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "82cX7YYBO2e_P_Qbh_pU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JiCE6XR1gukpwvjQ1r_0aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JiCE6XR1gukpwvjQ1r_0aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "VmgX7YYBO2e_P_QbiQGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["and5_iwPhBY0DhBmGzzTUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["and5_iwPhBY0DhBmGzzTUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "s2gX7YYBO2e_P_QbigJT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jFhA24HccRgfwIBBwmJXqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jFhA24HccRgfwIBBwmJXqw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "5NgX7YYBBkbVtX3ni4E_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "EeIX7YYByh-A-BiyjE0n"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZndsICGWbrD6J4BVHqQM7g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "kOIX7YYByh-A-BiyiUZS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gSO16M9ILzhu6pqLHYZcKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014985"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gSO16M9ILzhu6pqLHYZcKg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "sdgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-nrrZMuYFG3kBv7-N6Cr3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-nrrZMuYFG3kBv7-N6Cr3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "beIX7YYByh-A-BiyqGFv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7eV1ClIoEc0MOWrL7aYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Pa7eV1ClIoEc0MOWrL7aYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eGgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xcO8ATMuOlPrGlylAgvJmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ttgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_X9dFQVvkPI4ha0P8p2JiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_X9dFQVvkPI4ha0P8p2JiQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XGgX7YYBO2e_P_QbnBJG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RUNYTUN-F_zv9oJ0DjEKwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["RUNYTUN-F_zv9oJ0DjEKwQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aNgX7YYBBkbVtX3npo-z"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PU4AlGgy6OVgX5g2hXwflQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PU4AlGgy6OVgX5g2hXwflQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8OIX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CjSOPmGxE3Pc5_4gR1HXEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CjSOPmGxE3Pc5_4gR1HXEg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "JNgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B-XLpCbHVWJllSfmbTHDIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B-XLpCbHVWJllSfmbTHDIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "sOIX7YYByh-A-Biym1t5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jwz5Ko_H_B_a_KaZUAnDNQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "XmgX7YYBO2e_P_Qbpxge"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D17V2ZvopmhLBd7dZ3Y1BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["D17V2ZvopmhLBd7dZ3Y1BA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "92gX7YYBO2e_P_QbmxAt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T6-ZIWwGzZExC78sWJIpyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T6-ZIWwGzZExC78sWJIpyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "rtgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jgHKhfN_-iW4c9zXWgJycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jgHKhfN_-iW4c9zXWgJycA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "eWgX7YYBO2e_P_QbqRsl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EA7jmP4TdABUc9EMMeGdDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["EA7jmP4TdABUc9EMMeGdDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "7-IX7YYByh-A-BiyqWJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9Qdn4hxZXN_RRgCI0d2Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["G9Qdn4hxZXN_RRgCI0d2Aw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "845379217314054"} {"create": {"_index": "profiling-events-all", "_id": "JdgX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V0FscKR06PIQDFIotfIKkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["V0FscKR06PIQDFIotfIKkQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "IOIX7YYByh-A-Biymlrf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZODq3DX4tCIqNNAVK-EkRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZODq3DX4tCIqNNAVK-EkRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "rdgX7YYBBkbVtX3nm46-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zbdiy9zDQAF_ITnyDDjh2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zbdiy9zDQAF_ITnyDDjh2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "XuIX7YYByh-A-Biypl4D"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vYaocYILvM8dc_gTgLR1Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vYaocYILvM8dc_gTgLR1Pw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "I9gX7YYBBkbVtX3nmo13"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YulTfvm-3LCwbTWK82hE8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YulTfvm-3LCwbTWK82hE8g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "x2gX7YYBO2e_P_QbnBXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xHAlWfQiLLyIuk2h7k7RXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xHAlWfQiLLyIuk2h7k7RXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "s9gX7YYBBkbVtX3nqJPE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4gZSOWlJ3pw6n-5AVME8fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4gZSOWlJ3pw6n-5AVME8fQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "KGgX7YYBO2e_P_QbnBSM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KOMN7HDuAGD1N2A7P0t7vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014992"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KOMN7HDuAGD1N2A7P0t7vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "1uIX7YYByh-A-Biytmj0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOZHtJ4ahW-g2TWd1-Whrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vOZHtJ4ahW-g2TWd1-Whrw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "fNgX7YYBBkbVtX3nuay9"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Epu3otqsKY33No3a7Ut0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Epu3otqsKY33No3a7Ut0Ug"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xdgX7YYBBkbVtX3nuq9-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UV9_m6EFKMbhnALIvI6q6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "tmgX7YYBO2e_P_Qbtynt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qf8e2CedM9huXl7Xm6xyyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Qf8e2CedM9huXl7Xm6xyyQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "K9gX7YYBBkbVtX3nua7-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N25AEjenMUPgCcs2AAiXqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N25AEjenMUPgCcs2AAiXqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "OdgX7YYBBkbVtX3nu7Ec"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mws_4U3r89UDU4qZjswO6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Mws_4U3r89UDU4qZjswO6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "7dgX7YYBBkbVtX3nt6I3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3U1GssMMNyEfwWToQlllWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3U1GssMMNyEfwWToQlllWQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "G-IX7YYByh-A-BiyuGot"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zCPc0-bKAM6-gvP4yKCRnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679014998"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zCPc0-bKAM6-gvP4yKCRnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6-IX7YYByh-A-BiyxnI6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KBx8UMYQRpX3PQkFGueoQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KBx8UMYQRpX3PQkFGueoQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9NgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oYwYA56C57graUtOG96_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oYwYA56C57graUtOG96_nA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "B9gX7YYBBkbVtX3nybyn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPi-mObQCSuLuQtVOYID8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["cPi-mObQCSuLuQtVOYID8A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiZ1khLLMUzgYWGwfUZAEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ZiZ1khLLMUzgYWGwfUZAEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "CtgX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QOIxcZGbFuLnj5qiY-JZYA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "D9gX7YYBBkbVtX3nyLm_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MifoGEhGkhx--3Mqfb9VJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["MifoGEhGkhx--3Mqfb9VJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ENgX7YYBBkbVtX3nxrZ1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "aGgX7YYBO2e_P_QbyDUv"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B8raI5jTg6GXkSRywQ53Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["B8raI5jTg6GXkSRywQ53Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-dgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZxBtZLIjgWi7iyuWzr-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WZxBtZLIjgWi7iyuWzr-iQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-tgX7YYBBkbVtX3nyLi_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UUpVBUGNxt4Ms0zx7knOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7UUpVBUGNxt4Ms0zx7knOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "_GgX7YYBO2e_P_QbyDby"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rEkYGzV5vYiC3DhSryqVzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rEkYGzV5vYiC3DhSryqVzg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "912537196463226"} {"create": {"_index": "profiling-events-all", "_id": "edgX7YYBBkbVtX3nyr0i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAA5WQcp21IBohTIC-KUcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aAA5WQcp21IBohTIC-KUcA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "185231699804121"} {"create": {"_index": "profiling-events-all", "_id": "0mgX7YYBO2e_P_QbxjDq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ljoZqY7uQluiDQvieY_xHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015003"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ljoZqY7uQluiDQvieY_xHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "sNgX7YYBBkbVtX3n5ctL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["94o6mawNwOW6nwyr1PAIHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["94o6mawNwOW6nwyr1PAIHQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EdgX7YYBBkbVtX3n589_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CHnrKd15QpNtnzP8YzFv4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "BeIX7YYByh-A-Biy5oju"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23D9WYWWXJZPmgi3LP_trA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23D9WYWWXJZPmgi3LP_trA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9tgX7YYBBkbVtX3n6tVt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0ymZCjvGyGb7nDgHKngF-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "YNgX7YYBBkbVtX3n5MiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N9nJGzNJcPuG6DQBG0MiGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N9nJGzNJcPuG6DQBG0MiGw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "teIX7YYByh-A-Biy5oRq"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCIWb9sew42V-gStKG8h5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["JCIWb9sew42V-gStKG8h5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "X9gX7YYBBkbVtX3n5MiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf9wGp5TNFiImJfF3zrljg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hf9wGp5TNFiImJfF3zrljg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LNgX7YYBBkbVtX3n6NFW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrV7Sjn5wsa8oFmwH9R5gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rrV7Sjn5wsa8oFmwH9R5gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "593778632422369"} {"create": {"_index": "profiling-events-all", "_id": "k-IX7YYByh-A-Biy6IkE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Isxj784FFyTk5uDVdOf3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5Isxj784FFyTk5uDVdOf3A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "tWgX7YYBO2e_P_Qb6Vmk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015009"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9XdZpM6-FAy3LMUV5bnSRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "bGgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8p8KkfgO4GoE7XBvV8MBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8p8KkfgO4GoE7XBvV8MBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "q9gX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eh7tA-88r0aWueK0gduVFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eh7tA-88r0aWueK0gduVFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "L9gX7YYBBkbVtX3n9t1e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UNA5mzQxt3Xt7EAz1m9YnA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "qtgX7YYBBkbVtX3n9Ngk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2pZTlkqZkVB23pwCplHuMw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "pNgX7YYBBkbVtX3n9t6f"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NmZEPOVWjWJBf47eb30-vw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "INgX7YYBBkbVtX3n9Npj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_RT0FmavuUc4KjdMUFBgQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_RT0FmavuUc4KjdMUFBgQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "amgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kj2172QFM0X7LD-Gx8UmJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kj2172QFM0X7LD-Gx8UmJw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "weIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gy1xDSDhU1AfdIq4EG9-FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gy1xDSDhU1AfdIq4EG9-FQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "wuIX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUkt5tksckG11QdtV8P-sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mUkt5tksckG11QdtV8P-sg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "w-IX7YYByh-A-Biy9pUg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9lQsXvjy3LhFC1-b9LfXYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9lQsXvjy3LhFC1-b9LfXYw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "59gX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqqnfectBMqAU_ittPTUXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zqqnfectBMqAU_ittPTUXw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "6NgX7YYBBkbVtX3n9-Eh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oolBkHFnNQYADD_-CEG1dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oolBkHFnNQYADD_-CEG1dg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "YGgX7YYBO2e_P_Qb91-r"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ayg1IWi6ap3XN7RjaMkRog"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "2WgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caAMI7G9uz-EPxuo9p-Rlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["caAMI7G9uz-EPxuo9p-Rlw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "22gX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SK9-X9x1FnjCdB8Qub4LOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SK9-X9x1FnjCdB8Qub4LOA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "QNgX7YYBBkbVtX3n-eUA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FFVbA2EfVlyNzePqODxsIg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "omgX7YYBO2e_P_Qb-WKP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hphMgjf8tLvtIOhJJeMEOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "bWgX7YYBO2e_P_Qb9Fyf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFO2N7Q8fL-8kQlkLemsmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aFO2N7Q8fL-8kQlkLemsmw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "6eIX7YYByh-A-Biy9JDf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Lb4LkSEfwYPtryFWDMnyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Lb4LkSEfwYPtryFWDMnyw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "72gX7YYBO2e_P_Qb9V0w"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FqFEzaoqPCnPS62kfi9IsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FqFEzaoqPCnPS62kfi9IsQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "3GgX7YYBO2e_P_Qb-GAl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnsAy4vOc46KZJiS5dGT6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dnsAy4vOc46KZJiS5dGT6w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "fOIX7YYByh-A-Biy-Jux"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H5yRjwOS6pZnYwq27kzT4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015015"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H5yRjwOS6pZnYwq27kzT4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "3NgY7YYBBkbVtX3nFPOh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yrneF8Y5HnZdPRsa0iSPNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "AdgY7YYBBkbVtX3nFfV_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1gE1Mfy7QCTfP_33bgibg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["z1gE1Mfy7QCTfP_33bgibg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "cmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qS1V-akFaaHNHyzPM1noGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qS1V-akFaaHNHyzPM1noGA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "g2gY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["0E7LlamNni9h1zgUjdYD5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuIY7YYByh-A-BiyFK7j"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IszPO-W_NZpvHwzVXBdHRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IszPO-W_NZpvHwzVXBdHRA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "huIY7YYByh-A-BiyFa86"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Jwj9IGMM0jWZjOAtjE9d7Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "gmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PpzV6LTOPBnvw6J3GGPQ2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "FOIY7YYByh-A-BiyFrK6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["669-RSmA7VOx7u87DdbW9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["669-RSmA7VOx7u87DdbW9A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "emgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTqEftgEgF-4HalIRfrGpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["FTqEftgEgF-4HalIRfrGpw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "UNgY7YYBBkbVtX3nFvYC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["un7IXZTDX45vlOErtbBxEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["un7IXZTDX45vlOErtbBxEw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "dmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-49a_E8AcF9JV2D17KJ99g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-49a_E8AcF9JV2D17KJ99g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "fmgY7YYBO2e_P_QbF3eI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v9LkFqrZacA9LLL7WL6jjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015021"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v9LkFqrZacA9LLL7WL6jjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "8OIY7YYByh-A-BiyJcLd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N1nRjzqOIB8y-j3xmzMaSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["N1nRjzqOIB8y-j3xmzMaSQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uNkY7YYBBkbVtX3nJgIl"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fu2t6m-D5UJUa1S1LIOpkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Fu2t6m-D5UJUa1S1LIOpkg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xOIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iIMesBrzxgfShUvivBC9VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["iIMesBrzxgfShUvivBC9VA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "w-IY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37H1sSWP9fHHtDykTwvxJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["37H1sSWP9fHHtDykTwvxJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1GgY7YYBO2e_P_QbJ3-M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_7eGxy7JatY66SnXVDAow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["X_7eGxy7JatY66SnXVDAow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "m-IY7YYByh-A-BiyI7hA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_lMqaF4gbGiFm8tgIiB6eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8eIY7YYByh-A-BiyJcLd"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DhfNoyryOAVBksH9W9zZsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DhfNoyryOAVBksH9W9zZsA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "buIY7YYByh-A-BiyJsRk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6qn8dRThwMb4sKyHdsYIBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "7OIY7YYByh-A-BiyJsXZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zcSEgSwv-OAVAhTXWGeqFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "2OIY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzyVw9-CnV8kDbp00nDLdQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "weIY7YYByh-A-BiyJL_0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dZVhEMwoIzMGD6Fthzhnhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "VeIY7YYByh-A-BiyJcFE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LecKeTt-RiFscqL1ypA3eg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "1-IY7YYByh-A-BiyJ8jR"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "qdkY7YYBBkbVtX3nKAVC"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8giK6mKV7HDPF-jB4e6ajg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "uNgY7YYBBkbVtX3nI_yO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CukCYxi-_rBPDB0cFOdQXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["CukCYxi-_rBPDB0cFOdQXg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "ZuIY7YYByh-A-BiyJ8dT"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zY_FUxiP8lY6XZ2ati0KCg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "02gY7YYBO2e_P_QbJ3-M"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n6EgKcwZlK3OnMM95lvD6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "KtkY7YYBBkbVtX3nJQGU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015026"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "L-IY7YYByh-A-BiyNNjt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["prglnbSV--xvMX6ZLnrz1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["prglnbSV--xvMX6ZLnrz1w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "9WgY7YYBO2e_P_QbNYme"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jPkF12I7d8n_WLfO9tfRDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["jPkF12I7d8n_WLfO9tfRDQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "GOIY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DOr2yspH9ybCB1ZnzV8BJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DOr2yspH9ybCB1ZnzV8BJA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "28424007785283"} {"create": {"_index": "profiling-events-all", "_id": "_2gY7YYBO2e_P_QbN49p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FcDW-9IPZrZmO_AgR-UVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4FcDW-9IPZrZmO_AgR-UVw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-mgY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7o7oGlZRFPD9hlZHJQFaeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7o7oGlZRFPD9hlZHJQFaeQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "1OIY7YYByh-A-BiyNNZi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6pwviWWoW88bcg8mc6jotg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6pwviWWoW88bcg8mc6jotg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "o2gY7YYBO2e_P_QbNIap"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n8NV_5qPZ2yDzkxHAj-OJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["n8NV_5qPZ2yDzkxHAj-OJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "82gY7YYBO2e_P_QbNoxr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NrEr2m1NreTQiIcNz23_Gw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-WgY7YYBO2e_P_QbN5Lt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hAbTICOesyJ3rX_TlmZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9hAbTICOesyJ3rX_TlmZDg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "dNkY7YYBBkbVtX3nNgnQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["v78L_ndncKY9XP2euXU8Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "XmgY7YYBO2e_P_QbN44i"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KUsQV-D79LhBqY3oMEarqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KUsQV-D79LhBqY3oMEarqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "AGgY7YYBO2e_P_QbN5Bp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dePPhixGpLKqsMMaUhbMkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dePPhixGpLKqsMMaUhbMkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "GuIY7YYByh-A-BiyQttA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PRG5hVGVXLYVZ0h02g0udQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "v2gY7YYBO2e_P_QbQpW8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BoYpwBWsEY6dEqkJuaGn-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["BoYpwBWsEY6dEqkJuaGn-A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "geIY7YYByh-A-BiyNtki"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5c1W4V6QarCea1y_uUiVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Y5c1W4V6QarCea1y_uUiVg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "xOIY7YYByh-A-BiyQtx5"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_EsHnjdKV8IAlrfbLT931Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_EsHnjdKV8IAlrfbLT931Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "f2gY7YYBO2e_P_QbNYvj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xRhapVs8DimQtljSm9PXHw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "XNkY7YYBBkbVtX3nQwsG"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015031"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gWZieSymYI-RQt59eFJ4Sw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "2-IY7YYByh-A-BiyUejm"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ji4fn9UFUEQ7XfPSlCiJjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Ji4fn9UFUEQ7XfPSlCiJjg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LdkY7YYBBkbVtX3nVR6C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["7V6aRLUSfKlOcOf1w7yKYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VuIY7YYByh-A-BiyVPT1"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09uypqtTxXlIuIrZVnABBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["09uypqtTxXlIuIrZVnABBQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "u2gY7YYBO2e_P_QbV7Dp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6De01qCjG4YpvC5r_qYJMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6De01qCjG4YpvC5r_qYJMQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "0WgY7YYBO2e_P_QbVKit"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qT_CR4Hw6yXc7SN2JGsRRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qT_CR4Hw6yXc7SN2JGsRRQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "utkY7YYBBkbVtX3nVh_a"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015038"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8E3vSloXP4dGqDQFAfS1g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "6mgY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XS_2yHDH56Gg_3eKY-7t_A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MWgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3dWczo-TxKbn0vDhRIXuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["a3dWczo-TxKbn0vDhRIXuw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "NeIY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qPIovnY_UHTfC1t6f4Hr0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qPIovnY_UHTfC1t6f4Hr0A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mGgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xxGhbam4Rod7gS2xhM6-rQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xxGhbam4Rod7gS2xhM6-rQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "655028827703124"} {"create": {"_index": "profiling-events-all", "_id": "mdkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZK8SEhO7ETtVZs2wRmpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NZK8SEhO7ETtVZs2wRmpXA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "z2gY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6z5XvcuxP2TQmMVJ9Pasiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6z5XvcuxP2TQmMVJ9Pasiw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "LmgY7YYBO2e_P_QbY7vw"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aqb62SWn_8yiLVVMpKijFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["aqb62SWn_8yiLVVMpKijFA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mqpWTSIkoRMfDHbRs_VWxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mqpWTSIkoRMfDHbRs_VWxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "EdkY7YYBBkbVtX3nYymL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5e_C8GLvZaqyeMf6f2Lo5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["5e_C8GLvZaqyeMf6f2Lo5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ndkY7YYBBkbVtX3nZCuT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SuyrLdAGlB-Gqd6pTlCwTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["SuyrLdAGlB-Gqd6pTlCwTg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "0GgY7YYBO2e_P_QbZb1H"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oHVZwEtujopOZewM6A1sxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oHVZwEtujopOZewM6A1sxw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFHH2tMDnbWLZHLGtCUC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xFHH2tMDnbWLZHLGtCUC2w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "imgY7YYBO2e_P_QbZcCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DYzhVpKjZS7RL_ti--DyeA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "22gY7YYBO2e_P_QbZsEV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qP-re8P6QAZOuUpAbsv0YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qP-re8P6QAZOuUpAbsv0YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "K2gY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xTmXxLtxYtdjX3OFWgcBtA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "LGgY7YYBO2e_P_QbccJo"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnUv3QN_2ZayAg10mwHHFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["AnUv3QN_2ZayAg10mwHHFg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "JmgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_wx1WU4Q3GTegN_cAxP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["d_wx1WU4Q3GTegN_cAxP6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_QbccS0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "M-IY7YYByh-A-Biycv3l"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["TkPEPsUQlEC8_tTSu1y8wA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "UtkY7YYBBkbVtX3nZCoi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "zdkY7YYBBkbVtX3nZSze"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m-Q9uCXR-TIx0LsEoXVwIw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "A2gY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tdbcrn8vzrvt_4QGjPmE2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["tdbcrn8vzrvt_4QGjPmE2g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "52gY7YYBO2e_P_QbY7m_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eYaT0VAMxHUuQFovR7m_6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["eYaT0VAMxHUuQFovR7m_6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "LtkY7YYBBkbVtX3ncS0m"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8nNNC34bhCi_Q3XemgSrmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8nNNC34bhCi_Q3XemgSrmg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "mmgY7YYBO2e_P_QbZLxc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HPhJ76yG2kEeQYFKH7p-MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HPhJ76yG2kEeQYFKH7p-MA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_QbZb97"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XSWbewDyObNkMZFMkquH-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XSWbewDyObNkMZFMkquH-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "AWgY7YYBO2e_P_QbcsYD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKIT-6sz8Rcrv5dQo1Svfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015043"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["NKIT-6sz8Rcrv5dQo1Svfw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "ctkY7YYBBkbVtX3ndz2e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZnHw5ixNOyEf6O56DZTMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2ZnHw5ixNOyEf6O56DZTMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "XeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["du1yLIRbc8pGUnVxG87AUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["du1yLIRbc8pGUnVxG87AUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "WNkY7YYBBkbVtX3ngT9T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XHyQmv623xT6Vtggew3Wqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["XHyQmv623xT6Vtggew3Wqg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "h9kY7YYBBkbVtX3ngkIQ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["mcFH-Ijp7M4Pm2g7nfowcw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uo-tsEXpjnB3_59QNk30uA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Uo-tsEXpjnB3_59QNk30uA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "VeMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PF9c3wvWuSHWSRQ7lpy-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3PF9c3wvWuSHWSRQ7lpy-Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "2tkY7YYBBkbVtX3ngD3A"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oZgJu0hCy8YZbrC7PCpVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["oZgJu0hCy8YZbrC7PCpVUw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "WuMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htfRCBFoc4VoJwgN8Ytl-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["htfRCBFoc4VoJwgN8Ytl-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "I2gY7YYBO2e_P_QbhNYj"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wxU1Nh02nDVQ06j0OKiikg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wxU1Nh02nDVQ06j0OKiikg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "odkY7YYBBkbVtX3ng0c0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVWlhmLrIg4ezt4I6Uq9DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wVWlhmLrIg4ezt4I6Uq9DA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "ZOMY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Ccnybqafbd-z2JQ7pZb5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9Ccnybqafbd-z2JQ7pZb5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "V-MY7YYByh-A-Biygw3o"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["no86XANJmCvhh479J_f39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["no86XANJmCvhh479J_f39Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "kmgY7YYBO2e_P_QbhNep"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015048"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-k7aCJZCelwDj5FONxW39w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "62gY7YYBO2e_P_QbkuQ0"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBeDaSzmKMf_8mF4P9fF3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wBeDaSzmKMf_8mF4P9fF3g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "xmgY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IdBN0EzRB0f6Qp7f7scKtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["IdBN0EzRB0f6Qp7f7scKtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "KWgY7YYBO2e_P_Qbk-gA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6iO15jj0vZmOpf_lsLTSaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["6iO15jj0vZmOpf_lsLTSaw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "52gY7YYBO2e_P_QbkuZr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yHqWimgCZ0j1831FpP56GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yHqWimgCZ0j1831FpP56GA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "OGgY7YYBO2e_P_Qbk-uk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3qMqnk45t6i15Udhr4oapw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["3qMqnk45t6i15Udhr4oapw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "6WgY7YYBO2e_P_QbkuZr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rnLojn4fqQT9heBUwPp6cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rnLojn4fqQT9heBUwPp6cQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "CGgY7YYBO2e_P_QblO3v"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0rCzOrKLVxIax6VmWoTig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["H0rCzOrKLVxIax6VmWoTig"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "zGgY7YYBO2e_P_QbkeNU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSkvuXEJhjIUI110bPCy-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sSkvuXEJhjIUI110bPCy-w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "FeMY7YYByh-A-Biykxnn"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["agY1HwGqzbbYSgz0edbUzw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "aOMY7YYByh-A-Biykhac"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WiKwol9D35rFlRLvyV8-tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["WiKwol9D35rFlRLvyV8-tg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "KmgY7YYBO2e_P_Qbk-gA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rItueCZaxnQa_9rqoUOBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rItueCZaxnQa_9rqoUOBQA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "iGgY7YYBO2e_P_Qbk-kz"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tv9_UdgbHXgClRQg7kZh6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Tv9_UdgbHXgClRQg7kZh6g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "xWgY7YYBO2e_P_QbkN-c"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QnM8HV7T1nK2sOOhDjm8wQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015054"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["QnM8HV7T1nK2sOOhDjm8wQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "gGkY7YYBO2e_P_QbsgDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcKiZ-b2RFkrAj_Eljk6ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qcKiZ-b2RFkrAj_Eljk6ag"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "g2kY7YYBO2e_P_QbswJc"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8p8KkfgO4GoE7XBvV8MBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["w8p8KkfgO4GoE7XBvV8MBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "EmgY7YYBO2e_P_Qbr__k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sF6SO51w2foii8iV20ReXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sF6SO51w2foii8iV20ReXQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "MOMY7YYByh-A-BiysSoN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0YIAzJAuzs0WiByN2XHsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["e0YIAzJAuzs0WiByN2XHsg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OOMY7YYByh-A-Biysy8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Al1SOAD2scJtZ2cFUS9UOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Al1SOAD2scJtZ2cFUS9UOw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ttkY7YYBBkbVtX3npWUb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQRMSvf2Ru8AcSIkw-mV5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YQRMSvf2Ru8AcSIkw-mV5w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "keMY7YYByh-A-BiypicL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PrVZV3ALGpaU9_iaCjGLFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OeMY7YYByh-A-Biysy8e"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["arX6P2NMEiJ9Egas3Yju4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["arX6P2NMEiJ9Egas3Yju4Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4mgY7YYBO2e_P_QbpfyH"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeKlcYjnbAHyjaIKIYLphA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UeKlcYjnbAHyjaIKIYLphA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "753717090513272"} {"create": {"_index": "profiling-events-all", "_id": "EWgY7YYBO2e_P_Qbr__k"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LozaztVRNbKlSptg74c_Jg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "idkY7YYBBkbVtX3nsnOa"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["wQIwclgSqKb144G75yYx4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "59kY7YYBBkbVtX3nsGgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zx1Svrv0kOSpq-dJ-FTQBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Zx1Svrv0kOSpq-dJ-FTQBg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "gWkY7YYBO2e_P_QbsgDe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["GsN99ThxwcvQFCb-5zng-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "6NkY7YYBBkbVtX3nsGgr"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eLfnVQNj-bq7jOAcpsXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["2eLfnVQNj-bq7jOAcpsXhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "G9kY7YYBBkbVtX3nsW5T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRLmJJNBX8J2JJ9imi8dPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vRLmJJNBX8J2JJ9imi8dPw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "8tkY7YYBBkbVtX3nsW-T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zXbfPFB1rTaAbyUdHQG_SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zXbfPFB1rTaAbyUdHQG_SA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "leMY7YYByh-A-BiysCjE"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015060"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Su83jhjLPwV0cqJbphC9gg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "sOMY7YYByh-A-BiywTh8"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3r2NA911Mk7g-SMfweEhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["T3r2NA911Mk7g-SMfweEhA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "-GkY7YYBO2e_P_QbwhAA"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZMRPR03JgKHHwNCTAFzKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["xZMRPR03JgKHHwNCTAFzKA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "t2kY7YYBO2e_P_Qbvwu3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["4O45TJyRIp_Dj0IxvNdxwA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "hWkY7YYBO2e_P_QbxBZh"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["rDKxniIVk0RWV976qb-dNg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ENkY7YYBBkbVtX3nw4Mt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzzAkS68b-k5mSq1f5rBNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["vzzAkS68b-k5mSq1f5rBNA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "89kY7YYBBkbVtX3nxYcT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t0TDin4EdglS8jVWcSlCQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["t0TDin4EdglS8jVWcSlCQQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "Z-MY7YYByh-A-BiywjpO"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HkfH8phILjoSDOJDy-1TVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["HkfH8phILjoSDOJDy-1TVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "735060693165125"} {"create": {"_index": "profiling-events-all", "_id": "oeMY7YYByh-A-BiyvzV7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["owNoaLSdddyWnE6x23fIMg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "uGkY7YYBO2e_P_Qbvwu3"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["50PoVbLjF0hCNpsgtuMl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["50PoVbLjF0hCNpsgtuMl5g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "155673490075071"} {"create": {"_index": "profiling-events-all", "_id": "IGkY7YYBO2e_P_QbwQ-_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_2COh-c_qJv_z47LD8F6aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["_2COh-c_qJv_z47LD8F6aQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "otkY7YYBBkbVtX3nwX8u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ52LnrbGCiUbg8bZ6HPVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["kZ52LnrbGCiUbg8bZ6HPVA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "ONkY7YYBBkbVtX3nwoGT"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015066"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["zlmxsTTPMJDp5d_OFnqBkA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "225915668823970"} {"create": {"_index": "profiling-events-all", "_id": "FdkY7YYBBkbVtX3n1Zdg"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5qgOI8HL9M8dwwOC7QfqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["x5qgOI8HL9M8dwwOC7QfqQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "uOMY7YYByh-A-Biy00jx"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o0urJMnM1NXJ1Ig4b1nz4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["o0urJMnM1NXJ1Ig4b1nz4w"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DOMY7YYByh-A-Biy307C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Px9VhqdWCVDdltHe9kzD-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Px9VhqdWCVDdltHe9kzD-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "weMY7YYByh-A-Biy30wN"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c20y3BjHH79qpRmxtyoGUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["c20y3BjHH79qpRmxtyoGUg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8tkY7YYBBkbVtX3n4Z2b"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xs-IN1fdS4tlSIAXAM4kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-xs-IN1fdS4tlSIAXAM4kA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mmkY7YYBO2e_P_Qb3yiB"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-BJw7BDfkkLGBaeu3mTtJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-BJw7BDfkkLGBaeu3mTtJQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "519693549829104"} {"create": {"_index": "profiling-events-all", "_id": "TWkY7YYBO2e_P_Qb4CzM"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7ZSY8z08KFXsns3lbxH5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015072"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["L7ZSY8z08KFXsns3lbxH5Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "223817267962438"} {"create": {"_index": "profiling-events-all", "_id": "kNkY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uYDpyfGeOoejLkBpWIKnAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uYDpyfGeOoejLkBpWIKnAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "8GkY7YYBO2e_P_Qb8z_u"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YytYhoY7fNuX6DzylApjYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["YytYhoY7fNuX6DzylApjYg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "z9kY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gZIR2lVaJhOjBF7vmgmNTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gZIR2lVaJhOjBF7vmgmNTQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PeMY7YYByh-A-Biy71tL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q1rqIqW9LrYYmMwOZmvxpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741972803009497"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["Q1rqIqW9LrYYmMwOZmvxpQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "741972803009497"} {"create": {"_index": "profiling-events-all", "_id": "GdkY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XVoH_w6DR25OZwFIyOORA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["8XVoH_w6DR25OZwFIyOORA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "zdkY7YYBBkbVtX3n8KgW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g1TbNQs0ehcm3oPXvCWrtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["g1TbNQs0ehcm3oPXvCWrtw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "L2kY7YYBO2e_P_Qb8DhZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["l8dMyIgFlKWEMYc0z_PTTw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "aeMY7YYByh-A-Biy8WB6"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KS1N91hvcJHrA9nDriwgFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KS1N91hvcJHrA9nDriwgFQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "RWkY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaFi74Q4Xy5P6KWfZhKbcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["LaFi74Q4Xy5P6KWfZhKbcQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "o2kY7YYBO2e_P_Qb8jtD"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9IwRLO6YrlzStGJvTS80NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9IwRLO6YrlzStGJvTS80NQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "ktkY7YYBBkbVtX3n86-p"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k0qCCYXqNQJOeLz2IVSZQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["k0qCCYXqNQJOeLz2IVSZQg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "umkY7YYBO2e_P_Qb8z4T"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70l8tnr4W3Z0mVbnzrtQHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["70l8tnr4W3Z0mVbnzrtQHg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "101554038790413"} {"create": {"_index": "profiling-events-all", "_id": "GNkY7YYBBkbVtX3n7qav"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nUFT-4VjV49edA4VHVD06g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["nUFT-4VjV49edA4VHVD06g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "a9kY7YYBBkbVtX3n76eU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qOQyvHeuCAo4zHM-_nszjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["qOQyvHeuCAo4zHM-_nszjQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "R2kY7YYBO2e_P_Qb8Tn-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uc-1qhzAwxbFSC_X5eM6rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uc-1qhzAwxbFSC_X5eM6rg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "qeMY7YYByh-A-Biy8mGJ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015078"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["gqOeBsFKwbfOrCtYQX86QA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "0WkZ7YYBO2e_P_QbA0mU"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["531_Sc4IW-g1NnLnDZ_hAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["531_Sc4IW-g1NnLnDZ_hAw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "mOMY7YYByh-A-Biy_2g-"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yvtvFpnNQbBerz7eTt0frA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["yvtvFpnNQbBerz7eTt0frA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "yOMY7YYByh-A-Biy_WPI"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S_m5ubmad7O5PrXj5rj9Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["S_m5ubmad7O5PrXj5rj9Lg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "OdkY7YYBBkbVtX3n_rPy"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UIIxveWnS2le63DPhl04ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["UIIxveWnS2le63DPhl04ow"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "DNkZ7YYBBkbVtX3nALrp"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["hc391qiEl23bWsvU8MIb2A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "r9kZ7YYBBkbVtX3nAb2C"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["-89SlyV8Cy-1WAJzSWKJpA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "4eMZ7YYByh-A-BiyA25V"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fX0UJpw-KoGxCTaJrmVo4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fX0UJpw-KoGxCTaJrmVo4A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "8724791948669"} {"create": {"_index": "profiling-events-all", "_id": "s-MZ7YYByh-A-BiyAmtP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7PtklSiInmoO66e9Bc5vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m7PtklSiInmoO66e9Bc5vA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "b2kZ7YYBO2e_P_QbAkjS"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uEFo0fAyVpU8ZWzISquVFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015082"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["uEFo0fAyVpU8ZWzISquVFw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "ZuMZ7YYByh-A-BiyIIrY"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m_wtbg2jNShExrSNavS6Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["m_wtbg2jNShExrSNavS6Zw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "jOMZ7YYByh-A-BiyIYwb"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9jnZQOhoYX8CygYi9lQy6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["9jnZQOhoYX8CygYi9lQy6A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "y9kZ7YYBBkbVtX3nHcyi"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23l0LEXPY3gsZ-a1uM9WBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["23l0LEXPY3gsZ-a1uM9WBA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "smkZ7YYBO2e_P_QbH1uL"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITsishoJBrPM8Hg7nurVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["ITsishoJBrPM8Hg7nurVvw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "UeMZ7YYByh-A-BiyIZCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dhc8TGgYU9zTniCUbRsImw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "JdkZ7YYBBkbVtX3nItGe"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dePPhixGpLKqsMMaUhbMkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["dePPhixGpLKqsMMaUhbMkw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "142370256725062"} {"create": {"_index": "profiling-events-all", "_id": "SeMZ7YYByh-A-BiyIIcW"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VMoxalfDKAgIFkHWZsfI5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["VMoxalfDKAgIFkHWZsfI5A"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "63051752474107"} {"create": {"_index": "profiling-events-all", "_id": "NGkZ7YYBO2e_P_QbH13S"}} -{"Stacktrace.count": [2], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [2], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PSEpVUXXmwRmI0xaCh6Phw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "kmkZ7YYBO2e_P_QbHVZZ"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZZOI74zGf6PIWKQ_dowgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["sZZOI74zGf6PIWKQ_dowgg"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} {"create": {"_index": "profiling-events-all", "_id": "0-MZ7YYByh-A-BiyIIiV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlNxGYc1KQXo_krOBCj9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["PlNxGYc1KQXo_krOBCj9YQ"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "UOMZ7YYByh-A-BiyIZCt"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015089"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["41RJH9BALozcwHa5Gm2tSA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "771160218874332"} {"create": {"_index": "profiling-events-all", "_id": "dOMZ7YYByh-A-BiyLpYf"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["24W9wid4frXP9gbNlVQM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["24W9wid4frXP9gbNlVQM1Q"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "QmkZ7YYBO2e_P_QbMG8B"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["73zzSG8Oeil4xVlA4Fb1Bw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "m9kZ7YYBBkbVtX3nLdV_"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVK6SdkNVQXTuBBVfv40gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["fVK6SdkNVQXTuBBVfv40gA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "PWkZ7YYBO2e_P_QbLmiP"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["DuNugRyUNKQa9O6ipjRVvA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "396043593875219"} {"create": {"_index": "profiling-events-all", "_id": "ruMZ7YYByh-A-BiyMJc7"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["77Snmu-jdy67fU04W-9dhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["77Snmu-jdy67fU04W-9dhw"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "kuMZ7YYByh-A-BiyMZoV"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "container.name": ["instance-0000000010"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["spFZMKZslqx7eLmYXiBH-g"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "734549507527372"} {"create": {"_index": "profiling-events-all", "_id": "IOMZ7YYByh-A-BiyLZXk"}} -{"Stacktrace.count": [1], "service.name": ["3145700"], "host.ipstring": ["192.168.1.2"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KSia5T4oTtHLzN1hXKSrIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} +{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment:qa", "region:eu-west-1"], "host.ip": ["192.168.1.2"], "@timestamp": ["1679015095"], "ecs.version": ["1.12.0"], "Stacktrace.id": ["KSia5T4oTtHLzN1hXKSrIA"], "agent.version": ["head-824028ac-1667300398"], "host.name": ["ip-192-168-1-2"], "host.id": ["9006254961723227446"], "process.thread.name": "206461370845245"} diff --git a/x-pack/plugins/profiling/server/lib/setup/steps/component_template_profiling_events.json b/x-pack/plugins/profiling/server/lib/setup/steps/component_template_profiling_events.json index d1df1d206b60f..8a45a18ff60e6 100644 --- a/x-pack/plugins/profiling/server/lib/setup/steps/component_template_profiling_events.json +++ b/x-pack/plugins/profiling/server/lib/setup/steps/component_template_profiling_events.json @@ -59,9 +59,6 @@ "host.ip": { "type": "ip" }, - "host.ipstring": { - "type": "keyword" - }, "host.name": { "type": "keyword" }, From 79969fbf2c0f571063c5107a287d7a92a1c18217 Mon Sep 17 00:00:00 2001 From: Kevin Delemme Date: Thu, 20 Apr 2023 06:56:19 -0400 Subject: [PATCH 115/144] chore(slo): add link to slo details page from alert (#155320) --- .../public/rules/register_observability_rule_types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/observability/public/rules/register_observability_rule_types.ts b/x-pack/plugins/observability/public/rules/register_observability_rule_types.ts index e4d9de76ef1e6..f2a22b77d0a61 100644 --- a/x-pack/plugins/observability/public/rules/register_observability_rule_types.ts +++ b/x-pack/plugins/observability/public/rules/register_observability_rule_types.ts @@ -8,6 +8,7 @@ import { lazy } from 'react'; import { i18n } from '@kbn/i18n'; import { ALERT_REASON } from '@kbn/rule-data-utils'; +import { SLO_ID_FIELD } from '../../common/field_names/infra_metrics'; import { ConfigSchema } from '../plugin'; import { ObservabilityRuleTypeRegistry } from './create_observability_rule_type_registry'; import { SLO_BURN_RATE_RULE_ID } from '../../common/constants'; @@ -25,7 +26,7 @@ export const registerObservabilityRuleTypes = ( format: ({ fields }) => { return { reason: fields[ALERT_REASON] ?? '-', - link: '/app/observability/slos', + link: `/app/observability/slos/${fields[SLO_ID_FIELD]}`, }; }, iconClass: 'bell', From 7c70508b7b8464b59816a1696454ead5eb792b4c Mon Sep 17 00:00:00 2001 From: Katerina Patticha Date: Thu, 20 Apr 2023 13:01:16 +0200 Subject: [PATCH 116/144] [APM] Add transaction name filter in latency threshold rule (#154241) Part of the #152329 1. Adds a synthrace scenario that generates many transactions per service 2. Fixes the duration chart preview when selecting All option - https://github.com/elastic/kibana/issues/152195 3. Introduces the `Transaction name` filter in the rule type. ### Pages loading the rule type 1. APM 2. Alert 3. Management rule ### Consider - [ ] Update/Adding documentation example https://www.elastic.co/guide/en/kibana/master/apm-alerts.html#apm-create-transaction-alert ## Creating a rule https://user-images.githubusercontent.com/3369346/231740745-425c8eb8-6798-4ce4-b375-4ef96afdb334.mov ## Updating a rule https://user-images.githubusercontent.com/3369346/231742035-28f50dfd-64bb-475d-b037-331eea4188d7.mov ### Before https://user-images.githubusercontent.com/3369346/232799038-2edaa199-b970-48f2-b3ca-728273e4bf44.mov ### Notes #### Feedback The default action messages don't include any links. I will create a follow-up ticket to improve the messages with actionable links. Related bugs but out of the scope of the PR - https://github.com/elastic/kibana/issues/154818 - https://github.com/elastic/kibana/issues/154704 --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../many_transactions_per_service.ts | 84 +++++++++++++++++++ .../common/rules/default_action_message.ts | 3 +- x-pack/plugins/apm/common/rules/schema.ts | 1 + .../index.stories.tsx | 57 ++++++++++++- .../transaction_duration_rule_type/index.tsx | 16 +++- .../components/alerting/utils/fields.tsx | 45 +++++++++- .../server/routes/alerts/action_variables.ts | 7 ++ .../routes/alerts/register_apm_rule_types.ts | 5 ++ .../plugins/apm/server/routes/alerts/route.ts | 1 + .../register_error_count_rule_type.ts | 4 +- .../get_transaction_duration_chart_preview.ts | 3 + ...ter_transaction_duration_rule_type.test.ts | 2 + ...register_transaction_duration_rule_type.ts | 13 +-- ...gister_transaction_error_rate_rule_type.ts | 8 +- .../tests/alerts/chart_preview.spec.ts | 49 +++++++++++ .../service_group_count.spec.ts | 2 +- .../tests/services/service_alerts.spec.ts | 2 +- 17 files changed, 276 insertions(+), 26 deletions(-) create mode 100644 packages/kbn-apm-synthtrace/src/scenarios/many_transactions_per_service.ts diff --git a/packages/kbn-apm-synthtrace/src/scenarios/many_transactions_per_service.ts b/packages/kbn-apm-synthtrace/src/scenarios/many_transactions_per_service.ts new file mode 100644 index 0000000000000..e814ed51b08e6 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/scenarios/many_transactions_per_service.ts @@ -0,0 +1,84 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ +import { ApmFields, apm, Instance } from '@kbn/apm-synthtrace-client'; +import { Scenario } from '../cli/scenario'; +import { getSynthtraceEnvironment } from '../lib/utils/get_synthtrace_environment'; + +const ENVIRONMENT = getSynthtraceEnvironment(__filename); + +const scenario: Scenario = async (runOptions) => { + const { logger } = runOptions; + const { numServices = 3 } = runOptions.scenarioOpts || {}; + const numTransactions = 100; + + return { + generate: ({ range }) => { + const urls = ['GET /order', 'POST /basket', 'DELETE /basket', 'GET /products']; + + const successfulTimestamps = range.ratePerMinute(180); + const failedTimestamps = range.interval('1m').rate(180); + + const instances = [...Array(numServices).keys()].map((index) => + apm + .service({ name: `synth-go-${index}`, environment: ENVIRONMENT, agentName: 'go' }) + .instance(`instance-${index}`) + ); + + const transactionNames = [...Array(numTransactions).keys()].map( + (index) => `${urls[index % urls.length]}/${index}` + ); + + const instanceSpans = (instance: Instance, transactionName: string) => { + const successfulTraceEvents = successfulTimestamps.generator((timestamp) => + instance.transaction({ transactionName }).timestamp(timestamp).duration(1000).success() + ); + + const failedTraceEvents = failedTimestamps.generator((timestamp) => + instance + .transaction({ transactionName }) + .timestamp(timestamp) + .duration(1000) + .failure() + .errors( + instance + .error({ message: '[ResponseError] index_not_found_exception' }) + .timestamp(timestamp + 50) + ) + ); + + const metricsets = range + .interval('30s') + .rate(1) + .generator((timestamp) => + instance + .appMetrics({ + 'system.memory.actual.free': 800, + 'system.memory.total': 1000, + 'system.cpu.total.norm.pct': 0.6, + 'system.process.cpu.total.norm.pct': 0.7, + }) + .timestamp(timestamp) + ); + + return [successfulTraceEvents, failedTraceEvents, metricsets]; + }; + + return logger.perf('generating_apm_events', () => + instances + .flatMap((instance) => + transactionNames.map((transactionName) => ({ instance, transactionName })) + ) + .flatMap(({ instance, transactionName }, index) => + instanceSpans(instance, transactionName) + ) + ); + }, + }; +}; + +export default scenario; diff --git a/x-pack/plugins/apm/common/rules/default_action_message.ts b/x-pack/plugins/apm/common/rules/default_action_message.ts index 503bc1ca3cd26..e8bde279f55ee 100644 --- a/x-pack/plugins/apm/common/rules/default_action_message.ts +++ b/x-pack/plugins/apm/common/rules/default_action_message.ts @@ -25,7 +25,8 @@ export const transactionDurationMessage = i18n.translate( defaultMessage: `\\{\\{alertName\\}\\} alert is firing because of the following conditions: - Service name: \\{\\{context.serviceName\\}\\} -- Type: \\{\\{context.transactionType\\}\\} +- Transaction type: \\{\\{context.transactionType\\}\\} +- Transaction name: \\{\\{context.transactionName\\}\\} - Environment: \\{\\{context.environment\\}\\} - Latency threshold: \\{\\{context.threshold\\}\\}ms - Latency observed: \\{\\{context.triggerValue\\}\\} over the last \\{\\{context.interval\\}\\}`, diff --git a/x-pack/plugins/apm/common/rules/schema.ts b/x-pack/plugins/apm/common/rules/schema.ts index 58a5b40da41f2..7e48ad989b606 100644 --- a/x-pack/plugins/apm/common/rules/schema.ts +++ b/x-pack/plugins/apm/common/rules/schema.ts @@ -20,6 +20,7 @@ export const errorCountParamsSchema = schema.object({ export const transactionDurationParamsSchema = schema.object({ serviceName: schema.maybe(schema.string()), transactionType: schema.maybe(schema.string()), + transactionName: schema.maybe(schema.string()), windowSize: schema.number(), windowUnit: schema.string(), threshold: schema.number(), diff --git a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.stories.tsx b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.stories.tsx index 5f43166f86060..40b1c0770e6f9 100644 --- a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.stories.tsx +++ b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.stories.tsx @@ -11,11 +11,18 @@ import { CoreStart } from '@kbn/core/public'; import { createKibanaReactContext } from '@kbn/kibana-react-plugin/public'; import { RuleParams, TransactionDurationRuleType } from '.'; import { AggregationType } from '../../../../../common/rules/apm_rule_types'; +import { AlertMetadata } from '../../utils/helper'; +import { ENVIRONMENT_ALL } from '../../../../../common/environment_filter_values'; const KibanaReactContext = createKibanaReactContext({ notifications: { toasts: { add: () => {} } }, } as unknown as Partial); +interface Args { + ruleParams: RuleParams; + metadata?: AlertMetadata; +} + export default { title: 'alerting/TransactionDurationRuleType', component: TransactionDurationRuleType, @@ -32,16 +39,48 @@ export default { ], }; -export const Example: Story = () => { - const [params, setParams] = useState({ +export const CreatingInApmServiceOverview: Story = ({ + ruleParams, + metadata, +}) => { + const [params, setParams] = useState(ruleParams); + + function setRuleParams(property: string, value: any) { + setParams({ ...params, [property]: value }); + } + + return ( + {}} + /> + ); +}; + +CreatingInApmServiceOverview.args = { + ruleParams: { aggregationType: AggregationType.Avg, environment: 'testEnvironment', serviceName: 'testServiceName', threshold: 1500, transactionType: 'testTransactionType', + transactionName: 'GET /api/customer/:id', windowSize: 5, windowUnit: 'm', - }); + }, + metadata: { + environment: ENVIRONMENT_ALL.value, + serviceName: undefined, + }, +}; + +export const CreatingInStackManagement: Story = ({ + ruleParams, + metadata, +}) => { + const [params, setParams] = useState(ruleParams); function setRuleParams(property: string, value: any) { setParams({ ...params, [property]: value }); @@ -50,8 +89,20 @@ export const Example: Story = () => { return ( {}} /> ); }; + +CreatingInStackManagement.args = { + ruleParams: { + aggregationType: AggregationType.Avg, + environment: 'testEnvironment', + threshold: 1500, + windowSize: 5, + windowUnit: 'm', + }, + metadata: undefined, +}; diff --git a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx index a94cad8767369..febe1e3fdc6d2 100644 --- a/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx +++ b/x-pack/plugins/apm/public/components/alerting/rule_types/transaction_duration_rule_type/index.tsx @@ -30,6 +30,7 @@ import { IsAboveField, ServiceField, TransactionTypeField, + TransactionNameField, } from '../../utils/fields'; import { AlertMetadata, getIntervalAndTimeRange } from '../../utils/helper'; import { ApmRuleParamsContainer } from '../../ui_components/apm_rule_params_container'; @@ -38,9 +39,10 @@ import { PopoverExpression } from '../../ui_components/popover_expression'; export interface RuleParams { aggregationType: AggregationType; environment: string; - serviceName: string; threshold: number; - transactionType: string; + transactionType?: string; + transactionName?: string; + serviceName?: string; windowSize: number; windowUnit: string; } @@ -105,6 +107,7 @@ export function TransactionDurationRuleType(props: Props) { environment: params.environment, serviceName: params.serviceName, transactionType: params.transactionType, + transactionName: params.transactionName, interval, start, end, @@ -119,6 +122,7 @@ export function TransactionDurationRuleType(props: Props) { params.environment, params.serviceName, params.transactionType, + params.transactionName, params.windowSize, params.windowUnit, ] @@ -149,7 +153,8 @@ export function TransactionDurationRuleType(props: Props) { onChange={(value) => { if (value !== params.serviceName) { setRuleParams('serviceName', value); - setRuleParams('transactionType', ''); + setRuleParams('transactionType', undefined); + setRuleParams('transactionName', undefined); setRuleParams('environment', ENVIRONMENT_ALL.value); } }} @@ -164,6 +169,11 @@ export function TransactionDurationRuleType(props: Props) { onChange={(value) => setRuleParams('environment', value)} serviceName={params.serviceName} />, + setRuleParams('transactionName', value)} + serviceName={params.serviceName} + />, void; + serviceName?: string; +}) { + const label = i18n.translate('xpack.apm.alerting.fields.transaction.name', { + defaultMessage: 'Name', + }); + + return ( + + + + ); +} + export function TransactionTypeField({ currentValue, onChange, @@ -113,7 +154,7 @@ export function TransactionTypeField({ return ( { transactionType: 'request', serviceName: 'opbeans-java', aggregationType: 'avg', + transactionName: 'GET /orders', }; await executor({ params }); expect(scheduleActions).toHaveBeenCalledTimes(1); @@ -59,6 +60,7 @@ describe('registerTransactionDurationRuleType', () => { alertDetailsUrl: expect.stringContaining( 'http://localhost:5601/eyr/app/observability/alerts/' ), + transactionName: 'GET /orders', environment: 'Not defined', interval: `5 mins`, reason: diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts index d7d763bfb2ca6..9df114c9a8c8c 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_duration/register_transaction_duration_rule_type.ts @@ -32,6 +32,7 @@ import { PROCESSOR_EVENT, SERVICE_ENVIRONMENT, SERVICE_NAME, + TRANSACTION_NAME, TRANSACTION_TYPE, } from '../../../../../common/es_fields/apm'; import { @@ -94,6 +95,7 @@ export function registerTransactionDurationRuleType({ apmActionVariables.reason, apmActionVariables.serviceName, apmActionVariables.transactionType, + apmActionVariables.transactionName, apmActionVariables.threshold, apmActionVariables.triggerValue, apmActionVariables.viewInAppUrl, @@ -146,12 +148,9 @@ export function registerTransactionDurationRuleType({ ...getDocumentTypeFilterForTransactions( searchAggregatedTransactions ), - ...termQuery(SERVICE_NAME, ruleParams.serviceName, { - queryEmptyString: false, - }), - ...termQuery(TRANSACTION_TYPE, ruleParams.transactionType, { - queryEmptyString: false, - }), + ...termQuery(SERVICE_NAME, ruleParams.serviceName), + ...termQuery(TRANSACTION_TYPE, ruleParams.transactionType), + ...termQuery(TRANSACTION_NAME, ruleParams.transactionName), ...environmentQuery(ruleParams.environment), ] as QueryDslQueryContainer[], }, @@ -268,6 +267,7 @@ export function registerTransactionDurationRuleType({ [SERVICE_NAME]: serviceName, ...getEnvironmentEsField(environment), [TRANSACTION_TYPE]: transactionType, + [TRANSACTION_NAME]: ruleParams.transactionName, [PROCESSOR_EVENT]: ProcessorEvent.transaction, [ALERT_EVALUATION_VALUE]: transactionDuration, [ALERT_EVALUATION_THRESHOLD]: ruleParams.threshold, @@ -284,6 +284,7 @@ export function registerTransactionDurationRuleType({ ), reason, serviceName, + transactionName: ruleParams.transactionName, // #Note once we group by transactionName, use the transactionName key from the bucket threshold: ruleParams.threshold, transactionType, triggerValue: transactionDurationFormatted, diff --git a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts index eac21063bc40b..7ceaf8ca78048 100644 --- a/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts +++ b/x-pack/plugins/apm/server/routes/alerts/rule_types/transaction_error_rate/register_transaction_error_rate_rule_type.ts @@ -142,12 +142,8 @@ export function registerTransactionErrorRateRuleType({ ], }, }, - ...termQuery(SERVICE_NAME, ruleParams.serviceName, { - queryEmptyString: false, - }), - ...termQuery(TRANSACTION_TYPE, ruleParams.transactionType, { - queryEmptyString: false, - }), + ...termQuery(SERVICE_NAME, ruleParams.serviceName), + ...termQuery(TRANSACTION_TYPE, ruleParams.transactionType), ...environmentQuery(ruleParams.environment), ], }, diff --git a/x-pack/test/apm_api_integration/tests/alerts/chart_preview.spec.ts b/x-pack/test/apm_api_integration/tests/alerts/chart_preview.spec.ts index 89dc5e5f41089..f070098a66661 100644 --- a/x-pack/test/apm_api_integration/tests/alerts/chart_preview.spec.ts +++ b/x-pack/test/apm_api_integration/tests/alerts/chart_preview.spec.ts @@ -115,5 +115,54 @@ export default function ApiTest({ getService }: FtrProviderContext) { ) ).to.equal(true); }); + + it('transaction_duration with transaction name', async () => { + const options = { + params: { + query: { + start, + end, + serviceName: 'opbeans-java', + transactionName: 'DispatcherServlet#doGet', + transactionType: 'request', + environment: 'ENVIRONMENT_ALL', + interval: '5m', + }, + }, + }; + const response = await apmApiClient.readUser({ + ...options, + endpoint: 'GET /internal/apm/rule_types/transaction_duration/chart_preview', + }); + + expect(response.status).to.be(200); + expect(response.body.latencyChartPreview[0].data[0]).to.eql({ + x: 1627974600000, + y: 18485.85714285714, + }); + }); + + it('transaction_duration with nonexistent transaction name', async () => { + const options = { + params: { + query: { + start, + end, + serviceName: 'opbeans-java', + transactionType: 'request', + transactionName: 'foo', + environment: 'ENVIRONMENT_ALL', + interval: '5m', + }, + }, + }; + const response = await apmApiClient.readUser({ + ...options, + endpoint: 'GET /internal/apm/rule_types/transaction_duration/chart_preview', + }); + + expect(response.status).to.be(200); + expect(response.body.latencyChartPreview).to.eql([]); + }); }); } diff --git a/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts b/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts index d61ce2cdc975f..499e6dec40087 100644 --- a/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts +++ b/x-pack/test/apm_api_integration/tests/service_groups/service_group_count/service_group_count.spec.ts @@ -32,7 +32,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { name: 'Latency threshold | synth-go', params: { serviceName: 'synth-go', - transactionType: '', + transactionType: undefined, windowSize: 99, windowUnit: 'y', threshold: 100, diff --git a/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts b/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts index 432ece830716c..3dc5a77fc0957 100644 --- a/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts +++ b/x-pack/test/apm_api_integration/tests/services/service_alerts.spec.ts @@ -48,7 +48,7 @@ export default function ServiceAlerts({ getService }: FtrProviderContext) { name: `Latency threshold | ${goService}`, params: { serviceName: goService, - transactionType: '', + transactionType: undefined, windowSize: 99, windowUnit: 'y', threshold: 100, From ac581be87d78f3a34d68920f3921ddf74142a54e Mon Sep 17 00:00:00 2001 From: Sander Philipse <94373878+sphilipse@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:11:07 +0200 Subject: [PATCH 117/144] [Enterprise Search] Redesign create index flow (#155149) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary This changes the create index flow in Enterprise Search Content to frontload the configuration, and backload the actual index selection. It also provides a more direct path from the integrations page, and includes a few other goodies. https://user-images.githubusercontent.com/94373878/232780443-80d926ce-cca3-4bef-b2ba-794c82c9f684.mov https://user-images.githubusercontent.com/94373878/232780486-eadeeac0-e459-4c17-b6f0-71ba3a3c0017.mov ### Checklist Delete any items that are not applicable to this PR. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [x] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [x] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [x] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --------- Co-authored-by: Efe Gürkan YALAMAN Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- packages/kbn-doc-links/src/get_doc_links.ts | 8 + packages/kbn-doc-links/src/types.ts | 8 + .../enterprise_search/common/constants.ts | 7 +- .../guided_onboarding/search_guide_config.ts | 6 +- .../connector/add_connector_api_logic.test.ts | 6 +- .../api/connector/add_connector_api_logic.ts | 3 + .../set_native_connector_api_logic.ts | 36 --- .../new_index/method_api/method_api.test.tsx | 6 +- .../new_index/method_api/method_api.tsx | 47 +--- .../new_index/method_api/method_api_logic.ts | 7 +- .../method_connector.test.tsx | 5 +- .../method_connector/method_connector.tsx | 199 +++++--------- .../method_crawler/method_crawler.test.tsx | 3 - .../method_crawler/method_crawler.tsx | 43 +-- .../components/new_index/method_steps.tsx | 98 ------- .../components/new_index/new_index.scss | 22 -- .../components/new_index/new_index.tsx | 253 ++++++------------ .../components/new_index/new_index_card.tsx | 132 +++++++++ .../components/new_index/new_index_router.tsx | 37 +++ .../new_index/new_search_index_page.tsx | 126 +++++++++ .../new_search_index_template.test.tsx | 11 +- .../new_index/new_search_index_template.tsx | 99 ++++--- .../select_connector/connector_checkable.tsx | 35 ++- .../select_connector/select_connector.tsx | 135 ++++++++++ .../components/new_index/utils.ts | 17 ++ .../connector/connector_configuration.tsx | 29 ++ .../search_index/connector/constants.ts | 114 +++++++- .../native_connector_configuration.tsx | 3 +- .../native_connector_configuration_config.tsx | 4 +- .../research_configuration.tsx | 4 +- .../select_connector/connector_checkable.scss | 9 - .../select_connector/select_connector.tsx | 187 ------------- .../select_connector_logic.tsx | 96 ------- .../search_index/connector/types.ts | 7 +- .../components/search_index/search_index.tsx | 19 +- .../search_index/search_index_router.tsx | 5 - .../search_indices_router.test.tsx | 4 +- .../search_indices/search_indices_router.tsx | 6 +- .../enterprise_search_content/routes.ts | 3 +- .../shared/doc_links/doc_links.ts | 17 ++ .../shared/assets/source_icons/custom.svg | 2 +- .../enterprise_search_features/connector.svg | 11 + .../enterprise_search_features/crawler.svg | 4 + ...{azure_blob.svg => azure_blob_storage.svg} | 0 .../public/assets/source_icons/custom.svg | 1 + ...gle_cloud.svg => google_cloud_storage.svg} | 0 .../source_icons/native_connector_icons.ts | 18 +- .../enterprise_search/server/integrations.ts | 41 +-- .../server/lib/connectors/add_connector.ts | 4 +- .../routes/enterprise_search/connectors.ts | 19 +- .../utils/create_connector_document.test.ts | 2 + .../server/utils/create_connector_document.ts | 28 +- .../translations/translations/fr-FR.json | 53 +--- .../translations/translations/ja-JP.json | 53 +--- .../translations/translations/zh-CN.json | 53 +--- 55 files changed, 1006 insertions(+), 1139 deletions(-) delete mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/set_native_connector_api_logic.ts delete mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_steps.tsx delete mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.scss create mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_card.tsx create mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_router.tsx create mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_page.tsx rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/{search_index/connector => new_index}/select_connector/connector_checkable.tsx (70%) create mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/select_connector.tsx delete mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.scss delete mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector.tsx delete mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector_logic.tsx create mode 100644 x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/connector.svg create mode 100644 x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/crawler.svg rename x-pack/plugins/enterprise_search/public/assets/source_icons/{azure_blob.svg => azure_blob_storage.svg} (100%) create mode 100644 x-pack/plugins/enterprise_search/public/assets/source_icons/custom.svg rename x-pack/plugins/enterprise_search/public/assets/source_icons/{google_cloud.svg => google_cloud_storage.svg} (100%) diff --git a/packages/kbn-doc-links/src/get_doc_links.ts b/packages/kbn-doc-links/src/get_doc_links.ts index e5b1f29bec25f..d9fbd1dfc8554 100644 --- a/packages/kbn-doc-links/src/get_doc_links.ts +++ b/packages/kbn-doc-links/src/get_doc_links.ts @@ -129,8 +129,15 @@ export const getDocLinks = ({ kibanaBranch }: GetDocLinkOptions): DocLinks => { bulkApi: `${ELASTICSEARCH_DOCS}docs-bulk.html`, configuration: `${ENTERPRISE_SEARCH_DOCS}configuration.html`, connectors: `${ENTERPRISE_SEARCH_DOCS}connectors.html`, + connectorsAzureBlobStorage: `${ENTERPRISE_SEARCH_DOCS}connectors-azure-blob.html`, + connectorsGoogleCloudStorage: `${ENTERPRISE_SEARCH_DOCS}connectors-google-cloud.html`, connectorsMongoDB: `${ENTERPRISE_SEARCH_DOCS}connectors-mongodb.html`, connectorsMySQL: `${ENTERPRISE_SEARCH_DOCS}connectors-mysql.html`, + connectorsMicrosoftSQL: `${ENTERPRISE_SEARCH_DOCS}connectors-ms-sql.html`, + connectorsNetworkDrive: `${ENTERPRISE_SEARCH_DOCS}connectors-network-drive.html`, + connectorsOracle: `${ENTERPRISE_SEARCH_DOCS}connectors-oracle.html`, + connectorsPostgreSQL: `${ENTERPRISE_SEARCH_DOCS}connectors-postgresql.html`, + connectorsS3: `${ENTERPRISE_SEARCH_DOCS}connectors-s3.html`, connectorsWorkplaceSearch: `${ENTERPRISE_SEARCH_DOCS}connectors.html#connectors-workplace-search`, crawlerExtractionRules: `${ENTERPRISE_SEARCH_DOCS}crawler-extraction-rules.html`, crawlerManaging: `${ENTERPRISE_SEARCH_DOCS}crawler-managing.html`, @@ -139,6 +146,7 @@ export const getDocLinks = ({ kibanaBranch }: GetDocLinkOptions): DocLinks => { documentLevelSecurity: `${ELASTICSEARCH_DOCS}document-level-security.html`, elser: `${MACHINE_LEARNING_DOCS}ml-nlp-elser.html`, engines: `${ENTERPRISE_SEARCH_DOCS}engines.html`, + ingestionApis: `${ENTERPRISE_SEARCH_DOCS}ingestion-apis.html`, ingestPipelines: `${ENTERPRISE_SEARCH_DOCS}ingest-pipelines.html`, languageAnalyzers: `${ELASTICSEARCH_DOCS}analysis-lang-analyzer.html`, languageClients: `${ENTERPRISE_SEARCH_DOCS}programming-language-clients.html`, diff --git a/packages/kbn-doc-links/src/types.ts b/packages/kbn-doc-links/src/types.ts index d1efdada21026..92dc64e916644 100644 --- a/packages/kbn-doc-links/src/types.ts +++ b/packages/kbn-doc-links/src/types.ts @@ -114,8 +114,15 @@ export interface DocLinks { readonly bulkApi: string; readonly configuration: string; readonly connectors: string; + readonly connectorsAzureBlobStorage: string; + readonly connectorsGoogleCloudStorage: string; + readonly connectorsMicrosoftSQL: string; readonly connectorsMongoDB: string; readonly connectorsMySQL: string; + readonly connectorsNetworkDrive: string; + readonly connectorsOracle: string; + readonly connectorsPostgreSQL: string; + readonly connectorsS3: string; readonly connectorsWorkplaceSearch: string; readonly crawlerExtractionRules: string; readonly crawlerManaging: string; @@ -124,6 +131,7 @@ export interface DocLinks { readonly documentLevelSecurity: string; readonly elser: string; readonly engines: string; + readonly ingestionApis: string; readonly ingestPipelines: string; readonly languageAnalyzers: string; readonly languageClients: string; diff --git a/x-pack/plugins/enterprise_search/common/constants.ts b/x-pack/plugins/enterprise_search/common/constants.ts index d2d9d8a5a3302..bdaf569d27143 100644 --- a/x-pack/plugins/enterprise_search/common/constants.ts +++ b/x-pack/plugins/enterprise_search/common/constants.ts @@ -157,10 +157,9 @@ export const DEFAULT_PIPELINE_VALUES: IngestPipelineParams = { }; export enum INGESTION_METHOD_IDS { - api = 'api', - connector = 'connector', - crawler = 'crawler', - native_connector = 'native_connector', + API = 'api', + CONNECTOR = 'connector', + CRAWLER = 'crawler', } export const DEFAULT_PRODUCT_FEATURES: ProductFeatures = { diff --git a/x-pack/plugins/enterprise_search/common/guided_onboarding/search_guide_config.ts b/x-pack/plugins/enterprise_search/common/guided_onboarding/search_guide_config.ts index 7d0473d252401..eca1871bc81da 100644 --- a/x-pack/plugins/enterprise_search/common/guided_onboarding/search_guide_config.ts +++ b/x-pack/plugins/enterprise_search/common/guided_onboarding/search_guide_config.ts @@ -15,9 +15,9 @@ export const websiteSearchGuideId = 'websiteSearch'; export const databaseSearchGuideId = 'databaseSearch'; const apiMethods = { - [appSearchGuideId]: INGESTION_METHOD_IDS.api, - [databaseSearchGuideId]: INGESTION_METHOD_IDS.native_connector, - [websiteSearchGuideId]: INGESTION_METHOD_IDS.crawler, + [appSearchGuideId]: INGESTION_METHOD_IDS.API, + [databaseSearchGuideId]: INGESTION_METHOD_IDS.CONNECTOR, + [websiteSearchGuideId]: INGESTION_METHOD_IDS.CRAWLER, }; export type EnterpriseSearchGuideIds = diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.test.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.test.ts index d5d1b7845f8cc..b24355af98683 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.test.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.test.ts @@ -20,7 +20,11 @@ describe('addConnectorApiLogic', () => { it('calls correct api', async () => { const promise = Promise.resolve({ id: 'unique id', index_name: 'indexName' }); http.post.mockReturnValue(promise); - const result = addConnector({ indexName: 'indexName', isNative: false, language: 'en' }); + const result = addConnector({ + indexName: 'indexName', + isNative: false, + language: 'en', + }); await nextTick(); expect(http.post).toHaveBeenCalledWith('/internal/enterprise_search/connectors', { body: JSON.stringify({ index_name: 'indexName', is_native: false, language: 'en' }), diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.ts index 80d31e62d9525..33989ceff579b 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/add_connector_api_logic.ts @@ -18,6 +18,7 @@ export interface AddConnectorApiLogicArgs { indexName: string; isNative: boolean; language: string | null; + serviceType?: string; } export interface AddConnectorApiLogicResponse { @@ -30,6 +31,7 @@ export const addConnector = async ({ indexName, isNative, language, + serviceType, }: AddConnectorApiLogicArgs): Promise => { const route = '/internal/enterprise_search/connectors'; @@ -41,6 +43,7 @@ export const addConnector = async ({ index_name: indexName, is_native: isNative, language, + service_type: serviceType, }; const result = await HttpLogic.values.http.post(route, { body: JSON.stringify(params), diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/set_native_connector_api_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/set_native_connector_api_logic.ts deleted file mode 100644 index d5959134845e9..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/api/connector/set_native_connector_api_logic.ts +++ /dev/null @@ -1,36 +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 { createApiLogic } from '../../../shared/api_logic/create_api_logic'; -import { HttpLogic } from '../../../shared/http'; -import { NativeConnector } from '../../components/search_index/connector/types'; - -export interface SetNativeConnectorArgs { - connectorId: string; - serviceType: string; -} - -export interface SetNativeConnectorResponse { - connectorId: string; - nativeConnector: NativeConnector; -} - -export const setNativeConnector = async ({ connectorId, serviceType }: SetNativeConnectorArgs) => { - await HttpLogic.values.http.put( - `/internal/enterprise_search/connectors/${connectorId}/configure_native`, - { - body: JSON.stringify({ service_type: serviceType }), - } - ); - - return { connectorId }; -}; - -export const SetNativeConnectorLogic = createApiLogic( - ['content', 'service_type_connector_api_logic'], - setNativeConnector -); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.test.tsx index 0a7e767617b38..031d3e8da3ecd 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.test.tsx @@ -5,11 +5,13 @@ * 2.0. */ +import { setMockValues } from '../../../../__mocks__/kea_logic'; + import React from 'react'; import { shallow } from 'enzyme'; -import { EuiSteps } from '@elastic/eui'; +import { Status } from '../../../../../../common/types/api'; import { NewSearchIndexTemplate } from '../new_search_index_template'; @@ -18,6 +20,7 @@ import { MethodApi } from './method_api'; describe('MethodApi', () => { beforeEach(() => { jest.clearAllMocks(); + setMockValues({ status: Status.IDLE }); }); it('renders API ingestion method tab', () => { @@ -25,6 +28,5 @@ describe('MethodApi', () => { const template = wrapper.find(NewSearchIndexTemplate); expect(template.prop('type')).toEqual('api'); - expect(template.find(EuiSteps)).toHaveLength(1); }); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.tsx index c505428449f8a..3d9afeaede533 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api.tsx @@ -7,59 +7,22 @@ import React from 'react'; -import { useActions } from 'kea'; +import { useActions, useValues } from 'kea'; -import { EuiSteps, EuiText } from '@elastic/eui'; -import { i18n } from '@kbn/i18n'; -import { FormattedMessage } from '@kbn/i18n-react'; +import { Status } from '../../../../../../common/types/api'; -import { CREATE_ELASTICSEARCH_INDEX_STEP, BUILD_SEARCH_EXPERIENCE_STEP } from '../method_steps'; import { NewSearchIndexTemplate } from '../new_search_index_template'; import { MethodApiLogic } from './method_api_logic'; export const MethodApi: React.FC = () => { const { makeRequest } = useActions(MethodApiLogic); + const { status } = useValues(MethodApiLogic); return ( - } type="api" + buttonLoading={status === Status.LOADING} onSubmit={(indexName, language) => makeRequest({ indexName, language })} - > - -

- {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.methodApi.steps.configureIngestion.content', - { - defaultMessage: - 'Generate an API key and view the documentation for posting documents to the Elasticsearch API endpoint. Language clients are available for streamlined integration.', - } - )} -

- - ), - status: 'incomplete', - title: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.configureIngestion.title', - { - defaultMessage: 'Configure ingestion settings', - } - ), - titleSize: 'xs', - }, - BUILD_SEARCH_EXPERIENCE_STEP, - ]} - /> -
+ /> ); }; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api_logic.ts index 3608395cf5f34..2f0332da0eeab 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api_logic.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_api/method_api_logic.ts @@ -24,9 +24,14 @@ type MethodApiActions = Pick< 'apiSuccess' | 'makeRequest' >; -export const MethodApiLogic = kea>({ +interface MethodApiValues { + status: typeof CreateApiIndexApiLogic.values['status']; +} + +export const MethodApiLogic = kea>({ connect: { actions: [CreateApiIndexApiLogic, ['apiSuccess', 'makeRequest']], + values: [CreateApiIndexApiLogic, ['status']], }, listeners: { apiSuccess: ({ indexName }) => { diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.test.tsx index 368c2b7d0c684..fe3126c7fc215 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.test.tsx @@ -11,8 +11,6 @@ import React from 'react'; import { shallow } from 'enzyme'; -import { EuiSteps } from '@elastic/eui'; - import { Status } from '../../../../../../common/types/api'; import { NewSearchIndexTemplate } from '../new_search_index_template'; @@ -27,10 +25,9 @@ describe('MethodConnector', () => { }); it('renders connector ingestion method tab', () => { - const wrapper = shallow(); + const wrapper = shallow(); const template = wrapper.find(NewSearchIndexTemplate); expect(template.prop('type')).toEqual('connector'); - expect(template.find(EuiSteps)).toHaveLength(1); }); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.tsx index 522465e1c6957..badcbe493eb1a 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_connector/method_connector.tsx @@ -16,14 +16,10 @@ import { EuiFlexItem, EuiLink, EuiSpacer, - EuiSteps, - EuiText, } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; -import { FormattedMessage } from '@kbn/i18n-react'; - import { Status } from '../../../../../../common/types/api'; import { docLinks } from '../../../../shared/doc_links'; import { KibanaLogic } from '../../../../shared/kibana'; @@ -31,11 +27,11 @@ import { LicensingLogic } from '../../../../shared/licensing'; import { AddConnectorApiLogic } from '../../../api/connector/add_connector_api_logic'; import { FetchCloudHealthApiLogic } from '../../../api/stats/fetch_cloud_health_api_logic'; +import { NATIVE_CONNECTORS } from '../../search_index/connector/constants'; import { LicensingCallout, LICENSING_FEATURE, } from '../../shared/licensing_callout/licensing_callout'; -import { CREATE_ELASTICSEARCH_INDEX_STEP, BUILD_SEARCH_EXPERIENCE_STEP } from '../method_steps'; import { NewSearchIndexLogic } from '../new_search_index_logic'; import { NewSearchIndexTemplate } from '../new_search_index_template'; @@ -43,7 +39,11 @@ import { errorToText } from '../utils/error_to_text'; import { AddConnectorLogic } from './add_connector_logic'; -export const MethodConnector: React.FC<{ isNative: boolean }> = ({ isNative }) => { +interface MethodConnectorProps { + serviceType: string; +} + +export const MethodConnector: React.FC = ({ serviceType }) => { const { apiReset, makeRequest } = useActions(AddConnectorApiLogic); const { error, status } = useValues(AddConnectorApiLogic); const { isModalVisible } = useValues(AddConnectorLogic); @@ -53,6 +53,10 @@ export const MethodConnector: React.FC<{ isNative: boolean }> = ({ isNative }) = const { hasPlatinumLicense } = useValues(LicensingLogic); const { data: cloudHealthData } = useValues(FetchCloudHealthApiLogic); + const isNative = + Boolean(NATIVE_CONNECTORS.find((connector) => connector.serviceType === serviceType)) && + isCloud; + const isGated = isNative && !isCloud && !hasPlatinumLicense; const hasLowMemory = isNative && isCloud && cloudHealthData && !cloudHealthData.has_min_connector_memory; @@ -108,145 +112,62 @@ export const MethodConnector: React.FC<{ isNative: boolean }> = ({ isNative }) = docsUrl={docLinks.connectors} disabled={isGated || hasLowMemory} error={errorToText(error)} - title={ - isNative - ? i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.title', - { - defaultMessage: 'Index using a connector', - } - ) - : i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.title', - { - defaultMessage: 'Build a connector', - } - ) - } type="connector" onNameChange={() => { apiReset(); }} - onSubmit={(name, lang) => makeRequest({ indexName: name, isNative, language: lang })} + onSubmit={(name, lang) => + makeRequest({ indexName: name, isNative, language: lang, serviceType }) + } buttonLoading={status === Status.LOADING} - > - -

- - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.title', - { - defaultMessage: 'Build a connector', - } - )} - - ), - }} - /> -

- - ), - status: 'incomplete', - title: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.methodConnector.steps.nativeConnector.title', - { - defaultMessage: 'Configure a connector', - } - ), - titleSize: 'xs', - } - : { - children: ( - -

- - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.bulkAPILink', - { defaultMessage: 'Bulk API' } - )} - - ), - }} - /> -

-
- ), - status: 'incomplete', - title: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.title', - { - defaultMessage: 'Build and configure a connector', - } - ), - titleSize: 'xs', - }, - BUILD_SEARCH_EXPERIENCE_STEP, - ]} - /> - {isModalVisible && ( - { - event?.preventDefault(); - setIsModalVisible(false); - }} - onConfirm={(event) => { - event.preventDefault(); - makeRequest({ - deleteExistingConnector: true, + /> + + {isModalVisible && ( + { + setIsModalVisible(false); + }} + onConfirm={() => { + makeRequest({ + deleteExistingConnector: true, + indexName: fullIndexName, + isNative, + language, + serviceType, + }); + }} + cancelButtonText={i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.cancelButton.label', + { + defaultMessage: 'Cancel', + } + )} + confirmButtonText={i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.confirmButton.label', + { + defaultMessage: 'Replace configuration', + } + )} + defaultFocusedButton="confirm" + > + {i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description', + { + defaultMessage: + 'A deleted index named {indexName} was originally tied to an existing connector configuration. Would you like to replace the existing connector configuration with a new one?', + values: { indexName: fullIndexName, - isNative, - language, - }); - }} - cancelButtonText={i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.cancelButton.label', - { - defaultMessage: 'Cancel', - } - )} - confirmButtonText={i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.confirmButton.label', - { - defaultMessage: 'Replace configuration', - } - )} - defaultFocusedButton="confirm" - > - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description', - { - defaultMessage: - 'A deleted index named {indexName} was originally tied to an existing connector configuration. Would you like to replace the existing connector configuration with a new one?', - values: { - indexName: fullIndexName, - }, - } - )} - - )} - + }, + } + )} + + )}
); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.test.tsx index ab0d58858d93c..bda59c9ad9fcc 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.test.tsx @@ -11,8 +11,6 @@ import React from 'react'; import { shallow } from 'enzyme'; -import { EuiSteps } from '@elastic/eui'; - import { Status } from '../../../../../../common/types/api'; import { NewSearchIndexTemplate } from '../new_search_index_template'; @@ -35,6 +33,5 @@ describe('MethodCrawler', () => { const template = wrapper.find(NewSearchIndexTemplate); expect(template.prop('type')).toEqual('crawler'); - expect(template.find(EuiSteps)).toHaveLength(1); }); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.tsx index 2adbee1515d4e..1264e400fce4e 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_crawler/method_crawler.tsx @@ -9,9 +9,7 @@ import React from 'react'; import { useValues, useActions } from 'kea'; -import { EuiFlexGroup, EuiFlexItem, EuiSteps, EuiText } from '@elastic/eui'; - -import { i18n } from '@kbn/i18n'; +import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; import { Status } from '../../../../../../common/types/api'; import { docLinks } from '../../../../shared/doc_links'; @@ -22,7 +20,6 @@ import { LicensingCallout, LICENSING_FEATURE, } from '../../shared/licensing_callout/licensing_callout'; -import { CREATE_ELASTICSEARCH_INDEX_STEP, BUILD_SEARCH_EXPERIENCE_STEP } from '../method_steps'; import { NewSearchIndexTemplate } from '../new_search_index_template'; import { MethodCrawlerLogic } from './method_crawler_logic'; @@ -46,48 +43,12 @@ export const MethodCrawler: React.FC = () => { )} makeRequest({ indexName, language })} disabled={isGated} buttonLoading={status === Status.LOADING} docsUrl={docLinks.crawlerOverview} - > - -

- {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.methodCrawler.steps.configureIngestion.content', - { - defaultMessage: - 'Configure the domains you’d like to crawl, and when ready trigger your first crawl. Let Enterprise Search do the rest.', - } - )} -

- - ), - status: 'incomplete', - title: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.configureIngestion.title', - { - defaultMessage: 'Configure ingestion settings', - } - ), - titleSize: 'xs', - }, - BUILD_SEARCH_EXPERIENCE_STEP, - ]} - /> -
+ />
); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_steps.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_steps.tsx deleted file mode 100644 index 20ca643be580d..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/method_steps.tsx +++ /dev/null @@ -1,98 +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 { EuiLink, EuiText } from '@elastic/eui'; - -import { EuiContainedStepProps } from '@elastic/eui/src/components/steps/steps'; -import { i18n } from '@kbn/i18n'; - -import { FormattedMessage } from '@kbn/i18n-react'; - -import { - APP_SEARCH_URL, - ENTERPRISE_SEARCH_ELASTICSEARCH_URL, -} from '../../../../../common/constants'; -import { docLinks } from '../../../shared/doc_links'; -import { EuiLinkTo } from '../../../shared/react_router_helpers'; - -export const CREATE_ELASTICSEARCH_INDEX_STEP: EuiContainedStepProps = { - children: ( - -

- - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.createIndex.languageAnalyzerLink', - { defaultMessage: 'language analyzer' } - )} - - ), - }} - /> -

-
- ), - status: 'incomplete', - title: i18n.translate('xpack.enterpriseSearch.content.newIndex.steps.createIndex.title', { - defaultMessage: 'Create an Elasticsearch index', - }), - - titleSize: 'xs', -}; - -export const BUILD_SEARCH_EXPERIENCE_STEP: EuiContainedStepProps = { - children: ( - -

- - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.appSearchLink', - { defaultMessage: 'App Search' } - )} - - ), - elasticsearchLink: ( - - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.elasticsearchLink', - { defaultMessage: 'Elasticsearch' } - )} - - ), - searchEngineLink: ( - - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.searchEngineLink', - { defaultMessage: 'search engine' } - )} - - ), - }} - /> -

-
- ), - status: 'incomplete', - title: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.title', - { - defaultMessage: 'Build a search experience', - } - ), - titleSize: 'xs', -}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.scss b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.scss deleted file mode 100644 index ba464bfd5b145..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.scss +++ /dev/null @@ -1,22 +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. - */ - -.entSearchNewIndexButtonGroupButton { - border: $euiBorderThin; - - &--selected { - border: 1px $euiColorPrimary solid; - } - - .rightArrow { - border-radius: $euiBorderRadiusSmall; - background: transparentize($euiColorPrimary, .8); - color: $euiColorPrimaryText; - padding: $euiSizeXS; - width: $euiSizeL; - } -} diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.tsx index 65ef18209fa0b..f9a08a21b0b6d 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index.tsx @@ -11,216 +11,121 @@ import { useLocation } from 'react-router-dom'; import { useValues } from 'kea'; -import { - EuiBadge, - EuiFlexGroup, - EuiFlexItem, - EuiPanel, - EuiSpacer, - EuiText, - EuiTitle, -} from '@elastic/eui'; +import { EuiButton, EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; import { INGESTION_METHOD_IDS } from '../../../../../common/constants'; import { ProductFeatures } from '../../../../../common/types'; -import { BETA_LABEL } from '../../../shared/constants/labels'; + +import { CONTINUE_BUTTON_LABEL } from '../../../shared/constants'; + +import { generateEncodedPath } from '../../../shared/encode_path_params'; import { KibanaLogic } from '../../../shared/kibana/kibana_logic'; + import { parseQueryParams } from '../../../shared/query_params'; import { EuiLinkTo } from '../../../shared/react_router_helpers'; - +import { NEW_INDEX_METHOD_PATH, NEW_INDEX_SELECT_CONNECTOR_PATH } from '../../routes'; import { EnterpriseSearchContentPageTemplate } from '../layout/page_template'; import { baseBreadcrumbs } from '../search_indices'; -import { ButtonGroup, ButtonGroupOption } from './button_group'; -import { SearchIndexEmptyState } from './empty_state'; -import { MethodApi } from './method_api/method_api'; -import { MethodConnector } from './method_connector/method_connector'; -import { MethodCrawler } from './method_crawler/method_crawler'; - -const betaBadge = ( - - {BETA_LABEL} - -); - -const METHOD_BUTTON_GROUP_OPTIONS: Record = { - [INGESTION_METHOD_IDS.crawler]: { - description: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.description', - { - defaultMessage: 'Discover, extract, index, and sync all of your website content', - } - ), - footer: i18n.translate('xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.footer', { - defaultMessage: 'No development required', - }), - icon: 'globe', - id: INGESTION_METHOD_IDS.crawler, - label: i18n.translate('xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.label', { - defaultMessage: 'Use the web crawler', - }), - }, - [INGESTION_METHOD_IDS.native_connector]: { - badge: betaBadge, - description: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.description', - { - defaultMessage: - 'Configure a connector to extract, index, and sync all of your content from supported data sources ', - } - ), - footer: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.footer', - { - defaultMessage: 'No development required', - } - ), - icon: 'visVega', - id: INGESTION_METHOD_IDS.native_connector, - label: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.label', - { - defaultMessage: 'Use a connector', - } - ), - }, - [INGESTION_METHOD_IDS.api]: { - description: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.buttonGroup.api.description', - { - defaultMessage: 'Add documents programmatically by connecting with the API', - } - ), - footer: i18n.translate('xpack.enterpriseSearch.content.newIndex.buttonGroup.api.footer', { - defaultMessage: 'Some development required', - }), - icon: 'visVega', - id: INGESTION_METHOD_IDS.api, - label: i18n.translate('xpack.enterpriseSearch.content.newIndex.buttonGroup.api.label', { - defaultMessage: 'Use the API', - }), - }, - [INGESTION_METHOD_IDS.connector]: { - badge: betaBadge, - description: i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.description', - { - defaultMessage: - 'Use the connector framework to quickly build connectors for custom data sources', - } - ), - footer: i18n.translate('xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.footer', { - defaultMessage: 'Development required', - }), - icon: 'package', - id: INGESTION_METHOD_IDS.connector, - label: i18n.translate('xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.label', { - defaultMessage: 'Build a connector', - }), - }, -}; +import { NewIndexCard } from './new_index_card'; -const getAvailableMethodOptions = (productFeatures: ProductFeatures): ButtonGroupOption[] => { +const getAvailableMethodOptions = (productFeatures: ProductFeatures): INGESTION_METHOD_IDS[] => { return [ - ...(productFeatures.hasWebCrawler - ? [METHOD_BUTTON_GROUP_OPTIONS[INGESTION_METHOD_IDS.crawler]] - : []), - ...(productFeatures.hasNativeConnectors - ? [METHOD_BUTTON_GROUP_OPTIONS[INGESTION_METHOD_IDS.native_connector]] - : []), - METHOD_BUTTON_GROUP_OPTIONS[INGESTION_METHOD_IDS.api], - ...(productFeatures.hasConnectors - ? [METHOD_BUTTON_GROUP_OPTIONS[INGESTION_METHOD_IDS.connector]] - : []), + ...(productFeatures.hasWebCrawler ? [INGESTION_METHOD_IDS.CRAWLER] : []), + INGESTION_METHOD_IDS.API, + ...(productFeatures.hasConnectors ? [INGESTION_METHOD_IDS.CONNECTOR] : []), ]; }; export const NewIndex: React.FC = () => { const { search } = useLocation(); + const { method } = parseQueryParams(search); const { capabilities, productFeatures } = useValues(KibanaLogic); - const { method: methodParam } = parseQueryParams(search); const availableIngestionMethodOptions = getAvailableMethodOptions(productFeatures); - const initialSelectedMethod = - availableIngestionMethodOptions.find((option) => option.id === methodParam) ?? - availableIngestionMethodOptions[0]; - - const [selectedMethod, setSelectedMethod] = useState(initialSelectedMethod); - + const [selectedMethod, setSelectedMethod] = useState( + Array.isArray(method) ? method[0] : method ?? INGESTION_METHOD_IDS.CRAWLER + ); return ( - - - - -

- {i18n.translate('xpack.enterpriseSearch.content.newIndex.selectSearchIndex.title', { - defaultMessage: 'Select an ingestion method', - })} -

-
- - -

- {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.selectSearchIndex.description', - { - defaultMessage: - 'Create a search optimized Elasticsearch index by selecting an ingestion method for your use case.', - } + + <> + + + {availableIngestionMethodOptions.map((type) => ( + + { + setSelectedMethod(type); + }} + isSelected={selectedMethod === type} + /> + + ))} + + + + + + {capabilities.navLinks.integrations && ( + <> + + {i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.viewIntegrationsLink', + { + defaultMessage: 'View additional integrations', + } + )} + + )} -

-
- - - {capabilities.navLinks.integrations && ( - <> - - - {i18n.translate('xpack.enterpriseSearch.content.newIndex.viewIntegrationsLink', { - defaultMessage: 'View additional integrations', - })} - - - )} -
-
- - {selectedMethod ? ( - <> - {selectedMethod.id === INGESTION_METHOD_IDS.crawler && } - {selectedMethod.id === INGESTION_METHOD_IDS.api && } - {selectedMethod.id === INGESTION_METHOD_IDS.connector && ( - - )} - {selectedMethod.id === INGESTION_METHOD_IDS.native_connector && ( - - )} - - ) : ( - - )} - + + + ).includes( + selectedMethod + ) + } + fill + onClick={() => { + if (selectedMethod === INGESTION_METHOD_IDS.CONNECTOR) { + KibanaLogic.values.navigateToUrl(NEW_INDEX_SELECT_CONNECTOR_PATH); + } else { + KibanaLogic.values.navigateToUrl( + generateEncodedPath(NEW_INDEX_METHOD_PATH, { type: selectedMethod }) + ); + } + }} + > + {CONTINUE_BUTTON_LABEL} + + +
+ +
); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_card.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_card.tsx new file mode 100644 index 0000000000000..31a15a9a13275 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_card.tsx @@ -0,0 +1,132 @@ +/* + * 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, { MouseEventHandler } from 'react'; + +import { EuiCardProps, EuiIconProps, EuiTextColor } from '@elastic/eui'; +import { EuiBadge, EuiButton, EuiCard, EuiIcon, EuiSpacer } from '@elastic/eui'; + +import { i18n } from '@kbn/i18n'; + +import { INGESTION_METHOD_IDS } from '../../../../../common/constants'; + +import { getIngestionMethodIconType } from './utils'; + +export interface NewIndexCardProps { + isSelected?: boolean; + onSelect?: MouseEventHandler; + type: INGESTION_METHOD_IDS; +} + +export interface MethodCardOptions { + description: EuiCardProps['description']; + footer: Record; + icon: EuiIconProps['type']; + title: EuiCardProps['title']; +} + +const NO_DEVELOPMENT_LABEL = i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.methodCard.noDevelopment.label', + { + defaultMessage: 'No development required', + } +); + +const METHOD_CARD_OPTIONS: Record = { + [INGESTION_METHOD_IDS.CRAWLER]: { + description: i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.methodCard.crawler.description', + { + defaultMessage: 'Discover, extract, index, and sync all of your website content', + } + ), + footer: { + buttonLabel: i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.methodCard.crawler.label', + { + defaultMessage: 'Use a web crawler', + } + ), + label: NO_DEVELOPMENT_LABEL, + }, + icon: getIngestionMethodIconType(INGESTION_METHOD_IDS.CRAWLER), + title: i18n.translate('xpack.enterpriseSearch.content.newIndex.methodCard.crawler.title', { + defaultMessage: 'Web crawler', + }), + }, + [INGESTION_METHOD_IDS.CONNECTOR]: { + description: i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.methodCard.connector.description', + { + defaultMessage: + 'Use the connector framework to quickly build connectors for custom data sources', + } + ), + footer: { + buttonLabel: i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.methodCard.connector.label', + { + defaultMessage: 'Use a connector', + } + ), + label: NO_DEVELOPMENT_LABEL, + }, + icon: getIngestionMethodIconType(INGESTION_METHOD_IDS.CONNECTOR), + title: i18n.translate('xpack.enterpriseSearch.content.newIndex.methodCard.connector.title', { + defaultMessage: 'Connector', + }), + }, + [INGESTION_METHOD_IDS.API]: { + description: i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.methodCard.api.description', + { + defaultMessage: 'Add documents programmatically by connecting with the API', + } + ), + footer: { + buttonLabel: i18n.translate('xpack.enterpriseSearch.content.newIndex.methodCard.api.label', { + defaultMessage: 'Use the API', + }), + label: i18n.translate('xpack.enterpriseSearch.content.newIndex.methodCard.api.footer', { + defaultMessage: 'Some development required', + }), + }, + icon: getIngestionMethodIconType(INGESTION_METHOD_IDS.API), + title: i18n.translate('xpack.enterpriseSearch.content.newIndex.methodCard.api.title', { + defaultMessage: 'API', + }), + }, +}; +export const NewIndexCard: React.FC = ({ onSelect, isSelected, type }) => { + if (!METHOD_CARD_OPTIONS[type]) { + return null; + } + const { icon, title, description, footer } = METHOD_CARD_OPTIONS[type]; + + return ( + } + title={title} + description={{description}} + footer={ + <> + {footer.label} + + + {footer.buttonLabel} + + + } + /> + ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_router.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_router.tsx new file mode 100644 index 0000000000000..2388ab7ffa407 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_index_router.tsx @@ -0,0 +1,37 @@ +/* + * 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 { Switch } from 'react-router-dom'; + +import { Route } from '@kbn/shared-ux-router'; + +import { + NEW_INDEX_PATH, + NEW_INDEX_SELECT_CONNECTOR_PATH, + NEW_INDEX_METHOD_PATH, +} from '../../routes'; + +import { NewIndex } from './new_index'; +import { NewSearchIndexPage } from './new_search_index_page'; +import { SelectConnector } from './select_connector/select_connector'; + +export const NewIndexRouter: React.FC = () => { + return ( + + + + + + + + + + + + ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_page.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_page.tsx new file mode 100644 index 0000000000000..756875c9811cb --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_page.tsx @@ -0,0 +1,126 @@ +/* + * 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 { useLocation, useParams } from 'react-router-dom'; + +import { EuiFlexGroup, EuiFlexItem, EuiIcon } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; + +import { INGESTION_METHOD_IDS } from '../../../../../common/constants'; +import { parseQueryParams } from '../../../shared/query_params'; + +import { EnterpriseSearchContentPageTemplate } from '../layout/page_template'; +import { CONNECTORS } from '../search_index/connector/constants'; +import { baseBreadcrumbs } from '../search_indices'; + +import { MethodApi } from './method_api/method_api'; +import { MethodConnector } from './method_connector/method_connector'; +import { MethodCrawler } from './method_crawler/method_crawler'; +import { getIngestionMethodIconType } from './utils'; + +function getTitle(method: string, serviceType: string): string { + switch (method) { + case INGESTION_METHOD_IDS.API: + return i18n.translate('xpack.enterpriseSearch.content.new_index.apiTitle', { + defaultMessage: 'New search index', + }); + case INGESTION_METHOD_IDS.CONNECTOR: { + const connector = + Boolean(serviceType) && CONNECTORS.find((item) => item.serviceType === serviceType); + return connector + ? i18n.translate('xpack.enterpriseSearch.content.new_index.connectorTitleWithServiceType', { + defaultMessage: 'New {name} search index', + values: { + name: connector.name, + }, + }) + : i18n.translate('xpack.enterpriseSearch.content.new_index.connectorTitle', { + defaultMessage: 'New connector search index', + }); + } + case INGESTION_METHOD_IDS.CRAWLER: + return i18n.translate('xpack.enterpriseSearch.content.new_index.crawlerTitle', { + defaultMessage: 'New web crawler search index', + }); + default: + return i18n.translate('xpack.enterpriseSearch.content.new_index.genericTitle', { + defaultMessage: 'New search index', + }); + } +} + +function getDescription(method: string, serviceType: string): string { + switch (method) { + case INGESTION_METHOD_IDS.API: + return i18n.translate('xpack.enterpriseSearch.content.new_index.apiDescription', { + defaultMessage: 'A search index stores your data.', + }); + case INGESTION_METHOD_IDS.CONNECTOR: { + const connector = + Boolean(serviceType) && CONNECTORS.find((item) => item.serviceType === serviceType); + return connector + ? i18n.translate( + 'xpack.enterpriseSearch.content.new_index.connectorDescriptionWithServiceType', + { + defaultMessage: 'A search index stores the data for your {name} connector.', + values: { + name: connector.name, + }, + } + ) + : i18n.translate('xpack.enterpriseSearch.content.new_index.connectorDescription', { + defaultMessage: 'A search index stores the data for your connector.', + }); + } + case INGESTION_METHOD_IDS.CRAWLER: + return i18n.translate('xpack.enterpriseSearch.content.new_index.crawlerDescription', { + defaultMessage: 'A search index stores the data for your web crawler.', + }); + default: + return i18n.translate('xpack.enterpriseSearch.content.new_index.defaultDescription', { + defaultMessage: 'A search index stores your data.', + }); + } +} + +export const NewSearchIndexPage: React.FC = () => { + const type = decodeURIComponent(useParams<{ type: string }>().type); + const { search } = useLocation(); + const { service_type: inputServiceType } = parseQueryParams(search); + const serviceType = Array.isArray(inputServiceType) + ? inputServiceType[0] + : inputServiceType || ''; + + return ( + + + + + {getTitle(type, serviceType)} + + ), + }} + > + { + <> + {type === INGESTION_METHOD_IDS.CRAWLER && } + {type === INGESTION_METHOD_IDS.API && } + {type === INGESTION_METHOD_IDS.CONNECTOR && } + + } + + ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.test.tsx index 2626074285a77..12fc021a0ae11 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.test.tsx @@ -20,7 +20,6 @@ import { describe('NewSearchIndexTemplate', () => { const mockProps: NewSearchIndexTemplateProps = { onSubmit: jest.fn(), - title: 'Index using the API', type: 'api', }; @@ -35,13 +34,9 @@ describe('NewSearchIndexTemplate', () => { setMockActions({ makeRequest: jest.fn(), setLanguageSelectValue: jest.fn() }); }); - it('renders children', () => { - const wrapper = shallow( - -
- - ); + it('renders', () => { + const wrapper = shallow(); - expect(wrapper.find('[data-test-subj="ChildComponent"]')).toHaveLength(1); + expect(wrapper.find('EuiForm')).toHaveLength(1); }); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.tsx index 8142a26ceff93..c7b65b28f0a99 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/new_search_index_template.tsx @@ -16,16 +16,19 @@ import { EuiFlexItem, EuiForm, EuiFormRow, - EuiHorizontalRule, EuiLink, - EuiPanel, EuiSelect, EuiSpacer, EuiText, - EuiTitle, } from '@elastic/eui'; + import { i18n } from '@kbn/i18n'; +import { INGESTION_METHOD_IDS } from '../../../../../common/constants'; + +import { BACK_BUTTON_LABEL } from '../../../shared/constants'; +import { docLinks } from '../../../shared/doc_links'; + import { SUPPORTED_LANGUAGES } from './constants'; import { NewSearchIndexLogic } from './new_search_index_logic'; import { LanguageForOptimization } from './types'; @@ -37,19 +40,15 @@ export interface Props { error?: string | React.ReactNode; onNameChange?(name: string): void; onSubmit(name: string, language: LanguageForOptimization): void; - title: React.ReactNode; type: string; } export const NewSearchIndexTemplate: React.FC = ({ buttonLoading, - children, disabled, - docsUrl, error, onNameChange, onSubmit, - title, type, }) => { const { @@ -102,26 +101,21 @@ export const NewSearchIndexTemplate: React.FC = ({ }; return ( - + <> { event.preventDefault(); onSubmit(fullIndexName, language); }} > - - -

{title}

-
-
= ({ + + + + {i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.learnMoreIndices.linkText', + { + defaultMessage: 'Learn more about indices', + } + )} + + + + {type === INGESTION_METHOD_IDS.CONNECTOR && ( + + + {i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.learnMoreConnectors.linkText', + { + defaultMessage: 'Learn more about connectors', + } + )} + + + )} + {type === INGESTION_METHOD_IDS.CRAWLER && ( + + + {i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.learnMoreCrawler.linkText', + { + defaultMessage: 'Learn more about the Elastic web crawler', + } + )} + + + )} + {type === INGESTION_METHOD_IDS.API && ( + + + {i18n.translate( + 'xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.learnMoreApis.linkText', + { + defaultMessage: 'Learn more about ingestion APIs', + } + )} + + + )} + + + + history.back()} + > + {BACK_BUTTON_LABEL} + + = ({ )} - {!!docsUrl && ( - - - {i18n.translate( - 'xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.viewDocumentation.linkText', - { - defaultMessage: 'View the documentation', - } - )} - - - )}
- - {children} -
+ ); }; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/connector_checkable.tsx similarity index 70% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.tsx rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/connector_checkable.tsx index 0fc03da850596..0019b843678de 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/connector_checkable.tsx @@ -8,38 +8,40 @@ import React from 'react'; import { + EuiBadge, EuiCheckableCard, EuiCheckableCardProps, EuiFlexGroup, EuiFlexItem, EuiIcon, EuiLink, - EuiSpacer, EuiText, EuiTitle, } from '@elastic/eui'; -import { i18n } from '@kbn/i18n'; -import { NATIVE_CONNECTOR_ICONS } from '../../../../../../assets/source_icons/native_connector_icons'; +import { i18n } from '@kbn/i18n'; -import './connector_checkable.scss'; +import { BETA_LABEL } from '../../../../shared/constants'; export type ConnectorCheckableProps = Omit< EuiCheckableCardProps, 'id' | 'label' | 'name' | 'value' > & { - documentationUrl: string; + documentationUrl: string | undefined; + icon: string; + isBeta: boolean; name: string; serviceType: string; }; export const ConnectorCheckable: React.FC = ({ documentationUrl, + icon, + isBeta, name, serviceType, ...props }) => { - const icon = NATIVE_CONNECTOR_ICONS[serviceType]; return ( = ({ )} - {name} +

{name}

@@ -63,17 +65,7 @@ export const ConnectorCheckable: React.FC = ({ name={name} value={serviceType} > -
- - {i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.description', - { - defaultMessage: 'Search over your {name} content with Enterprise Search.', - values: { name }, - } - )} - - + {documentationUrl && ( {i18n.translate( 'xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.documentationLinkLabel', @@ -82,7 +74,12 @@ export const ConnectorCheckable: React.FC = ({ } )} -
+ )} + {isBeta && ( + + {BETA_LABEL} + + )}
); }; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/select_connector.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/select_connector.tsx new file mode 100644 index 0000000000000..c25c2a54b0082 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/select_connector/select_connector.tsx @@ -0,0 +1,135 @@ +/* + * 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, { useState } from 'react'; + +import { useLocation } from 'react-router-dom'; + +import { + EuiButton, + EuiFlexGrid, + EuiFlexGroup, + EuiFlexItem, + EuiForm, + EuiFormFieldset, + EuiSpacer, + EuiText, +} from '@elastic/eui'; + +import { i18n } from '@kbn/i18n'; + +import { INGESTION_METHOD_IDS } from '../../../../../../common/constants'; + +import { BACK_BUTTON_LABEL, CONTINUE_BUTTON_LABEL } from '../../../../shared/constants'; +import { generateEncodedPath } from '../../../../shared/encode_path_params'; + +import { KibanaLogic } from '../../../../shared/kibana'; +import { parseQueryParams } from '../../../../shared/query_params'; + +import { NEW_INDEX_METHOD_PATH, NEW_INDEX_PATH } from '../../../routes'; +import { EnterpriseSearchContentPageTemplate } from '../../layout'; + +import { CONNECTORS } from '../../search_index/connector/constants'; + +import { baseBreadcrumbs } from '../../search_indices'; + +import { ConnectorCheckable } from './connector_checkable'; + +export const SelectConnector: React.FC = () => { + const { search } = useLocation(); + const { service_type: serviceType } = parseQueryParams(search); + const [selectedConnector, setSelectedConnector] = useState( + Array.isArray(serviceType) ? serviceType[0] : serviceType ?? null + ); + + return ( + + { + event.preventDefault(); + KibanaLogic.values.navigateToUrl( + `${generateEncodedPath(NEW_INDEX_METHOD_PATH, { + type: INGESTION_METHOD_IDS.CONNECTOR, + })}?service_type=${selectedConnector}` + ); + }} + > + +

+ + ), + }} + > + + + {CONNECTORS.map((connector) => ( + + { + setSelectedConnector(connector.serviceType); + }} + documentationUrl={connector.docsUrl} + checked={selectedConnector === connector.serviceType} + /> + + ))} + + + + + + KibanaLogic.values.navigateToUrl(NEW_INDEX_PATH)} + > + {BACK_BUTTON_LABEL} + + + + + + + {CONTINUE_BUTTON_LABEL} + + + + + + + + ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/utils.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/utils.ts index 8568301c4a597..a1d182434f3f1 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/utils.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/new_index/utils.ts @@ -5,6 +5,12 @@ * 2.0. */ +import { INGESTION_METHOD_IDS } from '../../../../../common/constants'; + +import connectorLogo from '../../../../assets/enterprise_search_features/connector.svg'; + +import crawlerLogo from '../../../../assets/enterprise_search_features/crawler.svg'; + import { UNIVERSAL_LANGUAGE_VALUE } from './constants'; import { LanguageForOptimization } from './types'; @@ -12,3 +18,14 @@ import { LanguageForOptimization } from './types'; // but we can't use null as the value for an EuiSelectOption export const getLanguageForOptimization = (language: string): LanguageForOptimization => language === UNIVERSAL_LANGUAGE_VALUE ? null : language; + +export function getIngestionMethodIconType(type: string): string { + switch (type) { + case INGESTION_METHOD_IDS.CRAWLER: + return crawlerLogo; + case INGESTION_METHOD_IDS.CONNECTOR: + return connectorLogo; + default: + return 'consoleApp'; + } +} diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx index 2e53d7651885c..90972bcfc3c51 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/connector_configuration.tsx @@ -43,6 +43,7 @@ import { SearchIndexTabId } from '../search_index'; import { ApiKeyConfig } from './api_key_configuration'; import { ConnectorConfigurationConfig } from './connector_configuration_config'; import { ConnectorNameAndDescription } from './connector_name_and_description/connector_name_and_description'; +import { CONNECTORS } from './constants'; import { NativeConnectorConfiguration } from './native_connector_configuration/native_connector_configuration'; export const ConnectorConfiguration: React.FC = () => { @@ -59,6 +60,9 @@ export const ConnectorConfiguration: React.FC = () => { } const hasApiKey = !!(index.connector.api_key_id ?? apiKeyData); + const docsUrl = CONNECTORS.find( + ({ serviceType }) => serviceType === index.connector.service_type + )?.docsUrl; return ( <> @@ -422,6 +426,31 @@ export const ConnectorConfiguration: React.FC = () => { )} + {docsUrl && ( + + + {i18n.translate( + 'xpack.enterpriseSearch.content.indices.configurationConnector.support.dockerDeploy.label', + { + defaultMessage: 'Deploy with Docker', + } + )} + + + )} + + + {i18n.translate( + 'xpack.enterpriseSearch.content.indices.configurationConnector.support.deploy.label', + { + defaultMessage: 'Deploy without Docker', + } + )} + + diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts index 11a6db518281c..9aaea14fde6db 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/constants.ts @@ -7,15 +7,20 @@ import { i18n } from '@kbn/i18n'; +import { CONNECTOR_ICONS } from '../../../../../assets/source_icons/native_connector_icons'; + import { docLinks } from '../../../../shared/doc_links'; -import { NativeConnector } from './types'; +import { ConnectorDefinition } from './types'; -export const NATIVE_CONNECTORS: NativeConnector[] = [ +export const CONNECTORS: ConnectorDefinition[] = [ { docsUrl: docLinks.connectorsMongoDB, externalAuthDocsUrl: 'https://www.mongodb.com/docs/atlas/app-services/authentication/', externalDocsUrl: 'https://www.mongodb.com/docs/', + icon: CONNECTOR_ICONS.mongodb, + isBeta: false, + isNative: true, name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.mongodb.name', { defaultMessage: 'MongoDB', }), @@ -24,9 +29,114 @@ export const NATIVE_CONNECTORS: NativeConnector[] = [ { docsUrl: docLinks.connectorsMySQL, externalDocsUrl: 'https://dev.mysql.com/doc/', + icon: CONNECTOR_ICONS.mysql, + isBeta: false, + isNative: true, name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.mysql.name', { defaultMessage: 'MySQL', }), serviceType: 'mysql', }, + { + docsUrl: docLinks.connectorsAzureBlobStorage, + externalAuthDocsUrl: 'https://learn.microsoft.com/azure/storage/common/authorize-data-access', + externalDocsUrl: 'https://learn.microsoft.com/azure/storage/blobs/', + icon: CONNECTOR_ICONS.azure_blob_storage, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.azureBlob.name', { + defaultMessage: 'Azure Blob Storage', + }), + serviceType: 'azure_blob_storage', + }, + { + docsUrl: docLinks.connectorsGoogleCloudStorage, + externalAuthDocsUrl: 'https://cloud.google.com/storage/docs/authentication', + externalDocsUrl: 'https://cloud.google.com/storage/docs', + icon: CONNECTOR_ICONS.google_cloud_storage, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.googleCloud.name', { + defaultMessage: 'Google Cloud Storage', + }), + serviceType: 'google_cloud_storage', + }, + { + docsUrl: docLinks.connectorsMicrosoftSQL, + externalAuthDocsUrl: + 'https://learn.microsoft.com/sql/relational-databases/security/authentication-access/getting-started-with-database-engine-permissions', + externalDocsUrl: 'https://learn.microsoft.com/sql/', + icon: CONNECTOR_ICONS.microsoft_sql, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.microsoftSQL.name', { + defaultMessage: 'Microsoft SQL', + }), + serviceType: 'mssql', + }, + { + docsUrl: docLinks.connectorsNetworkDrive, + externalAuthDocsUrl: '', + externalDocsUrl: '', + icon: CONNECTOR_ICONS.network_drive, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.networkDrive.name', { + defaultMessage: 'Network drive', + }), + serviceType: 'network_drive', + }, + { + docsUrl: docLinks.connectorsOracle, + externalAuthDocsUrl: + 'https://docs.oracle.com/en/database/oracle/oracle-database/19/dbseg/index.html', + externalDocsUrl: 'https://docs.oracle.com/database/oracle/oracle-database/', + icon: CONNECTOR_ICONS.oracle, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.oracle.name', { + defaultMessage: 'Oracle', + }), + serviceType: 'oracle', + }, + { + docsUrl: docLinks.connectorsPostgreSQL, + externalAuthDocsUrl: 'https://www.postgresql.org/docs/15/auth-methods.html', + externalDocsUrl: 'https://www.postgresql.org/docs/', + icon: CONNECTOR_ICONS.postgresql, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.postgresql.name', { + defaultMessage: 'Postgresql', + }), + serviceType: 'postgresql', + }, + { + docsUrl: docLinks.connectorsS3, + externalAuthDocsUrl: 'https://docs.aws.amazon.com/s3/index.html', + externalDocsUrl: '', + icon: CONNECTOR_ICONS.amazon_s3, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.s3.name', { + defaultMessage: 'S3', + }), + serviceType: 's3', + }, + { + docsUrl: docLinks.connectors, + externalAuthDocsUrl: '', + externalDocsUrl: '', + icon: CONNECTOR_ICONS.custom, + isBeta: true, + isNative: false, + name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.customConnector.name', { + defaultMessage: 'Custom connector', + }), + serviceType: '', + }, ]; + +export const CUSTOM_CONNECTORS = CONNECTORS.filter(({ isNative }) => !isNative); + +export const NATIVE_CONNECTORS = CONNECTORS.filter(({ isNative }) => isNative); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration.tsx index 4deedd6768a1a..c4c4af581ef5a 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration.tsx @@ -23,7 +23,6 @@ import { import { i18n } from '@kbn/i18n'; -import { NATIVE_CONNECTOR_ICONS } from '../../../../../../assets/source_icons/native_connector_icons'; import { docLinks } from '../../../../../shared/doc_links'; import { hasConfiguredConfiguration } from '../../../../utils/has_configured_configuration'; @@ -55,8 +54,8 @@ export const NativeConnectorConfiguration: React.FC = () => { const hasConfigured = hasConfiguredConfiguration(index.connector.configuration); const hasConfiguredAdvanced = index.connector.last_synced || index.connector.scheduling.enabled; const hasResearched = hasDescription || hasConfigured || hasConfiguredAdvanced; + const icon = nativeConnector.icon; - const icon = NATIVE_CONNECTOR_ICONS[nativeConnector.serviceType]; return ( <> diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx index 1cecf7af2fc79..c0c47545860aa 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/native_connector_configuration_config.tsx @@ -16,10 +16,10 @@ import { ConnectorStatus } from '../../../../../../../common/types/connectors'; import { docLinks } from '../../../../../shared/doc_links'; import { ConnectorConfigurationConfig } from '../connector_configuration_config'; -import { NativeConnector } from '../types'; +import { ConnectorDefinition } from '../types'; interface NativeConnectorConfigurationConfigProps { - nativeConnector: NativeConnector; + nativeConnector: ConnectorDefinition; status: ConnectorStatus; } diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/research_configuration.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/research_configuration.tsx index 8ba06ce5e50e3..b76d89396384e 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/research_configuration.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/native_connector_configuration/research_configuration.tsx @@ -11,10 +11,10 @@ import { EuiText, EuiSpacer, EuiFlexGroup, EuiFlexItem, EuiLink } from '@elastic import { i18n } from '@kbn/i18n'; -import { NativeConnector } from '../types'; +import { ConnectorDefinition } from '../types'; interface ResearchConfigurationProps { - nativeConnector: NativeConnector; + nativeConnector: ConnectorDefinition; } export const ResearchConfiguration: React.FC = ({ nativeConnector, diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.scss b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.scss deleted file mode 100644 index e8f65d5846e91..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/connector_checkable.scss +++ /dev/null @@ -1,9 +0,0 @@ -.connectorCheckable { - .euiRadio { - margin-top: 4px; - } - - .connectorCheckableContent { - margin-left: 20px; - } -} diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector.tsx deleted file mode 100644 index 219ad30282121..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector.tsx +++ /dev/null @@ -1,187 +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, { useEffect } from 'react'; - -import { useActions, useValues } from 'kea'; - -import { - EuiButton, - EuiFlexGroup, - EuiFlexItem, - EuiFormFieldset, - EuiLink, - EuiSpacer, - EuiText, - EuiTitle, -} from '@elastic/eui'; - -import { i18n } from '@kbn/i18n'; - -import { FormattedMessage } from '@kbn/i18n-react'; - -import { Status } from '../../../../../../../common/types/api'; -import { docLinks } from '../../../../../shared/doc_links'; -import { generateEncodedPath } from '../../../../../shared/encode_path_params'; - -import { flashSuccessToast } from '../../../../../shared/flash_messages'; -import { KibanaLogic } from '../../../../../shared/kibana'; -import { EuiLinkTo } from '../../../../../shared/react_router_helpers'; -import { CachedFetchIndexApiLogic } from '../../../../api/index/cached_fetch_index_api_logic'; -import { NEW_INDEX_PATH, SEARCH_INDEX_TAB_PATH } from '../../../../routes'; -import { isConnectorIndex } from '../../../../utils/indices'; -import { EnterpriseSearchContentPageTemplate } from '../../../layout'; -import { baseBreadcrumbs } from '../../../search_indices'; -import { IndexNameLogic } from '../../index_name_logic'; - -import { NATIVE_CONNECTORS } from '../constants'; - -import { ConnectorCheckable } from './connector_checkable'; -import { SelectConnectorLogic } from './select_connector_logic'; - -export const SelectConnector: React.FC = () => { - const { indexData, status: indexApiStatus } = useValues(CachedFetchIndexApiLogic); - const { selectedNativeConnector } = useValues(SelectConnectorLogic); - const { saveNativeConnector, setSelectedConnector } = useActions(SelectConnectorLogic); - - const { indexName } = useValues(IndexNameLogic); - - useEffect(() => { - if (isConnectorIndex(indexData) && indexData.connector.service_type) { - flashSuccessToast( - i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.successToast.title', - { - defaultMessage: 'Your index will now use the {connectorName} native connector.', - values: { - connectorName: NATIVE_CONNECTORS.find( - (connector) => connector.serviceType === indexData.connector.service_type - )?.name, - }, - } - ) - ); - KibanaLogic.values.navigateToUrl( - generateEncodedPath(SEARCH_INDEX_TAB_PATH, { - indexName, - tabId: 'configuration', - }) - ); - } - }, [indexData]); - - return ( - -

{ - event.preventDefault(); - saveNativeConnector(); - }} - > - - - - {i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.title', - { - defaultMessage: 'Select a connector', - } - )} - - - - -

- {i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.description', - { - defaultMessage: - "Get started by selecting the connector you'd like to configure to extract, index and sync data from your data source into your newly created search index.", - } - )} -

-
- - ), - }} - > - - - {NATIVE_CONNECTORS.map((nativeConnector) => ( - - setSelectedConnector(nativeConnector)} - documentationUrl={nativeConnector.docsUrl} - checked={nativeConnector === selectedNativeConnector} - /> - - ))} - - - - {i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.selectAndConfigureButtonLabel', - { - defaultMessage: 'Select and configure', - } - )} - - - - - {i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.buildYourOwnConnectorLinkLabel', - { - defaultMessage: 'build your own', - } - )} - - ), - workplaceSearchLink: ( - - {i18n.translate( - 'xpack.enterpriseSearch.content.indices.selectConnector.workplaceSearchLinkLabel', - { - defaultMessage: 'View additional integrations in Workplace Search', - } - )} - - ), - }} - /> - -
-
-
- ); -}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector_logic.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector_logic.tsx deleted file mode 100644 index fec06e823a4db..0000000000000 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/select_connector/select_connector_logic.tsx +++ /dev/null @@ -1,96 +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 { kea, MakeLogicType } from 'kea'; - -import { Actions } from '../../../../../shared/api_logic/create_api_logic'; -import { generateEncodedPath } from '../../../../../shared/encode_path_params'; - -import { KibanaLogic } from '../../../../../shared/kibana'; -import { - SetNativeConnectorArgs, - SetNativeConnectorLogic, - SetNativeConnectorResponse, -} from '../../../../api/connector/set_native_connector_api_logic'; - -import { CachedFetchIndexApiLogic } from '../../../../api/index/cached_fetch_index_api_logic'; -import { FetchIndexApiResponse } from '../../../../api/index/fetch_index_api_logic'; - -import { SEARCH_INDEX_TAB_PATH } from '../../../../routes'; -import { isConnectorIndex } from '../../../../utils/indices'; -import { NATIVE_CONNECTORS } from '../constants'; -import { NativeConnector } from '../types'; - -type SelectConnectorActions = Pick< - Actions, - 'apiSuccess' | 'makeRequest' -> & { - saveNativeConnector(): void; - setSelectedConnector(nativeConnector: NativeConnector): { - nativeConnector: NativeConnector; - }; -}; - -interface SelectConnectorValues { - index: FetchIndexApiResponse; - selectedNativeConnector: NativeConnector | null; -} - -export const SelectConnectorLogic = kea< - MakeLogicType ->({ - actions: { - saveNativeConnector: true, - setSelectedConnector: (nativeConnector) => ({ nativeConnector }), - }, - connect: { - actions: [SetNativeConnectorLogic, ['apiError', 'apiSuccess', 'makeRequest']], - values: [CachedFetchIndexApiLogic, ['indexData as index']], - }, - events: ({ actions, values }) => ({ - afterMount: () => { - if (isConnectorIndex(values.index)) { - const serviceType = values.index.connector.service_type; - const nativeConnector = NATIVE_CONNECTORS.find( - (connector) => connector.serviceType === serviceType - ); - if (nativeConnector) { - actions.setSelectedConnector(nativeConnector); - } - } - }, - }), - listeners: ({ actions, values }) => ({ - apiSuccess: () => { - CachedFetchIndexApiLogic.actions.makeRequest({ indexName: values.index.name }); - }, - saveNativeConnector: () => { - if (!isConnectorIndex(values.index) || values.selectedNativeConnector === null) { - KibanaLogic.values.navigateToUrl( - generateEncodedPath(SEARCH_INDEX_TAB_PATH, { - indexName: values.index.name, - tabId: 'configuration', - }) - ); - } else { - actions.makeRequest({ - connectorId: values.index.connector.id, - serviceType: values.selectedNativeConnector.serviceType, - }); - } - }, - }), - path: ['enterprise_search', 'content', 'select_connector'], - reducers: () => ({ - selectedNativeConnector: [ - null, - { - setSelectedConnector: (_, { nativeConnector }) => nativeConnector, - }, - ], - }), -}); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/types.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/types.ts index 7324e32c7eea6..0b061d1aa3241 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/types.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/connector/types.ts @@ -5,10 +5,13 @@ * 2.0. */ -export interface NativeConnector { - docsUrl: string; +export interface ConnectorDefinition { + docsUrl?: string; externalAuthDocsUrl?: string; externalDocsUrl: string; + icon: string; + isBeta: boolean; + isNative: boolean; name: string; serviceType: string; } diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index.tsx index 445769211aca2..6b4e1c475f9fb 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index.tsx @@ -19,11 +19,7 @@ import { i18n } from '@kbn/i18n'; import { generateEncodedPath } from '../../../shared/encode_path_params'; import { KibanaLogic } from '../../../shared/kibana'; -import { - SEARCH_INDEX_PATH, - SEARCH_INDEX_SELECT_CONNECTOR_PATH, - SEARCH_INDEX_TAB_PATH, -} from '../../routes'; +import { SEARCH_INDEX_PATH, SEARCH_INDEX_TAB_PATH } from '../../routes'; import { isConnectorIndex, isCrawlerIndex } from '../../utils/indices'; import { EnterpriseSearchContentPageTemplate } from '../layout/page_template'; @@ -99,19 +95,6 @@ export const SearchIndex: React.FC = () => { } }, [isAppGuideActive, isWebsiteGuideActive, isDatabaseGuideActive, index?.count]); - useEffect(() => { - if ( - isConnectorIndex(index) && - index.name === indexName && - index.connector.is_native && - index.connector.service_type === null - ) { - KibanaLogic.values.navigateToUrl( - generateEncodedPath(SEARCH_INDEX_SELECT_CONNECTOR_PATH, { indexName }) - ); - } - }, [index]); - const ALL_INDICES_TABS: EuiTabbedContentTab[] = [ { content: , diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index_router.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index_router.tsx index 128fb3ea8fc6e..16e3443de8271 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index_router.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/search_index_router.tsx @@ -15,12 +15,10 @@ import { Route } from '@kbn/shared-ux-router'; import { OLD_SEARCH_INDEX_CRAWLER_DOMAIN_DETAIL_PATH, SEARCH_INDEX_PATH, - SEARCH_INDEX_SELECT_CONNECTOR_PATH, SEARCH_INDEX_TAB_DETAIL_PATH, SEARCH_INDEX_TAB_PATH, } from '../../routes'; -import { SelectConnector } from './connector/select_connector/select_connector'; import { IndexNameLogic } from './index_name_logic'; import { IndexViewLogic } from './index_view_logic'; import { SearchIndex } from './search_index'; @@ -48,9 +46,6 @@ export const SearchIndexRouter: React.FC = () => { - - - diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.test.tsx index 047292927245e..d5b98d0fe0351 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.test.tsx @@ -12,7 +12,7 @@ import { Switch } from 'react-router-dom'; import { shallow } from 'enzyme'; -import { NewIndex } from '../new_index'; +import { NewIndexRouter } from '../new_index/new_index_router'; import { SearchIndexRouter } from '../search_index/search_index_router'; import { SearchIndices } from './search_indices'; @@ -25,7 +25,7 @@ describe('SearchIndicesRouter', () => { const routeSwitch = wrapper.find(Switch); - expect(routeSwitch.find(NewIndex)).toHaveLength(1); + expect(routeSwitch.find(NewIndexRouter)).toHaveLength(1); expect(routeSwitch.find(SearchIndices)).toHaveLength(1); expect(routeSwitch.find(SearchIndexRouter)).toHaveLength(1); }); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.tsx index ca86d6932de0a..739eb262932c8 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_indices/search_indices_router.tsx @@ -12,7 +12,7 @@ import { Route } from '@kbn/shared-ux-router'; import { SEARCH_INDICES_PATH, SEARCH_INDEX_PATH, NEW_INDEX_PATH } from '../../routes'; -import { NewIndex } from '../new_index'; +import { NewIndexRouter } from '../new_index/new_index_router'; import { SearchIndexRouter } from '../search_index/search_index_router'; import { SearchIndices } from './search_indices'; @@ -20,8 +20,8 @@ import { SearchIndices } from './search_indices'; export const SearchIndicesRouter: React.FC = () => { return ( - - + + diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts index 02a1ef68c31f1..37504ef0ba960 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts @@ -13,16 +13,17 @@ export const SEARCH_INDICES_PATH = `${ROOT_PATH}search_indices`; export const SETTINGS_PATH = `${ROOT_PATH}settings`; export const NEW_INDEX_PATH = `${SEARCH_INDICES_PATH}/new_index`; +export const NEW_INDEX_METHOD_PATH = `${NEW_INDEX_PATH}/:type`; export const NEW_API_PATH = `${NEW_INDEX_PATH}/api`; export const NEW_ES_INDEX_PATH = `${NEW_INDEX_PATH}/elasticsearch`; export const NEW_DIRECT_UPLOAD_PATH = `${NEW_INDEX_PATH}/upload`; +export const NEW_INDEX_SELECT_CONNECTOR_PATH = `${NEW_INDEX_PATH}/select_connector`; export const SEARCH_INDEX_PATH = `${SEARCH_INDICES_PATH}/:indexName`; export const SEARCH_INDEX_TAB_PATH = `${SEARCH_INDEX_PATH}/:tabId`; export const SEARCH_INDEX_TAB_DETAIL_PATH = `${SEARCH_INDEX_TAB_PATH}/:detailId`; export const SEARCH_INDEX_CRAWLER_DOMAIN_DETAIL_PATH = `${SEARCH_INDEX_PATH}/domain_management/:domainId`; export const OLD_SEARCH_INDEX_CRAWLER_DOMAIN_DETAIL_PATH = `${SEARCH_INDEX_PATH}/crawler/domains/:domainId`; -export const SEARCH_INDEX_SELECT_CONNECTOR_PATH = `${SEARCH_INDEX_PATH}/select_connector`; export const ENGINES_PATH = `${ROOT_PATH}engines`; diff --git a/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts b/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts index 8955c2d505a43..938aaa88d1bdf 100644 --- a/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts +++ b/x-pack/plugins/enterprise_search/public/applications/shared/doc_links/doc_links.ts @@ -60,8 +60,15 @@ class DocLinks { public clientsRustOverview: string; public cloudIndexManagement: string; public connectors: string; + public connectorsAzureBlobStorage: string; + public connectorsGoogleCloudStorage: string; + public connectorsMicrosoftSQL: string; public connectorsMongoDB: string; public connectorsMySQL: string; + public connectorsNetworkDrive: string; + public connectorsOracle: string; + public connectorsPostgreSQL: string; + public connectorsS3: string; public connectorsWorkplaceSearch: string; public crawlerExtractionRules: string; public crawlerManaging: string; @@ -78,6 +85,7 @@ class DocLinks { public enterpriseSearchMailService: string; public enterpriseSearchTroubleshootSetup: string; public enterpriseSearchUsersAccess: string; + public ingestionApis: string; public ingestPipelines: string; public kibanaSecurity: string; public languageAnalyzers: string; @@ -179,8 +187,15 @@ class DocLinks { this.clientsRustOverview = ''; this.cloudIndexManagement = ''; this.connectors = ''; + this.connectorsAzureBlobStorage = ''; + this.connectorsGoogleCloudStorage = ''; + this.connectorsMicrosoftSQL = ''; this.connectorsMongoDB = ''; this.connectorsMySQL = ''; + this.connectorsNetworkDrive = ''; + this.connectorsOracle = ''; + this.connectorsPostgreSQL = ''; + this.connectorsS3 = ''; this.connectorsWorkplaceSearch = ''; this.crawlerExtractionRules = ''; this.crawlerManaging = ''; @@ -197,6 +212,7 @@ class DocLinks { this.enterpriseSearchMailService = ''; this.enterpriseSearchTroubleshootSetup = ''; this.enterpriseSearchUsersAccess = ''; + this.ingestionApis = ''; this.ingestPipelines = ''; this.kibanaSecurity = ''; this.languageAnalyzers = ''; @@ -317,6 +333,7 @@ class DocLinks { this.enterpriseSearchMailService = docLinks.links.enterpriseSearch.mailService; this.enterpriseSearchTroubleshootSetup = docLinks.links.enterpriseSearch.troubleshootSetup; this.enterpriseSearchUsersAccess = docLinks.links.enterpriseSearch.usersAccess; + this.ingestionApis = docLinks.links.enterpriseSearch.ingestionApis; this.ingestPipelines = docLinks.links.enterpriseSearch.ingestPipelines; this.kibanaSecurity = docLinks.links.kibana.xpackSecurity; this.languageAnalyzers = docLinks.links.enterpriseSearch.languageAnalyzers; diff --git a/x-pack/plugins/enterprise_search/public/applications/workplace_search/components/shared/assets/source_icons/custom.svg b/x-pack/plugins/enterprise_search/public/applications/workplace_search/components/shared/assets/source_icons/custom.svg index cc07fbbc50877..b3bd8474ff5cc 100644 --- a/x-pack/plugins/enterprise_search/public/applications/workplace_search/components/shared/assets/source_icons/custom.svg +++ b/x-pack/plugins/enterprise_search/public/applications/workplace_search/components/shared/assets/source_icons/custom.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/connector.svg b/x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/connector.svg new file mode 100644 index 0000000000000..3b37b963f435f --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/connector.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/crawler.svg b/x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/crawler.svg new file mode 100644 index 0000000000000..94aafafddf68b --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/assets/enterprise_search_features/crawler.svg @@ -0,0 +1,4 @@ + + + + diff --git a/x-pack/plugins/enterprise_search/public/assets/source_icons/azure_blob.svg b/x-pack/plugins/enterprise_search/public/assets/source_icons/azure_blob_storage.svg similarity index 100% rename from x-pack/plugins/enterprise_search/public/assets/source_icons/azure_blob.svg rename to x-pack/plugins/enterprise_search/public/assets/source_icons/azure_blob_storage.svg diff --git a/x-pack/plugins/enterprise_search/public/assets/source_icons/custom.svg b/x-pack/plugins/enterprise_search/public/assets/source_icons/custom.svg new file mode 100644 index 0000000000000..b3bd8474ff5cc --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/assets/source_icons/custom.svg @@ -0,0 +1 @@ + diff --git a/x-pack/plugins/enterprise_search/public/assets/source_icons/google_cloud.svg b/x-pack/plugins/enterprise_search/public/assets/source_icons/google_cloud_storage.svg similarity index 100% rename from x-pack/plugins/enterprise_search/public/assets/source_icons/google_cloud.svg rename to x-pack/plugins/enterprise_search/public/assets/source_icons/google_cloud_storage.svg diff --git a/x-pack/plugins/enterprise_search/public/assets/source_icons/native_connector_icons.ts b/x-pack/plugins/enterprise_search/public/assets/source_icons/native_connector_icons.ts index c6f210a3ec8d4..49767bb497f8b 100644 --- a/x-pack/plugins/enterprise_search/public/assets/source_icons/native_connector_icons.ts +++ b/x-pack/plugins/enterprise_search/public/assets/source_icons/native_connector_icons.ts @@ -5,10 +5,26 @@ * 2.0. */ +import amazon_s3 from './amazon_s3.svg'; +import azure_blob_storage from './azure_blob_storage.svg'; +import custom from './custom.svg'; +import google_cloud_storage from './google_cloud_storage.svg'; +import microsoft_sql from './microsoft_sql.svg'; import mongodb from './mongodb.svg'; import mysql from './mysql.svg'; +import network_drive from './network_drive.svg'; +import oracle from './oracle.svg'; +import postgresql from './postgresql.svg'; -export const NATIVE_CONNECTOR_ICONS: Record = { +export const CONNECTOR_ICONS = { + amazon_s3, + azure_blob_storage, + custom, + google_cloud_storage, + microsoft_sql, mongodb, mysql, + network_drive, + oracle, + postgresql, }; diff --git a/x-pack/plugins/enterprise_search/server/integrations.ts b/x-pack/plugins/enterprise_search/server/integrations.ts index 53ed6f5096320..ae5eb87aad733 100644 --- a/x-pack/plugins/enterprise_search/server/integrations.ts +++ b/x-pack/plugins/enterprise_search/server/integrations.ts @@ -372,7 +372,7 @@ export const registerEnterpriseSearchIntegrations = ( defaultMessage: 'Add search to your website with the Enterprise Search web crawler.', }), categories: ['enterprise_search', 'app_search', 'web', 'elastic_stack', 'crawler'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=crawler', + uiInternalPath: '/app/enterprise_search/content/search_indices/new_index/crawler', icons: [ { type: 'eui', @@ -393,7 +393,7 @@ export const registerEnterpriseSearchIntegrations = ( defaultMessage: "Add search to your application with Elasticsearch's robust APIs.", }), categories: ['enterprise_search', 'custom', 'elastic_stack', 'sdk_search', 'language_client'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=api', + uiInternalPath: '/app/enterprise_search/content/search_indices/new_index/api', icons: [ { type: 'eui', @@ -421,8 +421,7 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'custom', 'elastic_stack', 'connector', 'native_search'], - uiInternalPath: - '/app/enterprise_search/content/search_indices/new_index?method=native_connector', + uiInternalPath: '/app/enterprise_search/content/search_indices/new_index/connector', icons: [ { type: 'eui', @@ -453,7 +452,7 @@ export const registerEnterpriseSearchIntegrations = ( 'connector_client', ], uiInternalPath: - '/app/enterprise_search/content/search_indices/new_index?method=native_connector', + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=mongodb', icons: [ { type: 'svg', @@ -484,7 +483,7 @@ export const registerEnterpriseSearchIntegrations = ( 'connector_client', ], uiInternalPath: - '/app/enterprise_search/content/search_indices/new_index?method=native_connector', + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=mysql', icons: [ { type: 'svg', @@ -509,7 +508,8 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'custom', 'elastic_stack', 'connector_client'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=custom', icons: [ { type: 'eui', @@ -532,7 +532,8 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'elastic_stack', 'custom', 'datastore'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=postgresql', icons: [ { type: 'svg', @@ -557,7 +558,8 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'elastic_stack', 'custom', 'datastore'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=oracle', icons: [ { type: 'svg', @@ -569,7 +571,7 @@ export const registerEnterpriseSearchIntegrations = ( }); customIntegrations.registerCustomIntegration({ - id: 'ms_sql', + id: 'mssql', title: i18n.translate('xpack.enterpriseSearch.workplaceSearch.integrations.msSqlName', { defaultMessage: 'Microsoft SQL', }), @@ -581,7 +583,8 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'custom', 'elastic_stack', 'datastore'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=mssql', icons: [ { type: 'svg', @@ -617,7 +620,8 @@ export const registerEnterpriseSearchIntegrations = ( 'connector_client', 'connector_package', ], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=network_drive', icons: [ { type: 'svg', @@ -642,7 +646,8 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'datastore', 'elastic_stack'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=s3', icons: [ { type: 'svg', @@ -666,12 +671,13 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'elastic_stack', 'custom'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=google_cloud_storage', icons: [ { type: 'svg', src: http.basePath.prepend( - '/plugins/enterpriseSearch/assets/source_icons/google_cloud.svg' + '/plugins/enterpriseSearch/assets/source_icons/google_cloud_storage.svg' ), }, ], @@ -691,12 +697,13 @@ export const registerEnterpriseSearchIntegrations = ( } ), categories: ['enterprise_search', 'elastic_stack', 'custom'], - uiInternalPath: '/app/enterprise_search/content/search_indices/new_index?method=connector', + uiInternalPath: + '/app/enterprise_search/content/search_indices/new_index/connector?service_type=azure_blob_storage', icons: [ { type: 'svg', src: http.basePath.prepend( - '/plugins/enterpriseSearch/assets/source_icons/azure_blob.svg' + '/plugins/enterpriseSearch/assets/source_icons/azure_blob_storage.svg' ), }, ], diff --git a/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts b/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts index 2019cd06e0089..cebb673fba038 100644 --- a/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts +++ b/x-pack/plugins/enterprise_search/server/lib/connectors/add_connector.ts @@ -68,7 +68,7 @@ export const addConnector = async ( index_name: string; is_native: boolean; language: string | null; - service_type?: string | null; + service_type?: string; } ): Promise<{ id: string; index_name: string }> => { const connectorsIndexExists = await client.asCurrentUser.indices.exists({ @@ -96,7 +96,7 @@ export const addConnector = async ( run_ml_inference: pipeline.default_run_ml_inference, } : null, - serviceType: input.service_type, + serviceType: input.service_type ?? null, }); return await createConnector(document, client, input.language, !!input.delete_existing_connector); diff --git a/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts b/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts index 24fc921e6e584..32e7cb79a2597 100644 --- a/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts +++ b/x-pack/plugins/enterprise_search/server/routes/enterprise_search/connectors.ts @@ -20,7 +20,6 @@ import { ErrorCode } from '../../../common/types/error_codes'; import { addConnector } from '../../lib/connectors/add_connector'; import { fetchSyncJobsByConnectorId } from '../../lib/connectors/fetch_sync_jobs'; import { cancelSyncs } from '../../lib/connectors/post_cancel_syncs'; -import { configureNativeConnector } from '../../lib/connectors/put_configure_native'; import { updateFiltering } from '../../lib/connectors/put_update_filtering'; import { updateFilteringDraft } from '../../lib/connectors/put_update_filtering_draft'; import { startConnectorSync } from '../../lib/connectors/start_sync'; @@ -48,6 +47,7 @@ export function registerConnectorRoutes({ router, log }: RouteDependencies) { index_name: schema.string(), is_native: schema.boolean(), language: schema.nullable(schema.string()), + service_type: schema.maybe(schema.string()), }), }, }, @@ -276,23 +276,6 @@ export function registerConnectorRoutes({ router, log }: RouteDependencies) { }) ); - router.put( - { - path: '/internal/enterprise_search/connectors/{connectorId}/configure_native', - validate: { - body: schema.object({ service_type: schema.string() }), - params: schema.object({ - connectorId: schema.string(), - }), - }, - }, - elasticsearchErrorHandler(log, async (context, request, response) => { - const { client } = (await context.core).elasticsearch; - await configureNativeConnector(client, request.params.connectorId, request.body.service_type); - return response.ok(); - }) - ); - router.put( { path: '/internal/enterprise_search/connectors/{connectorId}/name_and_description', diff --git a/x-pack/plugins/enterprise_search/server/utils/create_connector_document.test.ts b/x-pack/plugins/enterprise_search/server/utils/create_connector_document.test.ts index 08e18e0907532..4574039c61485 100644 --- a/x-pack/plugins/enterprise_search/server/utils/create_connector_document.test.ts +++ b/x-pack/plugins/enterprise_search/server/utils/create_connector_document.test.ts @@ -22,6 +22,7 @@ describe('createConnectorDocument', () => { reduce_whitespace: true, run_ml_inference: false, }, + serviceType: null, }) ).toEqual({ api_key_id: null, @@ -114,6 +115,7 @@ describe('createConnectorDocument', () => { reduce_whitespace: true, run_ml_inference: false, }, + serviceType: null, }) ).toEqual({ api_key_id: null, diff --git a/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts b/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts index 507559b65440d..6f548b0879283 100644 --- a/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts +++ b/x-pack/plugins/enterprise_search/server/utils/create_connector_document.ts @@ -5,6 +5,9 @@ * 2.0. */ +import { NATIVE_CONNECTOR_DEFINITIONS } from '../../common/connectors/native_connectors'; +import { ENTERPRISE_SEARCH_CONNECTOR_CRAWLER_SERVICE_TYPE } from '../../common/constants'; + import { ConnectorDocument, ConnectorStatus, @@ -25,9 +28,31 @@ export function createConnectorDocument({ isNative: boolean; language: string | null; pipeline?: IngestPipelineParams | null; - serviceType?: string | null; + serviceType: string | null; }): ConnectorDocument { const currentTimestamp = new Date().toISOString(); + const nativeConnector = + isNative && serviceType ? NATIVE_CONNECTOR_DEFINITIONS[serviceType] : undefined; + + if ( + isNative && + serviceType && + !nativeConnector && + serviceType !== ENTERPRISE_SEARCH_CONNECTOR_CRAWLER_SERVICE_TYPE + ) { + throw new Error(`Could not find connector definition for service type ${serviceType}`); + } + + const nativeFields = nativeConnector + ? { + configuration: nativeConnector.configuration, + features: nativeConnector.features, + name: nativeConnector.name, + service_type: serviceType, + status: ConnectorStatus.NEEDS_CONFIGURATION, + } + : {}; + return { api_key_id: null, configuration: {}, @@ -100,5 +125,6 @@ export function createConnectorDocument({ service_type: serviceType || null, status: ConnectorStatus.CREATED, sync_now: false, + ...nativeFields, }; } diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 08713b54b4a6d..429ea1508fd9d 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -11170,17 +11170,10 @@ "xpack.enterpriseSearch.content.indices.pipelines.successToastDeleteMlPipeline.title": "Pipeline d'inférence de Machine Learning \"{pipelineName}\" supprimé", "xpack.enterpriseSearch.content.indices.pipelines.successToastDetachMlPipeline.title": "Pipeline d'inférence de Machine Learning détaché de \"{pipelineName}\"", "xpack.enterpriseSearch.content.indices.pipelines.tabs.jsonConfigurations.unmanaged.description": "Modifier ce pipeline à partir de {ingestPipelines} dans Gestion de la Suite", - "xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.description": "Recherchez dans votre contenu {name} avec Enterprise Search.", - "xpack.enterpriseSearch.content.indices.selectConnector.moreConnectorsMessage": "Vous recherchez d'autres connecteurs ? {workplaceSearchLink} ou {buildYourOwnConnectorLink}.", - "xpack.enterpriseSearch.content.indices.selectConnector.successToast.title": "Votre index utilisera maintenant le connecteur natif {connectorName}.", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.alreadyExists.error": "Un index portant le nom {indexName} existe déjà", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.isInvalid.error": "{indexName} n'est pas un nom d'index valide", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineOne": "Votre index sera nommé : {indexName}", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description": "Un index supprimé appelé {indexName} était, à l'origine, lié à une configuration de connecteur. Voulez-vous remplacer cette configuration de connecteur par la nouvelle ?", - "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.content": "À l'aide de notre infrastructure de connecteur et de nos exemples de clients de connecteur, vous pouvez accélérer l'ingestion vers Elasticsearch {bulkApiDocLink} pour n'importe quelle source de données. Une fois l'index créé, le système vous guidera pour accéder à l'infrastructure du connecteur et connecter votre premier client.", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.content": "Une fois que vous avez créé votre connecteur, votre contenu est prêt. Créez votre première expérience de recherche avec {elasticsearchLink} ou bien explorez les outils d'expérience de recherche fournis par {appSearchLink}. Nous vous conseillons de créer un {searchEngineLink} pour bénéficier du meilleur équilibre entre puissance et simplicité.", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.content": "Fournissez un nom d'index unique et définissez éventuellement un {languageAnalyzerDocLink} pour l'index. Cet index contiendra le contenu de la source de données et il est optimisé avec les mappings de champ par défaut pour les expériences de recherche correspondantes.", - "xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.content": "Faites votre choix dans notre catalogue de connecteurs natifs pour commencer à extraire un contenu interrogeable de sources de données prises en charge telles que MongoDB. Si vous devez personnaliser le comportement d'un connecteur, vous pouvez toujours déployer la version client du connecteur autogéré et l'enregistrer via le workflow {buildAConnectorLabel}.", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.description": "Affichage de {results} sur {total}. Nombre maximal de résultats de recherche de {maximum} documents.", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.pagination.itemsPerPage": "Documents par page : {docPerPage}", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.paginationOptions.option": "{docCount} documents", @@ -12605,12 +12598,9 @@ "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.tableColumn.message": "Message d'erreur", "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.tableColumn.timestamp": "Horodatage", "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.title": "Erreurs d'inférence", - "xpack.enterpriseSearch.content.indices.selectConnector.buildYourOwnConnectorLinkLabel": "créez-les vous-même", "xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.documentationLinkLabel": "Documentation", "xpack.enterpriseSearch.content.indices.selectConnector.description": "Lancez-vous en sélectionnant le connecteur que vous souhaiteriez configurer pour extraire, indexer et synchroniser les données à partir de votre source de données dans votre index de recherche nouvellement créé.", - "xpack.enterpriseSearch.content.indices.selectConnector.selectAndConfigureButtonLabel": "Sélectionner et configurer", "xpack.enterpriseSearch.content.indices.selectConnector.title": "Sélectionner un connecteur", - "xpack.enterpriseSearch.content.indices.selectConnector.workplaceSearchLinkLabel": "Afficher d'autres intégrations dans Workplace Search", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.footer.attach": "Attacher", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.footer.create": "Créer un pipeline", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.steps.configure.title": "Configurer", @@ -12640,38 +12630,17 @@ "xpack.enterpriseSearch.content.new_index.successToast.description": "Vous pouvez utiliser des moteurs App Search pour créer une expérience de recherche pour votre nouvel index Elasticsearch.", "xpack.enterpriseSearch.content.new_index.successToast.title": "Index créé avec succès", "xpack.enterpriseSearch.content.newIndex.breadcrumb": "Nouvel index de recherche", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.description": "Ajouter des documents par programmation en se connectant avec l'API", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.footer": "Un peu de développement nécessaire", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.label": "Utiliser l’API", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.description": "Utiliser le cadre des connecteurs pour créer rapidement des connecteurs pour des sources de données personnalisées", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.footer": "Développement nécessaire", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.label": "Créer un connecteur", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.description": "Découvrir, extraire, indexer et synchroniser tout le contenu de votre site web", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.footer": "Aucun développement nécessaire", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.label": "Utiliser le robot d'indexation", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.description": "Configurer un connecteur pour extraire, indexer et synchroniser tout votre contenu des sources de données prises en charge ", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.footer": "Aucun développement nécessaire", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.label": "Utiliser un connecteur", "xpack.enterpriseSearch.content.newIndex.emptyState.description": "Les données que vous ajoutez dans Enterprise Search sont appelées \"index de recherche\", et vous pouvez effectuer des recherches à l'intérieur à la fois dans App Search et dans Workplace Search. Maintenant, vous pouvez utiliser vos connecteurs dans App Search et vos robots d'indexation dans Workplace Search.", "xpack.enterpriseSearch.content.newIndex.emptyState.footer.link": "Lisez les documents", "xpack.enterpriseSearch.content.newIndex.emptyState.footer.title": "Vous souhaitez en savoir plus sur les index de recherche ?", "xpack.enterpriseSearch.content.newIndex.emptyState.title": "Sélectionner une méthode d'ingestion", - "xpack.enterpriseSearch.content.newIndex.methodApi.steps.configureIngestion.content": "Générez une clé d’API et consultez la documentation pour envoyer des documents au point de terminaison de l’API Elasticsearch. Des clients linguistiques sont disponibles pour une intégration simplifiée.", - "xpack.enterpriseSearch.content.newIndex.methodApi.title": "Indexer avec l’API", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.bulkAPILink": "API Bulk", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.title": "Créer et configurer un connecteur", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.nativeConnector.title": "Configurer un connecteur", - "xpack.enterpriseSearch.content.newIndex.methodCrawler.steps.configureIngestion.content": "Configurez les domaines que vous souhaitez indexer et, lorsque vous êtes prêt, déclenchez votre première indexation. Laissez Enterprise Search faire le reste.", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.createIndex.buttonText": "Créer un index", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.languageInputHelpText": "La langue peut être modifiée ultérieurement, mais ce changement peut nécessiter une réindexation.", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.languageInputLabel": "Analyseur linguistique", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineTwo": "Les noms doivent être en minuscules et ne peuvent pas contenir d'espaces ni de caractères spéciaux.", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputLabel": "Nom de l'index", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputPlaceholder": "Définir un nom pour votre index", - "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.viewDocumentation.linkText": "Consulter la documentation", "xpack.enterpriseSearch.content.newIndex.pageTitle": "Nouvel index de recherche", - "xpack.enterpriseSearch.content.newIndex.selectSearchIndex.description": "Créez un index Elasticsearch optimisé pour la recherche en sélectionnant une méthode d'ingestion adaptée à votre cas d'utilisation.", - "xpack.enterpriseSearch.content.newIndex.selectSearchIndex.title": "Sélectionner une méthode d'ingestion", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.cancelButton.label": "Annuler", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.confirmButton.label": "Remplacer la configuration", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.title": "Remplacer un connecteur existant", @@ -12679,16 +12648,6 @@ "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.genericError": "Nous n'avons pas pu créer votre index", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.indexAlreadyExists": "L'index existe déjà.", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.unauthorizedError": "Vous n'êtes pas autorisé à créer ce connecteur", - "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.title": "Créer un connecteur", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.appSearchLink": "App Search", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.elasticsearchLink": "Elasticsearch", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.searchEngineLink": "moteur de recherche", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.title": "Créer une expérience de recherche", - "xpack.enterpriseSearch.content.newIndex.steps.configureIngestion.title": "Configurer les paramètres d’ingestion", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.crawler.title": "Indexer avec le robot d'indexation", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.languageAnalyzerLink": "analyseur linguistique", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.title": "Créer un index Elasticsearch", - "xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.title": "Indexer à l'aide d'un connecteur", "xpack.enterpriseSearch.content.newIndex.types.api": "Point de terminaison d'API", "xpack.enterpriseSearch.content.newIndex.types.connector": "Connecteur", "xpack.enterpriseSearch.content.newIndex.types.crawler": "Robot d'indexation", @@ -26574,9 +26533,6 @@ "xpack.reporting.diagnostic.browserMissingFonts": "Le navigateur n'a pas réussi à localiser de police par défaut. Consultez {url} pour corriger ce problème.", "xpack.reporting.diagnostic.noUsableSandbox": "Impossible d'utiliser la sandbox Chromium. Vous pouvez la désactiver à vos risques et périls avec \"xpack.screenshotting.browser.chromium.disableSandbox\". Veuillez consulter {url}", "xpack.reporting.exportTypes.common.failedToDecryptReportJobDataErrorMessage": "Impossible de déchiffrer les données de la tâche de reporting. Veuillez vous assurer que {encryptionKey} est défini et générez à nouveau ce rapport. {err}", - "generateCsv.esErrorMessage": "Réponse {statusCode} reçue d'Elasticsearch : {message}", - "generateCsv.incorrectRowCount": "Une erreur a été rencontrée avec le nombre de lignes CSV générées à partir de la recherche : {expected} prévues, {received} reçues.", - "generateCsv.unknownErrorMessage": "Une erreur inconnue est survenue : {message}", "xpack.reporting.jobResponse.errorHandler.notAuthorized": "Désolé, vous n'êtes pas autorisé à afficher ou supprimer les rapports {jobtype}", "xpack.reporting.jobsQuery.deleteError": "Impossible de supprimer le rapport : {error}", "xpack.reporting.jobStatusDetail.attemptXofY": "Tentative {attempts} sur {max_attempts}.", @@ -26633,9 +26589,6 @@ "xpack.reporting.diagnostic.screenshotFailureMessage": "Impossible d'effectuer une capture d'écran de votre installation Kibana.", "xpack.reporting.errorHandler.unknownError": "Erreur inconnue", "xpack.reporting.exportTypes.common.missingJobHeadersErrorMessage": "Les en-têtes de tâche sont manquants", - "generateCsv.authenticationExpired.partialResultsMessage": "Ce rapport contient des résultats CSV partiels, car le token d'authentification a expiré. Exportez une quantité moindre de données ou augmentez le délai d'expiration du token d'authentification.", - "generateCsv.csvUnableToClosePit": "Impossible de fermer le point temporel utilisé pour la recherche. Vérifiez les logs de serveur Kibana.", - "generateCsv.escapedFormulaValues": "Le CSV peut contenir des formules dont les valeurs sont précédées d'un caractère d'échappement", "xpack.reporting.jobCreatedBy.unknownUserPlaceholderText": "Inconnu", "xpack.reporting.jobResponse.errorHandler.unknownError": "Erreur inconnue", "xpack.reporting.jobStatusDetail.deprecatedText": "Il s'agit d'un type d'exportation déclassé. L'automatisation de ce rapport devra être à nouveau créée pour une question de compatibilité avec les futures versions de Kibana.", @@ -26772,6 +26725,12 @@ "xpack.reporting.uiSettings.validate.customLogo.badFile": "Désolé, ce fichier ne convient pas. Veuillez essayer un autre fichier image.", "xpack.reporting.uiSettings.validate.customLogo.tooLarge": "Désolé, ce fichier est trop volumineux. Le fichier image doit être inférieur à 200 kilo-octets.", "xpack.reporting.userAccessError.learnMoreLink": "En savoir plus", + "generateCsv.esErrorMessage": "Réponse {statusCode} reçue d'Elasticsearch : {message}", + "generateCsv.incorrectRowCount": "Une erreur a été rencontrée avec le nombre de lignes CSV générées à partir de la recherche : {expected} prévues, {received} reçues.", + "generateCsv.unknownErrorMessage": "Une erreur inconnue est survenue : {message}", + "generateCsv.authenticationExpired.partialResultsMessage": "Ce rapport contient des résultats CSV partiels, car le token d'authentification a expiré. Exportez une quantité moindre de données ou augmentez le délai d'expiration du token d'authentification.", + "generateCsv.csvUnableToClosePit": "Impossible de fermer le point temporel utilisé pour la recherche. Vérifiez les logs de serveur Kibana.", + "generateCsv.escapedFormulaValues": "Le CSV peut contenir des formules dont les valeurs sont précédées d'un caractère d'échappement", "xpack.rollupJobs.create.errors.dateHistogramIntervalInvalidCalendarIntervalSuggestion": "1{unit}", "xpack.rollupJobs.create.errors.idSameAsCloned": "Le nom doit être différent du nom cloné : \"{clonedId}\".", "xpack.rollupJobs.create.errors.indexPatternIllegalCharacters": "Supprimez les caractères {characterList} de votre modèle d'indexation.", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 6cf3ef40920a4..43c21dba0a84a 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -11169,17 +11169,10 @@ "xpack.enterpriseSearch.content.indices.pipelines.successToastDeleteMlPipeline.title": "機械学習推論パイプライン\"{pipelineName}\"を削除しました", "xpack.enterpriseSearch.content.indices.pipelines.successToastDetachMlPipeline.title": "機械学習推論パイプラインを\"{pipelineName}\"からデタッチしました", "xpack.enterpriseSearch.content.indices.pipelines.tabs.jsonConfigurations.unmanaged.description": "スタック管理で{ingestPipelines}からこのパイプラインを編集", - "xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.description": "エンタープライズサーチで{name}コンテンツを検索します。", - "xpack.enterpriseSearch.content.indices.selectConnector.moreConnectorsMessage": "その他のコネクターをお探しの場合は、{workplaceSearchLink}または{buildYourOwnConnectorLink}。", - "xpack.enterpriseSearch.content.indices.selectConnector.successToast.title": "インデックスは{connectorName}ネイティブコネクターを使用します。", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.alreadyExists.error": "名前{indexName}のインデックスがすでに存在します", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.isInvalid.error": "{indexName}は無効なインデックス名です", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineOne": "インデックスは次の名前になります:{indexName}", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description": "削除されたインデックス{indexName}は、既存のコネクター構成に関連付けられていました。既存のコネクター構成を新しいコネクター構成で置き換えますか?", - "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.content": "コネクターフレームワークとコネクタークライアントの例を使用すると、あらゆるデータソースでElasticsearch {bulkApiDocLink}への取り込みを高速化できます。インデックスを作成した後、コネクターフレームワークにアクセスし、最初のコネクタークライアントを接続するための手順が示されます。", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.content": "コネクターを作成すると、コンテンツの準備が完了します。{elasticsearchLink}で最初の検索エクスペリエンスを構築するか、{appSearchLink}で提供されている検索エクスペリエンスツールを使用します。柔軟性の高い能力とターンキーのシンプル性を両立するために、{searchEngineLink}を作成することをお勧めします。", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.content": "一意のインデックス名を指定し、任意でインデックスのデフォルト{languageAnalyzerDocLink}を設定します。このインデックスには、データソースコンテンツが格納されます。また、デフォルトフィールドマッピングで最適化され、関連する検索エクスペリエンスを実現します。", - "xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.content": "ネイティブコネクターのカタログから選択し、MongoDBなどのサポートされているデータソースから検索可能なコンテンツの抽出を開始します。コネクターの動作をカスタマイズする必要がある場合は、セルフマネージドコネクタークライアントバージョンを常にデプロイし、{buildAConnectorLabel}ワークフロー経由で登録できます。", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.description": "{total}件中{results}件を表示中。{maximum}ドキュメントが検索結果の最大数です。", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.pagination.itemsPerPage": "毎秒あたりのドキュメント:{docPerPage}", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.paginationOptions.option": "{docCount}ドキュメント", @@ -12604,12 +12597,9 @@ "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.tableColumn.message": "エラーメッセージ", "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.tableColumn.timestamp": "タイムスタンプ", "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.title": "推論エラー", - "xpack.enterpriseSearch.content.indices.selectConnector.buildYourOwnConnectorLinkLabel": "世界に1つ", "xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.documentationLinkLabel": "ドキュメント", "xpack.enterpriseSearch.content.indices.selectConnector.description": "まず、データソースから、新しく作成された検索インデックスに、データを抽出、インデックス、同期するように構成するコネクターを選択します。", - "xpack.enterpriseSearch.content.indices.selectConnector.selectAndConfigureButtonLabel": "選択して構成", "xpack.enterpriseSearch.content.indices.selectConnector.title": "コネクターを選択", - "xpack.enterpriseSearch.content.indices.selectConnector.workplaceSearchLinkLabel": "Workplace Searchで追加の統合を表示", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.footer.attach": "接続", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.footer.create": "パイプラインの作成", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.steps.configure.title": "構成", @@ -12639,38 +12629,17 @@ "xpack.enterpriseSearch.content.new_index.successToast.description": "App Searchエンジンを使用して、新しいElasticsearchインデックスの検索エクスペリエンスを構築できます。", "xpack.enterpriseSearch.content.new_index.successToast.title": "インデックスが正常に作成されました", "xpack.enterpriseSearch.content.newIndex.breadcrumb": "新しい検索インデックス", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.description": "APIに接続してプログラムでドキュメントを追加", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.footer": "ある程度の開発が必要です", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.label": "APIを使用", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.description": "コネクターフレームワークを使用すると、カスタムデータソースのコネクターをすばやく構築できます。", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.footer": "開発が必要です", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.label": "コネクターを作成", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.description": "すべてのWebサイトコンテンツを検出、抽出、インデックス作成、同期", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.footer": "開発は不要です", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.label": "Webクローラーを使用", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.description": "サポートされているデータソースから、すべてのコンテンツを抽出、インデックス、同期するように、コネクターを設定 ", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.footer": "開発は不要です", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.label": "コネクターを使用", "xpack.enterpriseSearch.content.newIndex.emptyState.description": "エンタープライズ サーチで追加したデータは検索インデックスと呼ばれ、App SearchとWorkplace Searchの両方で検索可能です。App SearchのコネクターとWorkplace SearchのWebクローラーを使用できます。", "xpack.enterpriseSearch.content.newIndex.emptyState.footer.link": "ドキュメントを読む", "xpack.enterpriseSearch.content.newIndex.emptyState.footer.title": "検索インデックスの詳細", "xpack.enterpriseSearch.content.newIndex.emptyState.title": "インジェスチョン方法を選択", - "xpack.enterpriseSearch.content.newIndex.methodApi.steps.configureIngestion.content": "APIキーを生成し、ドキュメントを参照して、ドキュメントをElasticsearch APIエンドポイントに送信します。合理化された統合では、言語クライアントを使用できます。", - "xpack.enterpriseSearch.content.newIndex.methodApi.title": "APIを使用してインデックス", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.bulkAPILink": "Bulk API", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.title": "コネクターを作成して構成", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.nativeConnector.title": "コネクターを構成", - "xpack.enterpriseSearch.content.newIndex.methodCrawler.steps.configureIngestion.content": "クローリングするドメインを構成し、準備が完了したら、最初のクローリングをトリガーします。その後の処理は、エンタープライズ サーチで自動的に実行されます。", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.createIndex.buttonText": "インデックスの作成", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.languageInputHelpText": "言語は後から変更できますが、再インデックスが必要になる場合があります", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.languageInputLabel": "言語アナライザー", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineTwo": "名前は小文字で入力してください。スペースや特殊文字は使用できません。", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputLabel": "インデックス名", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputPlaceholder": "インデックスの名前を設定", - "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.viewDocumentation.linkText": "ドキュメントを表示", "xpack.enterpriseSearch.content.newIndex.pageTitle": "新しい検索インデックス", - "xpack.enterpriseSearch.content.newIndex.selectSearchIndex.description": "ユースケースのインジェスチョン方法を選択し、検索が最適化されたElasticsearchインデックスを作成します。", - "xpack.enterpriseSearch.content.newIndex.selectSearchIndex.title": "インジェスチョン方法を選択", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.cancelButton.label": "キャンセル", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.confirmButton.label": "構成を置換", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.title": "既存のコネクターを置換", @@ -12678,16 +12647,6 @@ "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.genericError": "インデックスを作成できませんでした", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.indexAlreadyExists": "このインデックスはすでに存在します", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.unauthorizedError": "このコネクターを作成する権限がありません", - "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.title": "コネクターを作成", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.appSearchLink": "App Search", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.elasticsearchLink": "Elasticsearch", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.searchEngineLink": "検索エンジン", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.title": "検索エクスペリエンスを構築", - "xpack.enterpriseSearch.content.newIndex.steps.configureIngestion.title": "インジェスチョン設定を構成", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.crawler.title": "Webクローラーを使用してインデックス", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.languageAnalyzerLink": "言語アナライザー", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.title": "Elasticsearchインデックスを作成", - "xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.title": "コネクターを使用したインデックス作成", "xpack.enterpriseSearch.content.newIndex.types.api": "APIエンドポイント", "xpack.enterpriseSearch.content.newIndex.types.connector": "コネクター", "xpack.enterpriseSearch.content.newIndex.types.crawler": "Webクローラー", @@ -26555,9 +26514,6 @@ "xpack.reporting.diagnostic.browserMissingFonts": "ブラウザーはデフォルトフォントを検索できませんでした。この問題を修正するには、{url}を参照してください。", "xpack.reporting.diagnostic.noUsableSandbox": "Chromiumサンドボックスを使用できません。これは「xpack.screenshotting.browser.chromium.disableSandbox」で無効にすることができます。この作業はご自身の責任で行ってください。{url}を参照してください", "xpack.reporting.exportTypes.common.failedToDecryptReportJobDataErrorMessage": "レポートジョブデータの解読に失敗しました。{encryptionKey} が設定されていることを確認してこのレポートを再生成してください。{err}", - "generateCsv.esErrorMessage": "Elasticsearchから{statusCode}応答を受け取りました:{message}", - "generateCsv.incorrectRowCount": "検索から生成されたCSVの行数でエラーが発生しました。正しい行数:{expected}、実際の行数:{received}。", - "generateCsv.unknownErrorMessage": "不明なエラーが発生しました:{message}", "xpack.reporting.jobResponse.errorHandler.notAuthorized": "{jobtype}レポートを表示または削除する権限がありません", "xpack.reporting.jobsQuery.deleteError": "レポートを削除できません:{error}", "xpack.reporting.jobStatusDetail.attemptXofY": "{max_attempts}回中{attempts}回試行します。", @@ -26614,9 +26570,6 @@ "xpack.reporting.diagnostic.screenshotFailureMessage": "Kibanaインストールのスクリーンショットを作成できませんでした。", "xpack.reporting.errorHandler.unknownError": "不明なエラー", "xpack.reporting.exportTypes.common.missingJobHeadersErrorMessage": "ジョブヘッダーがありません", - "generateCsv.authenticationExpired.partialResultsMessage": "認証トークが有効期限切れのため、このレポートには一部のCSVの結果が含まれています。少ない量のデータをエクスポートするか、認証トークンのタイムアウトを大きくします。", - "generateCsv.csvUnableToClosePit": "検索に使用したPoint-In-Timeを閉じることができません。Kibanaサーバーログを確認してください。", - "generateCsv.escapedFormulaValues": "CSVには、値がエスケープされた式が含まれる場合があります", "xpack.reporting.jobCreatedBy.unknownUserPlaceholderText": "不明", "xpack.reporting.jobResponse.errorHandler.unknownError": "不明なエラー", "xpack.reporting.jobStatusDetail.deprecatedText": "これは廃止予定のエクスポートタイプです。将来のバージョンのKibanaとの互換性のためには、このレポートの自動化を再作成する必要があります。", @@ -26753,6 +26706,12 @@ "xpack.reporting.uiSettings.validate.customLogo.badFile": "このファイルは動作しません。別の画像ファイルを試してください。", "xpack.reporting.uiSettings.validate.customLogo.tooLarge": "このファイルは大きすぎます。画像ファイルは200キロバイト未満でなければなりません。", "xpack.reporting.userAccessError.learnMoreLink": "詳細", + "generateCsv.esErrorMessage": "Elasticsearchから{statusCode}応答を受け取りました:{message}", + "generateCsv.incorrectRowCount": "検索から生成されたCSVの行数でエラーが発生しました。正しい行数:{expected}、実際の行数:{received}。", + "generateCsv.unknownErrorMessage": "不明なエラーが発生しました:{message}", + "generateCsv.authenticationExpired.partialResultsMessage": "認証トークが有効期限切れのため、このレポートには一部のCSVの結果が含まれています。少ない量のデータをエクスポートするか、認証トークンのタイムアウトを大きくします。", + "generateCsv.csvUnableToClosePit": "検索に使用したPoint-In-Timeを閉じることができません。Kibanaサーバーログを確認してください。", + "generateCsv.escapedFormulaValues": "CSVには、値がエスケープされた式が含まれる場合があります", "xpack.rollupJobs.create.errors.dateHistogramIntervalInvalidCalendarIntervalSuggestion": "1{unit}", "xpack.rollupJobs.create.errors.idSameAsCloned": "名前はクローン名「{clonedId}」と同じにできません。", "xpack.rollupJobs.create.errors.indexPatternIllegalCharacters": "インデックスパターンから {characterList} を削除してください。", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 233b3f3b33119..2f628ca89b213 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -11170,17 +11170,10 @@ "xpack.enterpriseSearch.content.indices.pipelines.successToastDeleteMlPipeline.title": "已删除 Machine Learning 推理管道“{pipelineName}”", "xpack.enterpriseSearch.content.indices.pipelines.successToastDetachMlPipeline.title": "已从“{pipelineName}”中分离 Machine Learning 推理管道", "xpack.enterpriseSearch.content.indices.pipelines.tabs.jsonConfigurations.unmanaged.description": "从 Stack Management 中的 {ingestPipelines} 编辑此管道", - "xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.description": "使用 Enterprise Search 搜索您的 {name} 内容。", - "xpack.enterpriseSearch.content.indices.selectConnector.moreConnectorsMessage": "正在寻找更多连接器?{workplaceSearchLink}或{buildYourOwnConnectorLink}", - "xpack.enterpriseSearch.content.indices.selectConnector.successToast.title": "您的索引现在将使用 {connectorName} 本机连接器。", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.alreadyExists.error": "名为 {indexName} 的索引已存在", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.isInvalid.error": "{indexName} 为无效索引名称", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineOne": "您的索引将命名为:{indexName}", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description": "名为 {indexName} 的已删除索引最初绑定到现有连接器配置。是否要将现有连接器配置替换成新的?", - "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.content": "使用我们的连接器框架和连接器客户端示例,您将能够加速任何数据源的 Elasticsearch {bulkApiDocLink} 采集。创建索引后,将引导您完成各个步骤,以访问连接器框架并连接到您的首个连接器客户端。", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.content": "构建连接器后,您的内容将准备就绪。通过 {elasticsearchLink} 构建您的首次搜索体验,或浏览 {appSearchLink} 提供的搜索体验工具。我们建议您创建 {searchEngineLink},以实现灵活的功能与一站式简便性的完美平衡。", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.content": "提供唯一的索引名称,并为索引设置默认的 {languageAnalyzerDocLink}(可选)。此索引将存放您的数据源内容,并通过默认字段映射进行优化,以提供相关搜索体验。", - "xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.content": "从我们的本机连接器目录中进行选择,以开始从 MongoDB 等受支持的数据源中提取可搜索内容。如果需要定制连接器的行为,您始终可以部署自我管理的连接器客户端版本并通过 {buildAConnectorLabel} 工作流进行注册。", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.description": "显示 {results} 个,共 {total} 个。搜索结果最多包含 {maximum} 个文档。", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.pagination.itemsPerPage": "每页文档数:{docPerPage}", "xpack.enterpriseSearch.content.searchIndex.documents.documentList.paginationOptions.option": "{docCount} 个文档", @@ -12605,12 +12598,9 @@ "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.tableColumn.message": "错误消息", "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.tableColumn.timestamp": "时间戳", "xpack.enterpriseSearch.content.indices.pipelines.tabs.pipelineInferenceLogs.title": "推理错误", - "xpack.enterpriseSearch.content.indices.selectConnector.buildYourOwnConnectorLinkLabel": "自行构建", "xpack.enterpriseSearch.content.indices.selectConnector.connectorCheckable.documentationLinkLabel": "文档", "xpack.enterpriseSearch.content.indices.selectConnector.description": "通过选择要配置以从数据源中提取、索引数据并将其同步到您新建的搜索索引的连接器,从而开始使用。", - "xpack.enterpriseSearch.content.indices.selectConnector.selectAndConfigureButtonLabel": "选择并配置", "xpack.enterpriseSearch.content.indices.selectConnector.title": "选择连接器", - "xpack.enterpriseSearch.content.indices.selectConnector.workplaceSearchLinkLabel": "在 Workplace Search 中查看其他集成", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.footer.attach": "附加", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.footer.create": "创建管道", "xpack.enterpriseSearch.content.indices.transforms.addInferencePipelineModal.steps.configure.title": "配置", @@ -12640,38 +12630,17 @@ "xpack.enterpriseSearch.content.new_index.successToast.description": "您可以使用 App Search 引擎为您的新 Elasticsearch 索引构建搜索体验。", "xpack.enterpriseSearch.content.new_index.successToast.title": "已成功创建索引", "xpack.enterpriseSearch.content.newIndex.breadcrumb": "新搜索索引", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.description": "通过连接 API 以编程方式添加文档", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.footer": "需要一些开发", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.api.label": "使用 API", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.description": "使用连接器框架为定制数据源快速构建连接器", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.footer": "需要开发", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.connector.label": "构建连接器", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.description": "发现、提取、索引和同步所有网站内容", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.footer": "无需开发", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.crawler.label": "使用网络爬虫", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.description": "配置连接器以从受支持的数据源提取、索引和同步所有内容 ", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.footer": "无需开发", - "xpack.enterpriseSearch.content.newIndex.buttonGroup.nativeConnector.label": "使用连接器", "xpack.enterpriseSearch.content.newIndex.emptyState.description": "您在 Enterprise Search 中添加的数据称为搜索索引,您可在 App Search 和 Workplace Search 中搜索这些数据。现在,您可以在 App Search 中使用连接器,在 Workplace Search 中使用网络爬虫。", "xpack.enterpriseSearch.content.newIndex.emptyState.footer.link": "阅读文档", "xpack.enterpriseSearch.content.newIndex.emptyState.footer.title": "想要详细了解搜索索引?", "xpack.enterpriseSearch.content.newIndex.emptyState.title": "选择采集方法", - "xpack.enterpriseSearch.content.newIndex.methodApi.steps.configureIngestion.content": "生成 API 密钥并查看文档,以便将文档发布到 Elasticsearch API 终端。语言客户端可用于精简集成。", - "xpack.enterpriseSearch.content.newIndex.methodApi.title": "使用 API 编制索引", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.bulkAPILink": "批量 API", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.buildConnector.title": "构建并配置连接器", - "xpack.enterpriseSearch.content.newIndex.methodConnector.steps.nativeConnector.title": "配置连接器", - "xpack.enterpriseSearch.content.newIndex.methodCrawler.steps.configureIngestion.content": "配置您要爬网的域,并在准备就绪后触发第一次爬网。让 Enterprise Search 执行其余操作。", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.createIndex.buttonText": "创建索引", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.languageInputHelpText": "可以在稍后更改语言,但可能需要重新索引", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.languageInputLabel": "语言分析器", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineTwo": "名称应为小写,并且不能包含空格或特殊字符。", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputLabel": "索引名称", "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputPlaceholder": "设置索引的名称", - "xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.viewDocumentation.linkText": "查看文档", "xpack.enterpriseSearch.content.newIndex.pageTitle": "新搜索索引", - "xpack.enterpriseSearch.content.newIndex.selectSearchIndex.description": "通过为您的用例选择采集方法来创建搜索优化的 Elasticsearch 索引。", - "xpack.enterpriseSearch.content.newIndex.selectSearchIndex.title": "选择采集方法", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.cancelButton.label": "取消", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.confirmButton.label": "替换配置", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.title": "替换现有连接器", @@ -12679,16 +12648,6 @@ "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.genericError": "无法创建您的索引", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.indexAlreadyExists": "此索引已存在", "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.error.unauthorizedError": "您无权创建此连接器", - "xpack.enterpriseSearch.content.newIndex.steps.buildConnector.title": "构建连接器", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.appSearchLink": "App Search", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.elasticsearchLink": "Elasticsearch", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.searchEngineLink": "搜索引擎", - "xpack.enterpriseSearch.content.newIndex.steps.buildSearchExperience.title": "构建搜索体验", - "xpack.enterpriseSearch.content.newIndex.steps.configureIngestion.title": "配置采集设置", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.crawler.title": "使用网络爬虫编制索引", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.languageAnalyzerLink": "语言分析器", - "xpack.enterpriseSearch.content.newIndex.steps.createIndex.title": "创建 Elasticsearch 索引", - "xpack.enterpriseSearch.content.newIndex.steps.nativeConnector.title": "使用连接器进行索引", "xpack.enterpriseSearch.content.newIndex.types.api": "API 终端", "xpack.enterpriseSearch.content.newIndex.types.connector": "连接器", "xpack.enterpriseSearch.content.newIndex.types.crawler": "网络爬虫", @@ -26571,9 +26530,6 @@ "xpack.reporting.diagnostic.browserMissingFonts": "浏览器找不到默认字体。请参见 {url} 以解决此问题。", "xpack.reporting.diagnostic.noUsableSandbox": "无法使用 Chromium 沙盒。您自行承担使用“xpack.screenshotting.browser.chromium.disableSandbox”禁用此项的风险。请参见 {url}", "xpack.reporting.exportTypes.common.failedToDecryptReportJobDataErrorMessage": "无法解密报告作业数据。请确保已设置 {encryptionKey},然后重新生成此报告。{err}", - "generateCsv.esErrorMessage": "从 Elasticsearch 收到 {statusCode} 响应:{message}", - "generateCsv.incorrectRowCount": "从搜索生成的 CSV 行数出现错误:应为 {expected},但收到 {received}。", - "generateCsv.unknownErrorMessage": "出现未知错误:{message}", "xpack.reporting.jobResponse.errorHandler.notAuthorized": "抱歉,您无权查看或删除 {jobtype} 报告", "xpack.reporting.jobsQuery.deleteError": "无法删除报告:{error}", "xpack.reporting.jobStatusDetail.attemptXofY": "尝试 {attempts} 次,最多可尝试 {max_attempts} 次。", @@ -26630,9 +26586,6 @@ "xpack.reporting.diagnostic.screenshotFailureMessage": "我们无法拍摄 Kibana 安装的屏幕截图。", "xpack.reporting.errorHandler.unknownError": "未知错误", "xpack.reporting.exportTypes.common.missingJobHeadersErrorMessage": "作业标头缺失", - "generateCsv.authenticationExpired.partialResultsMessage": "此报告包含部分 CSV 结果,因为身份验证令牌已过期。导出更少量的数据,或增加身份验证令牌的超时时间。", - "generateCsv.csvUnableToClosePit": "无法关闭用于搜索的时间点。查看 Kibana 服务器日志。", - "generateCsv.escapedFormulaValues": "CSV 可能包含值已转义的公式", "xpack.reporting.jobCreatedBy.unknownUserPlaceholderText": "未知", "xpack.reporting.jobResponse.errorHandler.unknownError": "未知错误", "xpack.reporting.jobStatusDetail.deprecatedText": "这是已弃用的导出类型。此报告的自动化将需要重新创建,才能与未来版本的 Kibana 兼容。", @@ -26769,6 +26722,12 @@ "xpack.reporting.uiSettings.validate.customLogo.badFile": "抱歉,该文件无效。请尝试其他图像文件。", "xpack.reporting.uiSettings.validate.customLogo.tooLarge": "抱歉,该文件过大。图像文件必须小于 200 千字节。", "xpack.reporting.userAccessError.learnMoreLink": "了解详情", + "generateCsv.esErrorMessage": "从 Elasticsearch 收到 {statusCode} 响应:{message}", + "generateCsv.incorrectRowCount": "从搜索生成的 CSV 行数出现错误:应为 {expected},但收到 {received}。", + "generateCsv.unknownErrorMessage": "出现未知错误:{message}", + "generateCsv.authenticationExpired.partialResultsMessage": "此报告包含部分 CSV 结果,因为身份验证令牌已过期。导出更少量的数据,或增加身份验证令牌的超时时间。", + "generateCsv.csvUnableToClosePit": "无法关闭用于搜索的时间点。查看 Kibana 服务器日志。", + "generateCsv.escapedFormulaValues": "CSV 可能包含值已转义的公式", "xpack.rollupJobs.create.errors.dateHistogramIntervalInvalidCalendarIntervalSuggestion": "1{unit}", "xpack.rollupJobs.create.errors.idSameAsCloned": "名称不能与克隆名称相同:“{clonedId}。", "xpack.rollupJobs.create.errors.indexPatternIllegalCharacters": "从索引模式中删除 {characterList} 字符。", From d2c905bef505f218fc6d5b80a8d6068981be1c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20C=C3=B4t=C3=A9?= Date: Thu, 20 Apr 2023 07:14:04 -0400 Subject: [PATCH 118/144] Deprecate usage of ephemeral tasks (#154275) Resolves https://github.com/elastic/kibana/issues/151457. In this PR, I'm deprecating ephemeral tasks and their related settings. The following settings have been deprecated with proper warning messages: - `xpack.task_manager.ephemeral_tasks.enabled` - `xpack.task_manager.ephemeral_tasks.request_capacity` - `xpack.alerting.maxEphemeralActionsPerAlert` ## To verify 1. Set the following in your `kibana.yml` ``` xpack.task_manager.ephemeral_tasks.enabled: true xpack.task_manager.ephemeral_tasks.request_capacity: 10 xpack.alerting.maxEphemeralActionsPerAlert: 10 ``` 2. Start up Kibana 3. Notice the deprecation warnings about these settings appear in the logs 4. Remove settings from step 1 ## Sample warning logs ``` [2023-04-18T09:45:36.731-04:00][WARN ][config.deprecation] Configuring "xpack.alerting.maxEphemeralActionsPerAlert" is deprecated and will be removed in a future version. Remove this setting to increase action execution resiliency. [2023-04-18T09:45:36.732-04:00][WARN ][config.deprecation] Configuring "xpack.task_manager.ephemeral_tasks.enabled" is deprecated and will be removed in a future version. Remove this setting to increase task execution resiliency. [2023-04-18T09:45:36.732-04:00][WARN ][config.deprecation] Configuring "xpack.task_manager.ephemeral_tasks.request_capacity" is deprecated and will be removed in a future version. Remove this setting to increase task execution resiliency. ``` ### Release notes The following settings have been deprecated. Remove them to increase task execution resiliency. - `xpack.task_manager.ephemeral_tasks.enabled` - `xpack.task_manager.ephemeral_tasks.request_capacity` - `xpack.alerting.maxEphemeralActionsPerAlert` --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: lcawl --- docs/settings/alert-action-settings.asciidoc | 1 + docs/settings/task-manager-settings.asciidoc | 2 + x-pack/plugins/alerting/server/index.ts | 6 +- x-pack/plugins/task_manager/server/index.ts | 77 ++++++++++++-------- 4 files changed, 53 insertions(+), 33 deletions(-) diff --git a/docs/settings/alert-action-settings.asciidoc b/docs/settings/alert-action-settings.asciidoc index 7fa35c0df57d7..383fae89bad6b 100644 --- a/docs/settings/alert-action-settings.asciidoc +++ b/docs/settings/alert-action-settings.asciidoc @@ -223,6 +223,7 @@ xpack.actions.run: ==== Alerting settings `xpack.alerting.maxEphemeralActionsPerAlert` {ess-icon}:: +deprecated:[8.8.0] Sets the number of actions that will run ephemerally. To use this, enable ephemeral tasks in task manager first with <> diff --git a/docs/settings/task-manager-settings.asciidoc b/docs/settings/task-manager-settings.asciidoc index 5f31c9adc879d..0ea057fb9dee7 100644 --- a/docs/settings/task-manager-settings.asciidoc +++ b/docs/settings/task-manager-settings.asciidoc @@ -33,11 +33,13 @@ This flag will enable automatic warn and error logging if task manager self dete The amount of seconds we allow a task to delay before printing a warning server log. Defaults to 60. `xpack.task_manager.ephemeral_tasks.enabled`:: +deprecated:[8.8.0] Enables a technical preview feature that executes a limited (and configurable) number of actions in the same task as the alert which triggered them. These action tasks will reduce the latency of the time it takes an action to run after it's triggered, but are not persisted as SavedObjects. These non-persisted action tasks have a risk that they won't be run at all if the Kibana instance running them exits unexpectedly. Defaults to false. `xpack.task_manager.ephemeral_tasks.request_capacity`:: +deprecated:[8.8.0] Sets the size of the ephemeral queue defined above. Defaults to 10. `xpack.task_manager.event_loop_delay.monitor`:: diff --git a/x-pack/plugins/alerting/server/index.ts b/x-pack/plugins/alerting/server/index.ts index a2f0a08b7512b..6cee7568692cb 100644 --- a/x-pack/plugins/alerting/server/index.ts +++ b/x-pack/plugins/alerting/server/index.ts @@ -74,7 +74,7 @@ export const plugin = (initContext: PluginInitializerContext) => new AlertingPlu export const config: PluginConfigDescriptor = { schema: configSchema, - deprecations: ({ renameFromRoot }) => [ + deprecations: ({ renameFromRoot, deprecate }) => [ renameFromRoot('xpack.alerts.healthCheck', 'xpack.alerting.healthCheck', { level: 'warning' }), renameFromRoot( 'xpack.alerts.invalidateApiKeysTask.interval', @@ -89,5 +89,9 @@ export const config: PluginConfigDescriptor = { renameFromRoot('xpack.alerting.defaultRuleTaskTimeout', 'xpack.alerting.rules.run.timeout', { level: 'warning', }), + deprecate('maxEphemeralActionsPerAlert', 'a future version', { + level: 'warning', + message: `Configuring "xpack.alerting.maxEphemeralActionsPerAlert" is deprecated and will be removed in a future version. Remove this setting to increase action execution resiliency.`, + }), ], }; diff --git a/x-pack/plugins/task_manager/server/index.ts b/x-pack/plugins/task_manager/server/index.ts index f489566a56491..174686529959e 100644 --- a/x-pack/plugins/task_manager/server/index.ts +++ b/x-pack/plugins/task_manager/server/index.ts @@ -50,36 +50,49 @@ export const config: PluginConfigDescriptor = { exposeToUsage: { max_workers: true, }, - deprecations: () => [ - (settings, fromPath, addDeprecation) => { - const taskManager = get(settings, fromPath); - if (taskManager?.index) { - addDeprecation({ - level: 'critical', - configPath: `${fromPath}.index`, - documentationUrl: 'https://ela.st/kbn-remove-legacy-multitenancy', - message: `"${fromPath}.index" is deprecated. Multitenancy by changing "kibana.index" will not be supported starting in 8.0. See https://ela.st/kbn-remove-legacy-multitenancy for more details`, - correctiveActions: { - manualSteps: [ - `If you rely on this setting to achieve multitenancy you should use Spaces, cross-cluster replication, or cross-cluster search instead.`, - `To migrate to Spaces, we encourage using saved object management to export your saved objects from a tenant into the default tenant in a space.`, - ], - }, - }); - } - if (taskManager?.max_workers > MAX_WORKERS_LIMIT) { - addDeprecation({ - level: 'critical', - configPath: `${fromPath}.max_workers`, - message: `setting "${fromPath}.max_workers" (${taskManager?.max_workers}) greater than ${MAX_WORKERS_LIMIT} is deprecated.`, - correctiveActions: { - manualSteps: [ - `Maximum allowed value of "${fromPath}.max_workers" is ${MAX_WORKERS_LIMIT}.` + - `Replace "${fromPath}.max_workers: ${taskManager?.max_workers}" with (${MAX_WORKERS_LIMIT}).`, - ], - }, - }); - } - }, - ], + deprecations: ({ deprecate }) => { + return [ + deprecate('ephemeral_tasks.enabled', 'a future version', { + level: 'warning', + message: `Configuring "xpack.task_manager.ephemeral_tasks.enabled" is deprecated and will be removed in a future version. Remove this setting to increase task execution resiliency.`, + }), + deprecate('ephemeral_tasks.request_capacity', 'a future version', { + level: 'warning', + message: `Configuring "xpack.task_manager.ephemeral_tasks.request_capacity" is deprecated and will be removed in a future version. Remove this setting to increase task execution resiliency.`, + }), + (settings, fromPath, addDeprecation) => { + const taskManager = get(settings, fromPath); + if (taskManager?.index) { + addDeprecation({ + level: 'critical', + configPath: `${fromPath}.index`, + documentationUrl: 'https://ela.st/kbn-remove-legacy-multitenancy', + message: `"${fromPath}.index" is deprecated. Multitenancy by changing "kibana.index" will not be supported starting in 8.0. See https://ela.st/kbn-remove-legacy-multitenancy for more details`, + correctiveActions: { + manualSteps: [ + `If you rely on this setting to achieve multitenancy you should use Spaces, cross-cluster replication, or cross-cluster search instead.`, + `To migrate to Spaces, we encourage using saved object management to export your saved objects from a tenant into the default tenant in a space.`, + ], + }, + }); + } + }, + (settings, fromPath, addDeprecation) => { + const taskManager = get(settings, fromPath); + if (taskManager?.max_workers > MAX_WORKERS_LIMIT) { + addDeprecation({ + level: 'critical', + configPath: `${fromPath}.max_workers`, + message: `setting "${fromPath}.max_workers" (${taskManager?.max_workers}) greater than ${MAX_WORKERS_LIMIT} is deprecated.`, + correctiveActions: { + manualSteps: [ + `Maximum allowed value of "${fromPath}.max_workers" is ${MAX_WORKERS_LIMIT}.` + + `Replace "${fromPath}.max_workers: ${taskManager?.max_workers}" with (${MAX_WORKERS_LIMIT}).`, + ], + }, + }); + } + }, + ]; + }, }; From 5a4dd3fccd1631e72d9c3d45b1c58a7ea2a6d5a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20C=C3=B4t=C3=A9?= Date: Thu, 20 Apr 2023 07:16:27 -0400 Subject: [PATCH 119/144] Remove `alerting_framework_heath` from the alerting framework health API response (#154276) Resolves https://github.com/elastic/kibana/issues/135035. In this PR, I'm removing the deprecated attribute `alerting_framework_heath` from the alerting framework health API. ## To verify 1. Start Kibana. 2. Call `/api/alerting/_health`. 3. Notice `alerting_framework_heath` is no longer part of the HTTP API response. --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: lcawl --- .../rules/rule-apis-passthru.asciidoc | 38 +-------- docs/api/alerting/health.asciidoc | 16 ---- .../alerting/docs/openapi/bundled.json | 70 +--------------- .../alerting/docs/openapi/bundled.yaml | 53 +----------- .../examples/get_health_response.yaml | 11 --- .../s@{spaceid}@api@alerting@_health.yaml | 40 +--------- .../alerting/server/routes/health.test.ts | 80 ------------------- .../plugins/alerting/server/routes/health.ts | 7 -- .../group2/tests/alerting/health.ts | 9 --- 9 files changed, 5 insertions(+), 319 deletions(-) diff --git a/docs/api-generated/rules/rule-apis-passthru.asciidoc b/docs/api-generated/rules/rule-apis-passthru.asciidoc index 12515fba838ee..08fdcd1d0276a 100644 --- a/docs/api-generated/rules/rule-apis-passthru.asciidoc +++ b/docs/api-generated/rules/rule-apis-passthru.asciidoc @@ -589,21 +589,6 @@ Any modifications made to this file will be overwritten. "timestamp" : "2023-01-13T01:28:00.28Z" } }, - "alerting_framework_heath" : { - "_deprecated" : "This state property has a typo, use \"alerting_framework_health\" instead.", - "execution_health" : { - "status" : "ok", - "timestamp" : "2023-01-13T01:28:00.28Z" - }, - "read_health" : { - "status" : "ok", - "timestamp" : "2023-01-13T01:28:00.28Z" - }, - "decryption_health" : { - "status" : "ok", - "timestamp" : "2023-01-13T01:28:00.28Z" - } - }, "has_permanent_encryption_key" : true, "is_sufficiently_secure" : true } @@ -2127,8 +2112,6 @@ Any modifications made to this file will be overwritten.
  • getAlertingHealth_200_response_alerting_framework_health_decryption_health -
  • getAlertingHealth_200_response_alerting_framework_health_execution_health -
  • getAlertingHealth_200_response_alerting_framework_health_read_health -
  • -
  • getAlertingHealth_200_response_alerting_framework_heath -
  • -
  • getAlertingHealth_200_response_alerting_framework_heath_decryption_health -
  • getRuleTypes_200_response_inner -
  • getRuleTypes_200_response_inner_action_groups_inner -
  • getRuleTypes_200_response_inner_action_variables -
  • @@ -2343,8 +2326,7 @@ Any modifications made to this file will be overwritten.

    getAlertingHealth_200_response - Up

    -
    alerting_framework_heath (optional)
    -
    alerting_framework_health (optional)
    +
    alerting_framework_health (optional)
    has_permanent_encryption_key (optional)
    Boolean If false, the encrypted saved object plugin does not have a permanent encryption key.
    is_sufficiently_secure (optional)
    Boolean If false, security is enabled but TLS is not.
    @@ -2385,24 +2367,6 @@ Any modifications made to this file will be overwritten.
    status (optional)
    Enum:
    error
    ok
    warn
    -
    timestamp (optional)
    Date format: date-time
    -
    - - -
    -

    getAlertingHealth_200_response_alerting_framework_heath_decryption_health - Up

    -
    -
    -
    status (optional)
    timestamp (optional)
    Date format: date-time
    diff --git a/docs/api/alerting/health.asciidoc b/docs/api/alerting/health.asciidoc index ce22ece799b76..2a37abc864878 100644 --- a/docs/api/alerting/health.asciidoc +++ b/docs/api/alerting/health.asciidoc @@ -69,20 +69,6 @@ The API returns the following: "status":"ok", "timestamp":"2022-06-21T21:46:15.023Z" } - }, - "alerting_framework_heath":{ <4> - "_deprecated":"This state property has a typo, use \"alerting_framework_health\" instead.","decryption_health":{ - "status":"ok", - "timestamp":"2022-06-21T21:46:15.023Z" - }, - "execution_health":{ - "status":"ok", - "timestamp":"2022-06-21T21:46:15.023Z" - }, - "read_health":{ - "status":"ok", - "timestamp":"2022-06-21T21:46:15.023Z" - } } } -------------------------------------------------- @@ -95,5 +81,3 @@ the alerting framework: `decryption_health`, `execution_health`, and decryption: `ok`, `warn` or `error`. `execution_health` returns the timestamp and status of the rule execution: `ok`, `warn` or `error`. `read_health` returns the timestamp and status of the rule reading events: `ok`, `warn` or `error`. -<4> `alerting_framework_heath` has a typo, use `alerting_framework_health` -instead. deprecated:[8.0.0] diff --git a/x-pack/plugins/alerting/docs/openapi/bundled.json b/x-pack/plugins/alerting/docs/openapi/bundled.json index e7fbc15c77c01..becb387e84024 100644 --- a/x-pack/plugins/alerting/docs/openapi/bundled.json +++ b/x-pack/plugins/alerting/docs/openapi/bundled.json @@ -613,59 +613,6 @@ "schema": { "type": "object", "properties": { - "alerting_framework_heath": { - "type": "object", - "description": "This property has a typo. Use `alerting_framework_health` instead.", - "deprecated": true, - "properties": { - "_deprecated": { - "type": "string", - "example": "This state property has a typo, use \"alerting_framework_health\" instead." - }, - "decryption_health": { - "type": "object", - "properties": { - "status": { - "type": "string", - "example": "ok" - }, - "timestamp": { - "type": "string", - "format": "date-time", - "example": "2023-01-13T01:28:00.280Z" - } - } - }, - "execution_health": { - "type": "object", - "properties": { - "status": { - "type": "string", - "example": "ok" - }, - "timestamp": { - "type": "string", - "format": "date-time", - "example": "2023-01-13T01:28:00.280Z" - } - } - }, - "read_health": { - "type": "object", - "properties": { - "status": { - "type": "string", - "example": "ok" - }, - "timestamp": { - "type": "string", - "format": "date-time", - "example": "2023-01-13T01:28:00.280Z" - } - } - } - } - }, "alerting_framework_health": { "type": "object", "description": "Three substates identify the health of the alerting framework: `decryption_health`, `execution_health`, and `read_health`.\n", @@ -3408,21 +3355,6 @@ "status": "ok", "timestamp": "2023-01-13T01:28:00.280Z" } - }, - "alerting_framework_heath": { - "_deprecated": "This state property has a typo, use \"alerting_framework_health\" instead.", - "decryption_health": { - "status": "ok", - "timestamp": "2023-01-13T01:28:00.280Z" - }, - "execution_health": { - "status": "ok", - "timestamp": "2023-01-13T01:28:00.280Z" - }, - "read_health": { - "status": "ok", - "timestamp": "2023-01-13T01:28:00.280Z" - } } } }, @@ -3568,4 +3500,4 @@ "apiKeyAuth": [] } ] -} \ No newline at end of file +} diff --git a/x-pack/plugins/alerting/docs/openapi/bundled.yaml b/x-pack/plugins/alerting/docs/openapi/bundled.yaml index a82f2156f3581..d2b9eafb97e57 100644 --- a/x-pack/plugins/alerting/docs/openapi/bundled.yaml +++ b/x-pack/plugins/alerting/docs/openapi/bundled.yaml @@ -370,44 +370,6 @@ paths: schema: type: object properties: - alerting_framework_heath: - type: object - description: This property has a typo. Use `alerting_framework_health` instead. - deprecated: true - properties: - _deprecated: - type: string - example: This state property has a typo, use "alerting_framework_health" instead. - decryption_health: - type: object - properties: - status: - type: string - example: ok - timestamp: - type: string - format: date-time - example: '2023-01-13T01:28:00.280Z' - execution_health: - type: object - properties: - status: - type: string - example: ok - timestamp: - type: string - format: date-time - example: '2023-01-13T01:28:00.280Z' - read_health: - type: object - properties: - status: - type: string - example: ok - timestamp: - type: string - format: date-time - example: '2023-01-13T01:28:00.280Z' alerting_framework_health: type: object description: | @@ -719,7 +681,7 @@ paths: summary: Mutes an alert. operationId: muteAlert description: | - You must have `all` privileges for the appropriate Kibana features, depending on the `consumer` and `rule_type_id` of the rule. For example, the **Management > Stack Rules** feature, **Analytics > Discover** and **Machine Learning** features, **Observability**, and **Security** features. If the rule has actions, you must also have `read` privileges for the **Management > Actions and Connectors** feature. + You must have `all` privileges for the appropriate Kibana features, depending on the `consumer` and `rule_type_id` of the rule. For example, the **Management > Stack Rules** feature, **Analytics > Discover** and **Machine Learning** features, **Observability**, and **Security** features. If the rule has actions, you must also have `read` privileges for the **Management > Actions and Connectors** feature. tags: - alerting parameters: @@ -745,7 +707,7 @@ paths: summary: Unmutes an alert. operationId: unmuteAlert description: | - You must have `all` privileges for the appropriate Kibana features, depending on the `consumer` and `rule_type_id` of the rule. For example, the **Management > Stack Rules** feature, **Analytics > Discover** and **Machine Learning** features, **Observability**, and **Security** features. If the rule has actions, you must also have `read` privileges for the **Management > Actions and Connectors** feature. + You must have `all` privileges for the appropriate Kibana features, depending on the `consumer` and `rule_type_id` of the rule. For example, the **Management > Stack Rules** feature, **Analytics > Discover** and **Machine Learning** features, **Observability**, and **Security** features. If the rule has actions, you must also have `read` privileges for the **Management > Actions and Connectors** feature. tags: - alerting parameters: @@ -2312,17 +2274,6 @@ components: read_health: status: ok timestamp: '2023-01-13T01:28:00.280Z' - alerting_framework_heath: - _deprecated: This state property has a typo, use "alerting_framework_health" instead. - decryption_health: - status: ok - timestamp: '2023-01-13T01:28:00.280Z' - execution_health: - status: ok - timestamp: '2023-01-13T01:28:00.280Z' - read_health: - status: ok - timestamp: '2023-01-13T01:28:00.280Z' get_rule_types_response: summary: Retrieve rule types associated with Kibana machine learning features value: diff --git a/x-pack/plugins/alerting/docs/openapi/components/examples/get_health_response.yaml b/x-pack/plugins/alerting/docs/openapi/components/examples/get_health_response.yaml index fcd334cc677cf..0c6101a1a70ec 100644 --- a/x-pack/plugins/alerting/docs/openapi/components/examples/get_health_response.yaml +++ b/x-pack/plugins/alerting/docs/openapi/components/examples/get_health_response.yaml @@ -12,14 +12,3 @@ value: read_health: status: ok timestamp: '2023-01-13T01:28:00.280Z' - alerting_framework_heath: - _deprecated: "This state property has a typo, use \"alerting_framework_health\" instead." - decryption_health: - status: ok - timestamp: '2023-01-13T01:28:00.280Z' - execution_health: - status: ok - timestamp: '2023-01-13T01:28:00.280Z' - read_health: - status: ok - timestamp: '2023-01-13T01:28:00.280Z' \ No newline at end of file diff --git a/x-pack/plugins/alerting/docs/openapi/paths/s@{spaceid}@api@alerting@_health.yaml b/x-pack/plugins/alerting/docs/openapi/paths/s@{spaceid}@api@alerting@_health.yaml index 6934bddfa9580..cb2d541f86bed 100644 --- a/x-pack/plugins/alerting/docs/openapi/paths/s@{spaceid}@api@alerting@_health.yaml +++ b/x-pack/plugins/alerting/docs/openapi/paths/s@{spaceid}@api@alerting@_health.yaml @@ -17,44 +17,6 @@ get: schema: type: object properties: - alerting_framework_heath: - type: object - description: This property has a typo. Use `alerting_framework_health` instead. - deprecated: true - properties: - _deprecated: - type: string - example: "This state property has a typo, use \"alerting_framework_health\" instead." - decryption_health: - type: object - properties: - status: - type: string - example: ok - timestamp: - type: string - format: date-time - example: "2023-01-13T01:28:00.280Z" - execution_health: - type: object - properties: - status: - type: string - example: ok - timestamp: - type: string - format: date-time - example: "2023-01-13T01:28:00.280Z" - read_health: - type: object - properties: - status: - type: string - example: ok - timestamp: - type: string - format: date-time - example: "2023-01-13T01:28:00.280Z" alerting_framework_health: type: object description: > @@ -123,4 +85,4 @@ get: schema: $ref: '../components/schemas/401_response.yaml' servers: - - url: https://localhost:5601 \ No newline at end of file + - url: https://localhost:5601 diff --git a/x-pack/plugins/alerting/server/routes/health.test.ts b/x-pack/plugins/alerting/server/routes/health.test.ts index b525122e3d00c..92150cc910c70 100644 --- a/x-pack/plugins/alerting/server/routes/health.test.ts +++ b/x-pack/plugins/alerting/server/routes/health.test.ts @@ -155,22 +155,6 @@ describe('healthRoute', () => { expect(await handler(context, req, res)).toStrictEqual({ body: { - alerting_framework_heath: { - // Legacy: pre-v8.0 typo - _deprecated: 'This state property has a typo, use "alerting_framework_health" instead.', - decryption_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - execution_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - read_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - }, alerting_framework_health: { decryption_health: { status: HealthStatus.OK, @@ -213,22 +197,6 @@ describe('healthRoute', () => { expect(await handler(context, req, res)).toStrictEqual({ body: { - alerting_framework_heath: { - // Legacy: pre-v8.0 typo - _deprecated: 'This state property has a typo, use "alerting_framework_health" instead.', - decryption_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - execution_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - read_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - }, alerting_framework_health: { decryption_health: { status: HealthStatus.OK, @@ -271,22 +239,6 @@ describe('healthRoute', () => { expect(await handler(context, req, res)).toStrictEqual({ body: { - alerting_framework_heath: { - // Legacy: pre-v8.0 typo - _deprecated: 'This state property has a typo, use "alerting_framework_health" instead.', - decryption_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - execution_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - read_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - }, alerting_framework_health: { decryption_health: { status: HealthStatus.OK, @@ -329,22 +281,6 @@ describe('healthRoute', () => { expect(await handler(context, req, res)).toStrictEqual({ body: { - alerting_framework_heath: { - // Legacy: pre-v8.0 typo - _deprecated: 'This state property has a typo, use "alerting_framework_health" instead.', - decryption_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - execution_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - read_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - }, alerting_framework_health: { decryption_health: { status: HealthStatus.OK, @@ -387,22 +323,6 @@ describe('healthRoute', () => { expect(await handler(context, req, res)).toStrictEqual({ body: { - alerting_framework_heath: { - // Legacy: pre-v8.0 typo - _deprecated: 'This state property has a typo, use "alerting_framework_health" instead.', - decryption_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - execution_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - read_health: { - status: HealthStatus.OK, - timestamp: currentDate, - }, - }, alerting_framework_health: { decryption_health: { status: HealthStatus.OK, diff --git a/x-pack/plugins/alerting/server/routes/health.ts b/x-pack/plugins/alerting/server/routes/health.ts index 4d3934911221e..7adceeacd0484 100644 --- a/x-pack/plugins/alerting/server/routes/health.ts +++ b/x-pack/plugins/alerting/server/routes/health.ts @@ -30,13 +30,6 @@ const rewriteBodyRes: RewriteResponseCase = ({ execution_health: alertingFrameworkHealth.executionHealth, read_health: alertingFrameworkHealth.readHealth, }, - alerting_framework_heath: { - // Legacy: pre-v8.0 typo - _deprecated: 'This state property has a typo, use "alerting_framework_health" instead.', - decryption_health: alertingFrameworkHealth.decryptionHealth, - execution_health: alertingFrameworkHealth.executionHealth, - read_health: alertingFrameworkHealth.readHealth, - }, }); export const healthRoute = ( diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/health.ts b/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/health.ts index 240ca53cb091e..a08a7a7c62149 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/health.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/alerting/health.ts @@ -86,10 +86,6 @@ export default function createFindTests({ getService }: FtrProviderContext) { expect(health.alerting_framework_health.decryption_health.status).to.eql('ok'); expect(health.alerting_framework_health.execution_health.status).to.eql('ok'); expect(health.alerting_framework_health.read_health.status).to.eql('ok'); - // Legacy: pre-v8.0 typo - expect(health.alerting_framework_heath.decryption_health.status).to.eql('ok'); - expect(health.alerting_framework_heath.execution_health.status).to.eql('ok'); - expect(health.alerting_framework_heath.read_health.status).to.eql('ok'); } }); @@ -140,11 +136,6 @@ export default function createFindTests({ getService }: FtrProviderContext) { expect(health.alerting_framework_health.execution_health.timestamp).to.eql( ruleInErrorStatus.execution_status.last_execution_date ); - // Legacy: pre-v8.0 typo - expect(health.alerting_framework_heath.execution_health.status).to.eql('warn'); - expect(health.alerting_framework_heath.execution_health.timestamp).to.eql( - ruleInErrorStatus.execution_status.last_execution_date - ); } }); }); From 20532c80517f80ce0c9639d19d283f312f5e74df Mon Sep 17 00:00:00 2001 From: Dima Arnautov Date: Thu, 20 Apr 2023 13:45:46 +0200 Subject: [PATCH 120/144] [ML] AIOps: Add field stats for metric and split fields (#155177) --- .../change_point_detection/fields_config.tsx | 155 ++++++++++++------ .../function_picker.tsx | 1 - .../metric_field_selector.tsx | 52 +++--- .../split_field_selector.tsx | 31 ++-- .../public/hooks/use_aiops_app_context.ts | 21 ++- .../aiops/change_point_detection.tsx | 34 ++-- .../field_stats_flyout_provider.tsx | 13 +- 7 files changed, 196 insertions(+), 111 deletions(-) diff --git a/x-pack/plugins/aiops/public/components/change_point_detection/fields_config.tsx b/x-pack/plugins/aiops/public/components/change_point_detection/fields_config.tsx index 95aa96f393601..94ab6395a4d54 100644 --- a/x-pack/plugins/aiops/public/components/change_point_detection/fields_config.tsx +++ b/x-pack/plugins/aiops/public/components/change_point_detection/fields_config.tsx @@ -5,9 +5,8 @@ * 2.0. */ -import React, { type FC, useCallback } from 'react'; +import React, { type FC, useCallback, useMemo, useState } from 'react'; import { - EuiAccordion, EuiButton, EuiButtonIcon, EuiCallOut, @@ -16,10 +15,13 @@ import { EuiPanel, EuiProgress, EuiSpacer, - useGeneratedHtmlId, } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; import { i18n } from '@kbn/i18n'; +import { type FieldStatsServices } from '@kbn/unified-field-list-plugin/public'; +import { useTimefilter, useTimeRangeUpdates } from '@kbn/ml-date-picker'; +import { useDataSource } from '../../hooks/use_data_source'; +import { useAiopsAppContext } from '../../hooks/use_aiops_app_context'; import { ChangePointsTable } from './change_points_table'; import { MAX_CHANGE_POINT_CONFIGS, SPLIT_FIELD_CARDINALITY_LIMIT } from './constants'; import { FunctionPicker } from './function_picker'; @@ -34,7 +36,7 @@ import { import { useChangePointResults } from './use_change_point_agg_request'; import { useSplitFieldCardinality } from './use_split_field_cardinality'; -const selectControlCss = { width: '300px' }; +const selectControlCss = { width: '350px' }; /** * Contains panels with controls and change point results. @@ -140,50 +142,67 @@ const FieldPanel: FC = ({ const splitFieldCardinality = useSplitFieldCardinality(fieldConfig.splitField, combinedQuery); + const [isExpanded, setIsExpanded] = useState(true); + const { results: annotations, isLoading: annotationsLoading, progress, } = useChangePointResults(fieldConfig, requestParams, combinedQuery, splitFieldCardinality); - const accordionId = useGeneratedHtmlId({ prefix: 'fieldConfig' }); - return ( - - - - } - value={progress ?? 0} - max={100} - valueText - size="m" + + + + + !prevState)} + aria-label={i18n.translate('xpack.aiops.changePointDetection.expandConfigLabel', { + defaultMessage: 'Expand configuration', + })} /> - - - } - extraAction={ + + + + + } + value={progress ?? 0} + max={100} + valueText + size="m" + /> + + + + + + + + - } - paddingSize="s" - > + + + + {isExpanded ? ( = ({ splitFieldCardinality={splitFieldCardinality} onSelectionChange={onSelectionChange} /> - + ) : null} ); }; @@ -205,7 +224,25 @@ interface FieldsControlsProps { * Renders controls for fields selection and emits updates on change. */ export const FieldsControls: FC = ({ fieldConfig, onChange, children }) => { - const { splitFieldsOptions } = useChangePointDetectionContext(); + const { splitFieldsOptions, combinedQuery } = useChangePointDetectionContext(); + const { dataView } = useDataSource(); + const { data, uiSettings, fieldFormats, charts, fieldStats } = useAiopsAppContext(); + const timefilter = useTimefilter(); + // required in order to trigger state updates + useTimeRangeUpdates(); + const timefilterActiveBounds = timefilter.getActiveBounds(); + + const fieldStatsServices: FieldStatsServices = useMemo(() => { + return { + uiSettings, + dataViews: data.dataViews, + data, + fieldFormats, + charts, + }; + }, [uiSettings, data, fieldFormats, charts]); + + const FieldStatsFlyoutProvider = fieldStats!.FieldStatsFlyoutProvider; const onChangeFn = useCallback( (field: keyof FieldConfig, value: string) => { @@ -216,27 +253,41 @@ export const FieldsControls: FC = ({ fieldConfig, onChange, ); return ( - - - onChangeFn('fn', v)} /> - - - onChangeFn('metricField', v)} - /> - - {splitFieldsOptions.length > 0 ? ( - - onChangeFn('splitField', v!)} + + + + onChangeFn('fn', v)} /> + + + onChangeFn('metricField', v)} /> - ) : null} + {splitFieldsOptions.length > 0 ? ( + + onChangeFn('splitField', v!)} + /> + + ) : null} - {children} - + {children} + + ); }; diff --git a/x-pack/plugins/aiops/public/components/change_point_detection/function_picker.tsx b/x-pack/plugins/aiops/public/components/change_point_detection/function_picker.tsx index 2e86961b80432..a24e71ac1cc9b 100644 --- a/x-pack/plugins/aiops/public/components/change_point_detection/function_picker.tsx +++ b/x-pack/plugins/aiops/public/components/change_point_detection/function_picker.tsx @@ -33,7 +33,6 @@ export const FunctionPicker: FC = React.memo(({ value, onCh onChange={(id) => onChange(id)} isFullWidth buttonSize="compressed" - onClick={(e) => e.stopPropagation()} /> ); }); diff --git a/x-pack/plugins/aiops/public/components/change_point_detection/metric_field_selector.tsx b/x-pack/plugins/aiops/public/components/change_point_detection/metric_field_selector.tsx index 266e69b8d6f11..3b0d0017fb499 100644 --- a/x-pack/plugins/aiops/public/components/change_point_detection/metric_field_selector.tsx +++ b/x-pack/plugins/aiops/public/components/change_point_detection/metric_field_selector.tsx @@ -5,10 +5,11 @@ * 2.0. */ -import React, { FC, useCallback, useMemo } from 'react'; +import React, { type FC, useCallback, useMemo } from 'react'; import { i18n } from '@kbn/i18n'; import { EuiComboBox, type EuiComboBoxOptionOption, EuiFormRow } from '@elastic/eui'; import { useChangePointDetectionContext } from './change_point_detection_context'; +import { useAiopsAppContext } from '../../hooks/use_aiops_app_context'; interface MetricFieldSelectorProps { value: string; @@ -17,10 +18,19 @@ interface MetricFieldSelectorProps { export const MetricFieldSelector: FC = React.memo( ({ value, onChange }) => { + const { fieldStats } = useAiopsAppContext(); const { metricFieldOptions } = useChangePointDetectionContext(); + const { renderOption, closeFlyout } = fieldStats!.useFieldStatsTrigger(); + const options = useMemo(() => { - return metricFieldOptions.map((v) => ({ value: v.name, label: v.displayName })); + return metricFieldOptions.map((v) => { + return { + value: v.name, + label: v.displayName, + field: { id: v.name, type: v.type }, + }; + }); }, [metricFieldOptions]); const selection = options.filter((v) => v.value === value); @@ -29,28 +39,32 @@ export const MetricFieldSelector: FC = React.memo( (selectedOptions: EuiComboBoxOptionOption[]) => { const option = selectedOptions[0]; if (typeof option !== 'undefined') { - onChange(option.label); + onChange(option.value as string); } + closeFlyout(); }, - [onChange] + [onChange, closeFlyout] ); return ( - - e.stopPropagation()} - /> - + <> + + + + ); } ); diff --git a/x-pack/plugins/aiops/public/components/change_point_detection/split_field_selector.tsx b/x-pack/plugins/aiops/public/components/change_point_detection/split_field_selector.tsx index cc52a0cc5ee37..6d8540565015d 100644 --- a/x-pack/plugins/aiops/public/components/change_point_detection/split_field_selector.tsx +++ b/x-pack/plugins/aiops/public/components/change_point_detection/split_field_selector.tsx @@ -8,6 +8,7 @@ import React, { FC, useMemo, useCallback } from 'react'; import { i18n } from '@kbn/i18n'; import { EuiComboBox, type EuiComboBoxOptionOption, EuiFormRow } from '@elastic/eui'; +import { useAiopsAppContext } from '../../hooks/use_aiops_app_context'; import { useChangePointDetectionContext } from './change_point_detection_context'; interface SplitFieldSelectorProps { @@ -16,32 +17,37 @@ interface SplitFieldSelectorProps { } export const SplitFieldSelector: FC = React.memo(({ value, onChange }) => { + const { fieldStats } = useAiopsAppContext(); + const { renderOption, closeFlyout } = fieldStats!.useFieldStatsTrigger(); + const { splitFieldsOptions } = useChangePointDetectionContext(); - const options = useMemo>>(() => { + const options = useMemo(() => { return [ { - name: undefined, - displayName: i18n.translate('xpack.aiops.changePointDetection.notSelectedSplitFieldLabel', { + value: undefined, + label: i18n.translate('xpack.aiops.changePointDetection.notSelectedSplitFieldLabel', { defaultMessage: '--- Not selected ---', }), }, - ...splitFieldsOptions, - ].map((v) => ({ - value: v.name, - label: v.displayName, - })); + ...splitFieldsOptions.map((v) => ({ + value: v.name, + label: v.displayName, + ...(v.name ? { field: { id: v.name, type: v?.type } } : {}), + })), + ]; }, [splitFieldsOptions]); const selection = options.filter((v) => v.value === value); const onChangeCallback = useCallback( - (selectedOptions: Array>) => { + (selectedOptions: EuiComboBoxOptionOption[]) => { const option = selectedOptions[0]; - const newValue = option?.value; + const newValue = option?.value as string; onChange(newValue); + closeFlyout(); }, - [onChange] + [onChange, closeFlyout] ); return ( @@ -57,7 +63,8 @@ export const SplitFieldSelector: FC = React.memo(({ val onChange={onChangeCallback} isClearable data-test-subj="aiopsChangePointSplitField" - onClick={(e) => e.stopPropagation()} + // @ts-ignore + renderOption={renderOption} /> ); diff --git a/x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts b/x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts index b9500ecbb6495..ad2ef100924b3 100644 --- a/x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts +++ b/x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts @@ -5,7 +5,7 @@ * 2.0. */ -import { createContext, useContext } from 'react'; +import { createContext, type FC, useContext } from 'react'; import type { IStorageWrapper } from '@kbn/kibana-utils-plugin/public'; import type { DataPublicPluginStart } from '@kbn/data-plugin/public'; @@ -14,14 +14,18 @@ import type { ChartsPluginStart } from '@kbn/charts-plugin/public'; import type { FieldFormatsStart } from '@kbn/field-formats-plugin/public'; import type { SharePluginStart } from '@kbn/share-plugin/public'; import type { - CoreStart, CoreSetup, + CoreStart, ExecutionContextStart, HttpStart, IUiSettingsClient, ThemeServiceStart, } from '@kbn/core/public'; import type { LensPublicStart } from '@kbn/lens-plugin/public'; +import { type EuiComboBoxProps } from '@elastic/eui/src/components/combo_box/combo_box'; +import { type DataView } from '@kbn/data-views-plugin/common'; +import type { FieldStatsProps, FieldStatsServices } from '@kbn/unified-field-list-plugin/public'; +import type { TimeRange as TimeRangeMs } from '@kbn/ml-date-picker'; export interface AiopsAppDependencies { application: CoreStart['application']; @@ -37,6 +41,19 @@ export interface AiopsAppDependencies { unifiedSearch: UnifiedSearchPublicPluginStart; share: SharePluginStart; lens: LensPublicStart; + // deps for unified field stats + fieldStats?: { + useFieldStatsTrigger: () => { + renderOption: EuiComboBoxProps['renderOption']; + closeFlyout: () => void; + }; + FieldStatsFlyoutProvider: FC<{ + dataView: DataView; + fieldStatsServices: FieldStatsServices; + timeRangeMs?: TimeRangeMs; + dslQuery?: FieldStatsProps['dslQuery']; + }>; + }; } export const AiopsAppContext = createContext(undefined); diff --git a/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx b/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx index f98e9a3d3c852..c1102680e5713 100644 --- a/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx +++ b/x-pack/plugins/ml/public/application/aiops/change_point_detection.tsx @@ -13,6 +13,7 @@ import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; import { ChangePointDetection } from '@kbn/aiops-plugin/public'; +import { useFieldStatsTrigger, FieldStatsFlyoutProvider } from '../components/field_stats_flyout'; import { useMlContext } from '../contexts/ml'; import { useMlKibana } from '../contexts/kibana'; import { HelpMenu } from '../components/help_menu'; @@ -46,21 +47,24 @@ export const ChangePointDetectionPage: FC = () => { ) : null} { +}> = ({ dataView, fieldStatsServices, timeRangeMs, dslQuery, children }) => { const [isFieldStatsFlyoutVisible, setFieldStatsIsFlyoutVisible] = useState(false); const [fieldName, setFieldName] = useState(); const [fieldValue, setFieldValue] = useState(); From eb9c868779519bd2b2fb84ed05fddf802f21589a Mon Sep 17 00:00:00 2001 From: Jatin Kathuria Date: Thu, 20 Apr 2023 14:43:17 +0200 Subject: [PATCH 121/144] [Security Solution] Indicator Matches Rendering Performance in Event Rendered View. (#154821) ## Summary Handles : https://github.com/elastic/kibana/issues/150982 When encountered with large number of threat indicator matches, there was a lag in rendering of Event Rendered View because of sheer size of DOM that needed to be rendered. This PR defers the rendering of all indicator matches to a modal which user can open/close on demand. Currently, MAX_RENDERED matches are `2` at a time but it can be changed. This number has been set so as to provide user with optimal performance event when 100 Rows are displayed. Demo below: https://user-images.githubusercontent.com/7485038/231473548-e18b3999-ea13-4a72-a78b-feff8eec99a9.mov ### Checklist Delete any items that are not applicable to this PR. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [x] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [x] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [x] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [x] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) ### Risk Matrix Delete this section if it is not applicable to this PR. Before closing this PR, invite QA, stakeholders, and other developers to identify risks that should be tested prior to the change/feature release. When forming the risk matrix, consider some of the following examples and how they may potentially impact the change: | Risk | Probability | Severity | Mitigation/Notes | |---------------------------|-------------|----------|-------------------------| | Multiple Spaces—unexpected behavior in non-default Kibana Space. | Low | High | Integration tests will verify that all features are still supported in non-default Kibana Space and when user switches between spaces. | | Multiple nodes—Elasticsearch polling might have race conditions when multiple Kibana nodes are polling for the same tasks. | High | Low | Tasks are idempotent, so executing them multiple times will not result in logical error, but will degrade performance. To test for this case we add plenty of unit tests around this logic and document manual testing procedure. | | Code should gracefully handle cases when feature X or plugin Y are disabled. | Medium | High | Unit tests will verify that any feature flag or plugin combination still results in our service operational. | | [See more potential risk examples](https://github.com/elastic/kibana/blob/main/RISK_MATRIX.mdx) | ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../cti/threat_match_row_renderer.test.tsx | 37 ++++- .../cti/threat_match_row_renderer.tsx | 4 +- .../body/renderers/cti/threat_match_rows.tsx | 138 +++++++++++++++--- .../timeline/body/renderers/translations.ts | 20 +++ .../cell_rendering/default_cell_renderer.tsx | 2 + 5 files changed, 177 insertions(+), 24 deletions(-) diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.test.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.test.tsx index 9be0cd66bca7c..1d59656d07563 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.test.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.test.tsx @@ -6,14 +6,18 @@ */ import { TimelineId } from '../../../../../../../common/types'; -import { render } from '@testing-library/react'; +import { render, fireEvent } from '@testing-library/react'; import React from 'react'; +import { get } from 'lodash'; import { getThreatMatchDetectionAlert, TestProviders } from '../../../../../../common/mock'; +import type { Fields } from '../../../../../../../common/search_strategy'; import { threatMatchRowRenderer } from './threat_match_row_renderer'; import { useKibana } from '../../../../../../common/lib/kibana'; import { mockTimelines } from '../../../../../../common/mock/mock_timelines_plugin'; +import { ENRICHMENT_DESTINATION_PATH } from '../../../../../../../common/constants'; +import type { ThreatEnrichmentEcs } from '@kbn/securitysolution-ecs/src/threat'; jest.mock('../../../../../../common/lib/kibana'); describe('threatMatchRowRenderer', () => { @@ -73,5 +77,36 @@ describe('threatMatchRowRenderer', () => { expect(getByTestId('threat-match-details')).toBeInTheDocument(); }); + + it('rendered when indicator matches are more than MAX rendered', async () => { + const NO_OF_MATCHES = 20; + const largeNoOfIndicatorMatches = new Array(NO_OF_MATCHES) + .fill({}) + .map(() => get(threatMatchData, ENRICHMENT_DESTINATION_PATH)[0] as Fields); + + const modThreatMatchData: typeof threatMatchData = { + ...threatMatchData, + threat: { + enrichments: largeNoOfIndicatorMatches as ThreatEnrichmentEcs[], + }, + }; + + const children = threatMatchRowRenderer.renderRow({ + data: modThreatMatchData, + isDraggable: true, + scopeId: TimelineId.test, + }); + const { getByTestId, queryAllByTestId, findAllByTestId, findByTestId } = render( + {children} + ); + expect(getByTestId('threat-match-row-show-all')).toBeVisible(); + expect(queryAllByTestId('threat-match-row').length).toBe(2); + + fireEvent.click(getByTestId('threat-match-row-show-all')); + + expect(await findByTestId('threat-match-row-modal')).toBeVisible(); + + expect((await findAllByTestId('threat-match-row')).length).toBe(NO_OF_MATCHES + 2); + }); }); }); diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.tsx index 9044370711d5a..007f52a5f70d6 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_row_renderer.tsx @@ -8,10 +8,10 @@ import type { RowRenderer } from '../../../../../../../common/types/timeline'; import { RowRendererId } from '../../../../../../../common/types/timeline'; import { hasThreatMatchValue } from './helpers'; -import { ThreatMatchRows } from './threat_match_rows'; +import { renderThreatMatchRows } from './threat_match_rows'; export const threatMatchRowRenderer: RowRenderer = { id: RowRendererId.threat_match, isInstance: hasThreatMatchValue, - renderRow: ThreatMatchRows, + renderRow: renderThreatMatchRows, }; diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_rows.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_rows.tsx index 307d3eaf59286..1f907eac582a3 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_rows.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/cti/threat_match_rows.tsx @@ -5,44 +5,140 @@ * 2.0. */ -import { EuiHorizontalRule } from '@elastic/eui'; +import { + EuiButton, + EuiButtonEmpty, + EuiFlexGroup, + EuiFlexItem, + EuiHorizontalRule, + EuiModal, + EuiModalBody, + EuiModalFooter, + EuiModalHeader, + EuiModalHeaderTitle, +} from '@elastic/eui'; import { get } from 'lodash'; -import React, { Fragment } from 'react'; +import type { FC, ReactElement } from 'react'; +import React, { Fragment, useState, useCallback } from 'react'; import styled from 'styled-components'; +import type { EcsSecurityExtension } from '@kbn/securitysolution-ecs'; import { ENRICHMENT_DESTINATION_PATH } from '../../../../../../../common/constants'; import type { RowRenderer } from '../../../../../../../common/types'; import type { Fields } from '../../../../../../../common/search_strategy'; import { ID_FIELD_NAME } from '../../../../../../common/components/event_details/event_id'; import { RowRendererContainer } from '../row_renderer'; import { ThreatMatchRow } from './threat_match_row'; +import { + ALL_INDICATOR_MATCHES_MODAL_CLOSE, + ALL_INDICATOR_MATCHES_MODAL_HEADER, + SHOW_ALL_INDICATOR_MATCHES, +} from '../translations'; const SpacedContainer = styled.div` margin: ${({ theme }) => theme.eui.euiSizeS} 0; `; -export const ThreatMatchRows: RowRenderer['renderRow'] = ({ data, isDraggable, scopeId }) => { +export const renderThreatMatchRows: RowRenderer['renderRow'] = ({ data, isDraggable, scopeId }) => { + return ; +}; + +interface ThreatMatchRowProps { + data: EcsSecurityExtension; + isDraggable: boolean; + scopeId: string; +} + +const MAX_INDICATOR_VISIBLE = 2; + +const ThreatMatchRowWrapper: FC = ({ data, isDraggable, scopeId }) => { const indicators = get(data, ENRICHMENT_DESTINATION_PATH) as Fields[]; const eventId = get(data, ID_FIELD_NAME); + const getThreatMatchRows = useCallback( + (mode: 'max' | 'all' = 'max') => { + const allIndicators = + mode === 'max' ? indicators.slice(0, MAX_INDICATOR_VISIBLE) : indicators; + + return ( + + + {allIndicators.map((indicator, index) => { + const contextId = `threat-match-row-${scopeId}-${eventId}-${index}`; + return ( + + + {index < indicators.length - 1 && } + + ); + })} + + + ); + }, + [indicators, eventId, isDraggable, scopeId] + ); + + const renderModalChildren = useCallback(() => getThreatMatchRows('all'), [getThreatMatchRows]); + + return ( + + {getThreatMatchRows()} + {indicators.length > MAX_INDICATOR_VISIBLE && ( + + + + )} + + ); +}; + +interface ThreatMatchRowModalProps { + title: string; + renderChildren: () => ReactElement; +} + +const ThreatMatchRowModal: FC = ({ title, renderChildren }) => { + const [isModalVisible, setShowModal] = useState(false); + const closeModal = () => setShowModal(false); + const showModal = () => setShowModal(true); + let modal; + + if (isModalVisible) { + modal = ( + + + {ALL_INDICATOR_MATCHES_MODAL_HEADER} + + {renderChildren()} + + + {ALL_INDICATOR_MATCHES_MODAL_CLOSE} + + + + ); + } + return ( - - - {indicators.map((indicator, index) => { - const contextId = `threat-match-row-${scopeId}-${eventId}-${index}`; - return ( - - - {index < indicators.length - 1 && } - - ); - })} - - +
    + + {title} + + {modal} +
    ); }; diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/translations.ts b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/translations.ts index e58a4ceefd46c..d5b231a33d27a 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/translations.ts +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/body/renderers/translations.ts @@ -40,3 +40,23 @@ export const LINK_ELASTIC_ENDPOINT_SECURITY = i18n.translate( defaultMessage: 'Open in Endpoint Security', } ); + +export const SHOW_ALL_INDICATOR_MATCHES = (count: number) => + i18n.translate('xpack.securitySolution.event.summary.threat_indicator.showMatches', { + values: { count }, + defaultMessage: 'Show all {count} indicator match alerts', + }); + +export const ALL_INDICATOR_MATCHES_MODAL_HEADER = i18n.translate( + 'xpack.securitySolution.event.summary.threat_indicator.modal.allMatches', + { + defaultMessage: 'All Indicator Matches', + } +); + +export const ALL_INDICATOR_MATCHES_MODAL_CLOSE = i18n.translate( + 'xpack.securitySolution.event.summary.threat_indicator.modal.close', + { + defaultMessage: 'Close', + } +); diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/cell_rendering/default_cell_renderer.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/cell_rendering/default_cell_renderer.tsx index 8056a07fb39de..551003923a151 100644 --- a/x-pack/plugins/security_solution/public/timelines/components/timeline/cell_rendering/default_cell_renderer.tsx +++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/cell_rendering/default_cell_renderer.tsx @@ -16,6 +16,8 @@ import { getLinkColumnDefinition } from '../../../../common/lib/cell_actions/hel const StyledContent = styled.div<{ $isDetails: boolean }>` padding: ${({ $isDetails }) => ($isDetails ? '0 8px' : undefined)}; + width: 100%; + margin: 0 auto; `; export const DefaultCellRenderer: React.FC = ({ From 4b6dbdcd2c9170299b1ad8c1132ad0b947244815 Mon Sep 17 00:00:00 2001 From: Achyut Jhunjhunwala Date: Thu, 20 Apr 2023 14:50:58 +0200 Subject: [PATCH 122/144] Replace lens embeddable for most used charts (#155026) ## Summary This PR closes https://github.com/elastic/kibana/issues/152139 This change brings a big performance improvement in Loading of the Charts ### Checklist - [x] Add new endpoint to retrieve filtered data based on URL params - [x] Replace Embeddables with Elastic Charts - [x] Delete existing code for Embeddables - [x] Handle Loaders - [x] Add similar No results found visualisations - [x] Add Cy Tests - [x] Add API Tests ## Demo https://user-images.githubusercontent.com/7416358/232797685-1b009d5d-cd4a-4041-aa33-872647491ced.mov --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- x-pack/plugins/apm/common/mobile_types.ts | 20 + .../service_overview/generate_mobile.data.ts | 392 ++++++++++++++++++ ...obile_overview_with_most_used_charts.cy.ts | 91 ++++ .../service_and_mobile_overview.cy.ts | 9 - .../app/mobile/service_overview/index.tsx | 86 +--- .../most_used_chart.test.tsx.snap | 105 ----- .../most_used_chart/get_lens_attributes.ts | 117 ------ .../most_used_chart/index.tsx | 123 ------ .../most_used_chart/most_used_chart.test.tsx | 102 ----- .../most_used_charts/index.tsx | 122 ++++++ .../most_used_charts/sunburst_chart.tsx | 166 ++++++++ ...e_preferred_data_source_and_bucket_size.ts | 2 +- .../get_device_os_app_charts.ts | 121 ++++++ .../get_nct_chart.ts | 90 ++++ .../merge_other_count.ts | 24 ++ .../plugins/apm/server/routes/mobile/route.ts | 64 +++ x-pack/plugins/apm/tsconfig.json | 1 + .../translations/translations/fr-FR.json | 7 - .../translations/translations/ja-JP.json | 7 - .../translations/translations/zh-CN.json | 7 - .../tests/mobile/generate_mobile_data.ts | 174 ++++++++ .../mobile_http_requests_timeseries.spec.ts | 4 +- .../mobile/mobile_location_stats.spec.ts | 4 +- .../mobile/mobile_most_used_chart.spec.ts | 104 +++++ .../mobile/mobile_sessions_timeseries.spec.ts | 6 +- .../tests/mobile/mobile_stats.spec.ts | 2 +- .../mobile/mobile_terms_by_field.spec.ts | 22 +- 27 files changed, 1398 insertions(+), 574 deletions(-) create mode 100644 x-pack/plugins/apm/common/mobile_types.ts create mode 100644 x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/generate_mobile.data.ts create mode 100644 x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/mobile_overview_with_most_used_charts.cy.ts delete mode 100644 x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/__snapshots__/most_used_chart.test.tsx.snap delete mode 100644 x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/get_lens_attributes.ts delete mode 100644 x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/index.tsx delete mode 100644 x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/most_used_chart.test.tsx create mode 100644 x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/index.tsx create mode 100644 x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/sunburst_chart.tsx create mode 100644 x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_device_os_app_charts.ts create mode 100644 x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_nct_chart.ts create mode 100644 x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/merge_other_count.ts create mode 100644 x-pack/test/apm_api_integration/tests/mobile/mobile_most_used_chart.spec.ts diff --git a/x-pack/plugins/apm/common/mobile_types.ts b/x-pack/plugins/apm/common/mobile_types.ts new file mode 100644 index 0000000000000..a450909c51d2f --- /dev/null +++ b/x-pack/plugins/apm/common/mobile_types.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. + */ + +export enum MobilePropertyType { + Device = 'device', + NetworkConnectionType = 'netConnectionType', + OsVersion = 'osVersion', + AppVersion = 'appVersion', +} + +export type MobilePropertyNctType = MobilePropertyType.NetworkConnectionType; + +export type MobilePropertyDeviceOsAppVersionType = + | MobilePropertyType.Device + | MobilePropertyType.OsVersion + | MobilePropertyType.AppVersion; diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/generate_mobile.data.ts b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/generate_mobile.data.ts new file mode 100644 index 0000000000000..bf25bf83d8aaa --- /dev/null +++ b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/generate_mobile.data.ts @@ -0,0 +1,392 @@ +/* + * 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 { apm, timerange } from '@kbn/apm-synthtrace-client'; + +export function generateMobileData({ from, to }: { from: number; to: number }) { + const range = timerange(from, to); + + const galaxy10 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Samsung', + modelIdentifier: 'SM-G973F', + modelName: 'Galaxy S10', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + + const galaxy7 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '1.2' }) + .deviceInfo({ + manufacturer: 'Samsung', + modelIdentifier: 'SM-G930F', + modelName: 'Galaxy S7', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ + type: 'cell', + subType: 'edge', + carrierName: 'M1 Limited', + carrierMNC: '03', + carrierICC: 'SG', + carrierMCC: '525', + }); + + const huaweiP2 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '1.1' }) + .deviceInfo({ + manufacturer: 'Huawei', + modelIdentifier: 'HUAWEI P2-0000', + modelName: 'HuaweiP2', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '20.24.184.101', + cityName: 'Singapore', + continentName: 'Asia', + countryIsoCode: 'SG', + countryName: 'Singapore', + location: { coordinates: [103.8554, 1.3036], type: 'Point' }, + }) + .setNetworkConnection({ + type: 'cell', + subType: 'edge', + carrierName: 'Osaka Gas Business Create Co., Ltd.', + carrierMNC: '17', + carrierICC: 'JP', + carrierMCC: '440', + }); + + const pixel7 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Google', + modelIdentifier: 'Pixel 7', + modelName: 'Pixel 7', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + + const pixel7Pro = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Google', + modelIdentifier: 'Pixel 7 Pro', + modelName: 'Pixel 7 Pro', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + + const pixel8 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Google', + modelIdentifier: 'Pixel 8', + modelName: 'Pixel 8', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + + return range.interval('1m').generator((timestamp) => { + galaxy10.startNewSession(); + galaxy7.startNewSession(); + huaweiP2.startNewSession(); + pixel7.startNewSession(); + pixel7Pro.startNewSession(); + pixel8.startNewSession(); + return [ + galaxy10 + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(500) + .success() + .children( + galaxy10 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + galaxy10 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + galaxy10 + .transaction('Second View - View Appearing', 'Android Activity') + .timestamp(10000 + timestamp) + .duration(300) + .failure() + .children( + galaxy10 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/second', + }) + .duration(400) + .success() + .timestamp(10000 + timestamp + 250) + ), + huaweiP2 + .transaction('Start View - View Appearing', 'huaweiP2 Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + huaweiP2 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + huaweiP2 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + galaxy7 + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + galaxy7 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + galaxy7 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + pixel7 + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + pixel7 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + pixel7 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + pixel8 + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + pixel8 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + pixel8 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + pixel7Pro + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + pixel7Pro + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + pixel7Pro + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + ]; + }); +} diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/mobile_overview_with_most_used_charts.cy.ts b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/mobile_overview_with_most_used_charts.cy.ts new file mode 100644 index 0000000000000..6a05a9f0fcb1f --- /dev/null +++ b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/mobile_overview_with_most_used_charts.cy.ts @@ -0,0 +1,91 @@ +/* + * 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 url from 'url'; +import moment from 'moment/moment'; +import { synthtrace } from '../../../../synthtrace'; +import { generateMobileData } from './generate_mobile.data'; + +const start = Date.now() - 1000; +const end = Date.now(); + +const rangeFrom = new Date(start).toISOString(); +const rangeTo = new Date(end).toISOString(); + +const apiRequestsToIntercept = [ + { + endpoint: '/internal/apm/mobile-services/synth-android/most_used_charts?*', + aliasName: 'mostUsedChartRequest', + }, +]; + +const aliasNames = apiRequestsToIntercept.map( + ({ aliasName }) => `@${aliasName}` +); + +const apmMobileServiceOverview = url.format({ + pathname: 'app/apm/mobile-services/synth-android', + query: { + rangeFrom, + rangeTo, + }, +}); +describe('Mobile Service overview page', () => { + before(() => { + synthtrace.index( + generateMobileData({ + from: new Date(start).getTime(), + to: new Date(end).getTime(), + }) + ); + }); + + after(() => { + synthtrace.clean(); + }); + + describe('Mobile service overview with charts', () => { + beforeEach(() => { + cy.loginAsEditorUser(); + cy.visitKibana(apmMobileServiceOverview); + apiRequestsToIntercept.map(({ endpoint, aliasName }) => { + cy.intercept('GET', endpoint).as(aliasName); + }); + }); + + describe('accessing android service page', () => { + it('shows the most used charts', () => { + cy.wait(aliasNames); + + cy.getByTestSubj('mostUsedChart-device').should('exist'); + cy.getByTestSubj('mostUsedChart-netConnectionType').should('exist'); + cy.getByTestSubj('mostUsedChart-osVersion').should('exist'); + cy.getByTestSubj('mostUsedChart-appVersion').should('exist'); + }); + + it('shows No results found, when no data is present', () => { + cy.wait(aliasNames); + + const timeStart = moment(start).subtract(5, 'm').toISOString(); + const timeEnd = moment(end).subtract(5, 'm').toISOString(); + + cy.selectAbsoluteTimeRange(timeStart, timeEnd); + + cy.contains('Update').click(); + + cy.wait(aliasNames); + + cy.expectAPIsToHaveBeenCalledWith({ + apisIntercepted: aliasNames, + value: `start=${encodeURIComponent( + new Date(timeStart).toISOString() + )}&end=${encodeURIComponent(new Date(timeEnd).toISOString())}`, + }); + cy.getByTestSubj('mostUsedNoResultsFound').should('exist'); + }); + }); + }); +}); diff --git a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/service_and_mobile_overview.cy.ts b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/service_and_mobile_overview.cy.ts index ccede29d7e3e9..fec0dbbe36686 100644 --- a/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/service_and_mobile_overview.cy.ts +++ b/x-pack/plugins/apm/ftr_e2e/cypress/e2e/power_user/service_overview/service_and_mobile_overview.cy.ts @@ -82,9 +82,6 @@ describe('Service overview page', () => { cy.visitKibana(apmServiceOverview); cy.location().should((loc) => { expect(loc.pathname).to.eq('/app/apm/services/synth-go-1/overview'); - expect(loc.search).to.eq( - `?comparisonEnabled=true&environment=ENVIRONMENT_ALL&kuery=&latencyAggregationType=avg&rangeFrom=${rangeFrom}&rangeTo=${rangeTo}&serviceGroup=&offset=1d&transactionType=request` - ); }); }); }); @@ -105,9 +102,6 @@ describe('Service overview page', () => { expect(loc.pathname).to.eq( '/app/apm/mobile-services/synth-ios/overview' ); - expect(loc.search).to.eq( - `?comparisonEnabled=true&environment=ENVIRONMENT_ALL&kuery=&latencyAggregationType=avg&rangeFrom=${rangeFrom}&rangeTo=${rangeTo}&serviceGroup=&offset=1d&transactionType=request` - ); }); }); }); @@ -128,9 +122,6 @@ describe('Service overview page', () => { expect(loc.pathname).to.eq( '/app/apm/mobile-services/synth-android/overview' ); - expect(loc.search).to.eq( - `?comparisonEnabled=true&environment=ENVIRONMENT_ALL&kuery=&latencyAggregationType=avg&rangeFrom=${rangeFrom}&rangeTo=${rangeTo}&serviceGroup=&offset=1d&transactionType=request` - ); }); }); }); diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/index.tsx b/x-pack/plugins/apm/public/components/app/mobile/service_overview/index.tsx index 9ddfb179f52ae..df322ea7fe372 100644 --- a/x-pack/plugins/apm/public/components/app/mobile/service_overview/index.tsx +++ b/x-pack/plugins/apm/public/components/app/mobile/service_overview/index.tsx @@ -28,13 +28,7 @@ import { useTimeRange } from '../../../../hooks/use_time_range'; import { useApmRouter } from '../../../../hooks/use_apm_router'; import { ServiceOverviewThroughputChart } from '../../service_overview/service_overview_throughput_chart'; import { TransactionsTable } from '../../../shared/transactions_table'; -import { - DEVICE_MODEL_IDENTIFIER, - HOST_OS_VERSION, - NETWORK_CONNECTION_TYPE, - SERVICE_VERSION, -} from '../../../../../common/es_fields/apm'; -import { MostUsedChart } from './most_used_chart'; +import { MostUsedCharts } from './most_used_charts'; import { GeoMap } from './geo_map'; import { FailedTransactionRateChart } from '../../../shared/charts/failed_transaction_rate_chart'; import { ServiceOverviewDependenciesTable } from '../../service_overview/service_overview_dependencies_table'; @@ -66,6 +60,7 @@ export function MobileServiceOverview() { netConnectionType, offset, comparisonEnabled, + transactionType, }, } = useApmParams('/mobile-services/{serviceName}/overview'); @@ -198,73 +193,16 @@ export function MobileServiceOverview() { - - {/* Device */} - - - - {/* NCT */} - - - - - {/* OS version */} - - - - {/* App version */} - - - - + + + diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/__snapshots__/most_used_chart.test.tsx.snap b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/__snapshots__/most_used_chart.test.tsx.snap deleted file mode 100644 index bc2ecef25d310..0000000000000 --- a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/__snapshots__/most_used_chart.test.tsx.snap +++ /dev/null @@ -1,105 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Most used chart with Lens gets lens attributes 1`] = ` -Object { - "references": Array [ - Object { - "id": "apm_static_index_pattern_id", - "name": "indexpattern-datasource-layer-host-os-version", - "type": "index-pattern", - }, - ], - "state": Object { - "datasourceStates": Object { - "formBased": Object { - "layers": Object { - "host-os-version": Object { - "columnOrder": Array [ - "termsColumn", - "countColumn", - ], - "columns": Object { - "countColumn": Object { - "dataType": "number", - "isBucketed": false, - "label": "Count of records", - "operationType": "count", - "scale": "ratio", - "sourceField": "___records___", - }, - "termsColumn": Object { - "dataType": "string", - "isBucketed": true, - "label": "Top 5 values of host.os.version", - "operationType": "terms", - "params": Object { - "orderBy": Object { - "columnId": "countColumn", - "type": "column", - }, - "orderDirection": "desc", - "size": 5, - }, - "scale": "ordinal", - "sourceField": "host.os.version", - }, - }, - }, - }, - }, - }, - "filters": Array [ - Object { - "meta": Object {}, - "query": Object { - "term": Object { - "processor.event": "transaction", - }, - }, - }, - Object { - "meta": Object {}, - "query": Object { - "term": Object { - "service.name": "opbeans-swift", - }, - }, - }, - Object { - "meta": Object {}, - "query": Object { - "term": Object { - "transaction.type": "request", - }, - }, - }, - ], - "query": Object { - "language": "kuery", - "query": "", - }, - "visualization": Object { - "layers": Array [ - Object { - "categoryDisplay": "default", - "layerId": "host-os-version", - "layerType": "data", - "legendDisplay": "hide", - "legendPosition": "bottom", - "metrics": Array [ - "countColumn", - ], - "nestedLegend": false, - "numberDisplay": "percent", - "primaryGroups": Array [ - "termsColumn", - ], - }, - ], - "shape": "donut", - }, - }, - "title": "most-used-host-os-version", - "visualizationType": "lnsPie", -} -`; diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/get_lens_attributes.ts b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/get_lens_attributes.ts deleted file mode 100644 index c311fa561f81c..0000000000000 --- a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/get_lens_attributes.ts +++ /dev/null @@ -1,117 +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 { i18n } from '@kbn/i18n'; -import { - CountIndexPatternColumn, - TermsIndexPatternColumn, - PersistedIndexPatternLayer, - PieVisualizationState, - TypedLensByValueInput, -} from '@kbn/lens-plugin/public'; -import type { Filter } from '@kbn/es-query'; -import { APM_STATIC_DATA_VIEW_ID } from '../../../../../../common/data_view_constants'; -import { MostUsedMetricTypes } from '.'; - -const BUCKET_SIZE = 5; - -export function getLensAttributes({ - metric, - filters, - kuery = '', -}: { - metric: MostUsedMetricTypes; - filters: Filter[]; - kuery?: string; -}): TypedLensByValueInput['attributes'] { - const metricId = metric.replaceAll('.', '-'); - - const columnA = 'termsColumn'; - const columnB = 'countColumn'; - - const dataLayer: PersistedIndexPatternLayer = { - columnOrder: [columnA, columnB], - columns: { - [columnA]: { - label: i18n.translate( - 'xpack.apm.serviceOverview.lensFlyout.topValues', - { - defaultMessage: 'Top {BUCKET_SIZE} values of {metric}', - values: { - BUCKET_SIZE, - metric, - }, - } - ), - dataType: 'string', - operationType: 'terms', - scale: 'ordinal', - sourceField: metric, - isBucketed: true, - params: { - size: BUCKET_SIZE, - orderBy: { - type: 'column', - columnId: columnB, - }, - orderDirection: 'desc', - }, - } as TermsIndexPatternColumn, - [columnB]: { - label: i18n.translate( - 'xpack.apm.serviceOverview.lensFlyout.countRecords', - { - defaultMessage: 'Count of records', - } - ), - dataType: 'number', - operationType: 'count', - scale: 'ratio', - isBucketed: false, - sourceField: '___records___', - } as CountIndexPatternColumn, - }, - }; - - return { - title: `most-used-${metricId}`, - visualizationType: 'lnsPie', - references: [ - { - type: 'index-pattern', - id: APM_STATIC_DATA_VIEW_ID, - name: `indexpattern-datasource-layer-${metricId}`, - }, - ], - state: { - visualization: { - shape: 'donut', - layers: [ - { - layerId: metricId, - primaryGroups: [columnA], - metrics: [columnB], - categoryDisplay: 'default', - legendDisplay: 'hide', - nestedLegend: false, - numberDisplay: 'percent', - layerType: 'data', - legendPosition: 'bottom', - }, - ], - } as PieVisualizationState, - datasourceStates: { - formBased: { - layers: { - [metricId]: dataLayer, - }, - }, - }, - filters, - query: { language: 'kuery', query: kuery }, - }, - }; -} diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/index.tsx b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/index.tsx deleted file mode 100644 index 53f9d41cd15b1..0000000000000 --- a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/index.tsx +++ /dev/null @@ -1,123 +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 { EuiTitle, EuiFlexItem, EuiPanel, EuiSpacer } from '@elastic/eui'; -import React, { useMemo, useCallback } from 'react'; -import type { Filter } from '@kbn/es-query'; -import { i18n } from '@kbn/i18n'; -import { ViewMode } from '@kbn/embeddable-plugin/public'; -import { useKibana } from '@kbn/kibana-react-plugin/public'; -import { ApmPluginStartDeps } from '../../../../../plugin'; -import { getLensAttributes } from './get_lens_attributes'; -import { - DEVICE_MODEL_IDENTIFIER, - HOST_OS_VERSION, - NETWORK_CONNECTION_TYPE, - SERVICE_VERSION, -} from '../../../../../../common/es_fields/apm'; - -export type MostUsedMetricTypes = - | typeof DEVICE_MODEL_IDENTIFIER - | typeof SERVICE_VERSION - | typeof HOST_OS_VERSION - | typeof NETWORK_CONNECTION_TYPE; - -export function MostUsedChart({ - title, - start, - end, - kuery, - filters, - metric, -}: { - title: React.ReactNode; - start: string; - end: string; - kuery?: string; - filters: Filter[]; - metric: MostUsedMetricTypes; -}) { - const { services } = useKibana(); - const { - lens: { EmbeddableComponent, navigateToPrefilledEditor, canUseEditor }, - } = services; - - const lensAttributes = useMemo( - () => - getLensAttributes({ - kuery, - filters, - metric, - }), - [kuery, filters, metric] - ); - - const openInLens = useCallback(() => { - if (lensAttributes) { - navigateToPrefilledEditor( - { - id: `dataVisualizer-${metric}`, - timeRange: { - from: start, - to: end, - }, - attributes: lensAttributes, - }, - { - openInNewTab: true, - } - ); - } - }, [navigateToPrefilledEditor, lensAttributes, start, end, metric]); - - const getOpenInLensAction = () => { - return { - id: 'openInLens', - type: 'link', - getDisplayName() { - return i18n.translate('xpack.apm.serviceOverview.openInLens', { - defaultMessage: 'Open in Lens', - }); - }, - getIconType() { - return 'visArea'; - }, - async isCompatible() { - return true; - }, - async execute() { - openInLens(); - return; - }, - }; - }; - - return ( - - - -

    {title}

    -
    - -
    - - - -
    - ); -} diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/most_used_chart.test.tsx b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/most_used_chart.test.tsx deleted file mode 100644 index 49e0cefc6ddf9..0000000000000 --- a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_chart/most_used_chart.test.tsx +++ /dev/null @@ -1,102 +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 { render } from '@testing-library/react'; -import { MemoryRouter } from 'react-router-dom'; -import { CoreStart } from '@kbn/core/public'; -import React, { ReactNode } from 'react'; -import { createKibanaReactContext } from '@kbn/kibana-react-plugin/public'; -import { MockApmPluginContextWrapper } from '../../../../../context/apm_plugin/mock_apm_plugin_context'; -import { getLensAttributes } from './get_lens_attributes'; -import { MostUsedChart, MostUsedMetricTypes } from '.'; -import { HOST_OS_VERSION } from '../../../../../../common/es_fields/apm'; - -const mockEmbeddableComponent = jest.fn(); - -function Wrapper({ children }: { children?: ReactNode }) { - const KibanaReactContext = createKibanaReactContext({ - lens: { - EmbeddableComponent: mockEmbeddableComponent.mockReturnValue( -
    - ), - canUseEditor: jest.fn(() => true), - navigateToPrefilledEditor: jest.fn(), - }, - } as Partial); - - return ( - - - {children} - - - ); -} - -const renderOptions = { wrapper: Wrapper }; - -describe('Most used chart with Lens', () => { - const props = { - metric: HOST_OS_VERSION as MostUsedMetricTypes, - filters: [ - { - meta: {}, - query: { - term: { - 'processor.event': 'transaction', - }, - }, - }, - { - meta: {}, - query: { - term: { - 'service.name': 'opbeans-swift', - }, - }, - }, - { - meta: {}, - query: { - term: { - 'transaction.type': 'request', - }, - }, - }, - ], - }; - test('gets lens attributes', () => { - expect(getLensAttributes(props)).toMatchSnapshot(); - }); - - test('Renders most used chart with Lens', () => { - const start = '2022-10-30T20%3A52%3A47.080Z'; - const end = '2022-10-31T20%3A52%3A47.080Z'; - - render( - , - renderOptions - ); - - expect(mockEmbeddableComponent).toHaveBeenCalledTimes(1); - expect(mockEmbeddableComponent.mock.calls[0][0]).toEqual( - expect.objectContaining({ - timeRange: { - from: start, - to: end, - }, - attributes: getLensAttributes(props), - }) - ); - }); -}); diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/index.tsx b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/index.tsx new file mode 100644 index 0000000000000..3e428266bee95 --- /dev/null +++ b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/index.tsx @@ -0,0 +1,122 @@ +/* + * 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, { useRef } from 'react'; +import { i18n } from '@kbn/i18n'; +import { + EuiFlexGroup, + EuiFlexGroupProps, + useResizeObserver, +} from '@elastic/eui'; +import { SunburstChart } from './sunburst_chart'; +import { useBreakpoints } from '../../../../../hooks/use_breakpoints'; +import { APIReturnType } from '../../../../../services/rest/create_call_apm_api'; +import { useFetcher } from '../../../../../hooks/use_fetcher'; +import { MobilePropertyType } from '../../../../../../common/mobile_types'; + +type MostUsedCharts = + APIReturnType<'GET /internal/apm/mobile-services/{serviceName}/most_used_charts'>['mostUsedCharts'][0]; + +const MOST_USED_CHARTS: Array<{ key: MostUsedCharts['key']; label: string }> = [ + { + key: MobilePropertyType.Device, + label: i18n.translate('xpack.apm.mobile.charts.device', { + defaultMessage: 'Devices', + }), + }, + { + key: MobilePropertyType.NetworkConnectionType, + label: i18n.translate('xpack.apm.mobile.charts.nct', { + defaultMessage: 'Network Connection Type', + }), + }, + { + key: MobilePropertyType.OsVersion, + label: i18n.translate('xpack.apm.mobile.charts.osVersion', { + defaultMessage: 'OS version', + }), + }, + { + key: MobilePropertyType.AppVersion, + label: i18n.translate('xpack.apm.mobile.charts.appVersion', { + defaultMessage: 'App version', + }), + }, +]; +export function MostUsedCharts({ + start, + end, + kuery, + environment, + transactionType, + serviceName, +}: { + start: string; + end: string; + kuery: string; + environment: string; + transactionType?: string; + serviceName: string; +}) { + const { isLarge } = useBreakpoints(); + const resizeRef = useRef(null); + const dimensions = useResizeObserver(resizeRef.current); + const groupDirection: EuiFlexGroupProps['direction'] = isLarge + ? 'column' + : 'row'; + const { data = { mostUsedCharts: [] }, status } = useFetcher( + (callApmApi) => { + return callApmApi( + 'GET /internal/apm/mobile-services/{serviceName}/most_used_charts', + { + params: { + path: { serviceName }, + query: { + start, + end, + environment, + kuery, + transactionType, + }, + }, + } + ); + }, + [start, end, environment, kuery, serviceName, transactionType] + ); + + const chartWidth = isLarge + ? dimensions.width + : dimensions.width / MOST_USED_CHARTS.length; + + return ( +
    + + {MOST_USED_CHARTS.map(({ key, label }) => { + const chartData = + data?.mostUsedCharts.find((chart) => chart.key === key)?.options || + []; + return ( +
    + +
    + ); + })} +
    +
    + ); +} diff --git a/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/sunburst_chart.tsx b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/sunburst_chart.tsx new file mode 100644 index 0000000000000..166c0985130f5 --- /dev/null +++ b/x-pack/plugins/apm/public/components/app/mobile/service_overview/most_used_charts/sunburst_chart.tsx @@ -0,0 +1,166 @@ +/* + * 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 { + Chart, + Partition, + PartitionLayout, + Datum, + PartialTheme, + Settings, +} from '@elastic/charts'; + +import { + EuiFlexItem, + euiPaletteColorBlindBehindText, + EuiTitle, + EuiIcon, + EuiText, + EuiSpacer, + EuiProgress, + useEuiFontSize, +} from '@elastic/eui'; +import { IconChartDonut } from '@kbn/chart-icons'; +import { i18n } from '@kbn/i18n'; +import { css } from '@emotion/react'; +import { ChartContainer } from '../../../../shared/charts/chart_container'; +import { FETCH_STATUS } from '../../../../../hooks/use_fetcher'; + +const theme: PartialTheme = { + chartMargins: { top: 0, left: 0, bottom: 0, right: 0 }, + partition: { + minFontSize: 5, + idealFontSizeJump: 1.1, + outerSizeRatio: 1, + emptySizeRatio: 0.3, + circlePadding: 3, + }, +}; + +export function SunburstChart({ + data, + label, + chartKey, + fetchStatus, + chartWidth, +}: { + data?: Array<{ key: string | number; docCount: number }>; + label?: string; + chartKey: string; + fetchStatus: FETCH_STATUS; + chartWidth: number; +}) { + const colors = euiPaletteColorBlindBehindText({ sortBy: 'natural' }); + const isDataAvailable = data && data.length > 0; + const isLoading = fetchStatus === FETCH_STATUS.LOADING; + + // The loader needs to be wrapped inside a div with fixed height to avoid layout shift + const ProgressLoader = ( +
    + {isLoading && ( + + )} +
    + ); + + return ( + + +

    + {label} +

    +
    + {ProgressLoader} + + + {isDataAvailable ? ( + + + Number(d.docCount)} + valueGetter="percent" + layers={[ + { + groupByRollup: (d: Datum) => d.key, + nodeLabel: (d: Datum) => d, + fillLabel: { + fontWeight: 100, + maximizeFontSize: true, + valueFont: { + fontWeight: 900, + }, + }, + shape: { + fillColor: (_, sortIndex) => { + return colors[sortIndex]; + }, + }, + }, + ]} + /> + + ) : ( + + )} + +
    + ); +} + +const noResultsFoundStyle = css({ + height: '100%', + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + justifyContent: 'center', +}); +export function NoResultsFound() { + const noResultsFoundText = i18n.translate( + 'xpack.apm.mobile.charts.noResultsFound', + { + defaultMessage: 'No results found', + } + ); + return ( +
    + + + +

    {noResultsFoundText}

    +
    +
    + ); +} diff --git a/x-pack/plugins/apm/public/hooks/use_preferred_data_source_and_bucket_size.ts b/x-pack/plugins/apm/public/hooks/use_preferred_data_source_and_bucket_size.ts index 89ca576190d18..bd757ea870f2b 100644 --- a/x-pack/plugins/apm/public/hooks/use_preferred_data_source_and_bucket_size.ts +++ b/x-pack/plugins/apm/public/hooks/use_preferred_data_source_and_bucket_size.ts @@ -35,7 +35,7 @@ export function usePreferredDataSourceAndBucketSize< ? | ApmDocumentType.ServiceTransactionMetric | ApmDocumentType.TransactionMetric - | ApmDocumentType.TransactionMetric + | ApmDocumentType.TransactionEvent : ApmDocumentType.TransactionMetric | ApmDocumentType.TransactionEvent >; } | null { diff --git a/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_device_os_app_charts.ts b/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_device_os_app_charts.ts new file mode 100644 index 0000000000000..3c5e8e558770d --- /dev/null +++ b/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_device_os_app_charts.ts @@ -0,0 +1,121 @@ +/* + * 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 { + termQuery, + kqlQuery, + rangeQuery, +} from '@kbn/observability-plugin/server'; +import { ProcessorEvent } from '@kbn/observability-plugin/common'; +import { + DEVICE_MODEL_IDENTIFIER, + HOST_OS_VERSION, + SERVICE_NAME, + SERVICE_VERSION, + TRANSACTION_TYPE, +} from '../../../../common/es_fields/apm'; +import { environmentQuery } from '../../../../common/utils/environment_query'; +import { APMEventClient } from '../../../lib/helpers/create_es_client/create_apm_event_client'; +import { mergeCountWithOther } from './merge_other_count'; +import { + MobilePropertyType, + MobilePropertyDeviceOsAppVersionType, +} from '../../../../common/mobile_types'; + +export type MobileMostUsedChartResponse = Array<{ + key: MobilePropertyDeviceOsAppVersionType; + options: Array<{ + key: string | number; + docCount: number; + }>; +}>; +export async function getMobileMostUsedCharts({ + kuery, + apmEventClient, + serviceName, + transactionType, + environment, + start, + end, +}: { + kuery: string; + apmEventClient: APMEventClient; + serviceName: string; + transactionType?: string; + environment: string; + start: number; + end: number; +}): Promise { + const MAX_ITEMS_PER_CHART = 5; + const response = await apmEventClient.search('get_mobile_most_used_charts', { + apm: { + events: [ProcessorEvent.transaction], + }, + body: { + track_total_hits: false, + size: 0, + query: { + bool: { + filter: [ + ...termQuery(SERVICE_NAME, serviceName), + ...termQuery(TRANSACTION_TYPE, transactionType), + ...rangeQuery(start, end), + ...environmentQuery(environment), + ...kqlQuery(kuery), + ], + }, + }, + aggs: { + devices: { + terms: { + field: DEVICE_MODEL_IDENTIFIER, + size: MAX_ITEMS_PER_CHART, + }, + }, + osVersions: { + terms: { + field: HOST_OS_VERSION, + size: MAX_ITEMS_PER_CHART, + }, + }, + appVersions: { + terms: { + field: SERVICE_VERSION, + size: MAX_ITEMS_PER_CHART, + }, + }, + }, + }, + }); + + return [ + { + key: MobilePropertyType.Device, + options: + mergeCountWithOther( + response.aggregations?.devices?.buckets, + response.aggregations?.devices?.sum_other_doc_count + ) || [], + }, + { + key: MobilePropertyType.OsVersion, + options: + mergeCountWithOther( + response.aggregations?.osVersions?.buckets, + response.aggregations?.osVersions?.sum_other_doc_count + ) || [], + }, + { + key: MobilePropertyType.AppVersion, + options: + mergeCountWithOther( + response.aggregations?.appVersions?.buckets, + response.aggregations?.appVersions?.sum_other_doc_count + ) || [], + }, + ]; +} diff --git a/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_nct_chart.ts b/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_nct_chart.ts new file mode 100644 index 0000000000000..987f5cf9cb1a2 --- /dev/null +++ b/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/get_nct_chart.ts @@ -0,0 +1,90 @@ +/* + * 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 { + termQuery, + kqlQuery, + rangeQuery, +} from '@kbn/observability-plugin/server'; +import { ProcessorEvent } from '@kbn/observability-plugin/common'; +import { + NETWORK_CONNECTION_TYPE, + SERVICE_NAME, +} from '../../../../common/es_fields/apm'; +import { environmentQuery } from '../../../../common/utils/environment_query'; +import { APMEventClient } from '../../../lib/helpers/create_es_client/create_apm_event_client'; +import { mergeCountWithOther } from './merge_other_count'; +import { + MobilePropertyType, + MobilePropertyNctType, +} from '../../../../common/mobile_types'; + +export interface MobileMostUsedNCTChartResponse { + key: MobilePropertyNctType; + options: Array<{ + key: string | number; + docCount: number; + }>; +} + +export async function getMobileMostUsedNCTCharts({ + kuery, + apmEventClient, + serviceName, + environment, + start, + end, +}: { + kuery: string; + apmEventClient: APMEventClient; + serviceName: string; + transactionType?: string; + environment: string; + start: number; + end: number; +}): Promise { + const MAX_ITEMS_PER_CHART = 5; + const response = await apmEventClient.search( + 'get_mobile_most_used_nct_charts', + { + apm: { + events: [ProcessorEvent.span], + }, + body: { + track_total_hits: false, + size: 0, + query: { + bool: { + filter: [ + ...termQuery(SERVICE_NAME, serviceName), + ...rangeQuery(start, end), + ...environmentQuery(environment), + ...kqlQuery(kuery), + ], + }, + }, + aggs: { + netConnectionTypes: { + terms: { + field: NETWORK_CONNECTION_TYPE, + size: MAX_ITEMS_PER_CHART, + }, + }, + }, + }, + } + ); + + return { + key: MobilePropertyType.NetworkConnectionType, + options: + mergeCountWithOther( + response.aggregations?.netConnectionTypes?.buckets, + response.aggregations?.netConnectionTypes?.sum_other_doc_count + ) || [], + }; +} diff --git a/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/merge_other_count.ts b/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/merge_other_count.ts new file mode 100644 index 0000000000000..69a4849793247 --- /dev/null +++ b/x-pack/plugins/apm/server/routes/mobile/get_mobile_most_used_charts/merge_other_count.ts @@ -0,0 +1,24 @@ +/* + * 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 mergeCountWithOther( + buckets: Array<{ key: string | number; doc_count: number }> = [], + otherCount: number = 0 +) { + const options = buckets.map(({ key, doc_count: docCount }) => ({ + key, + docCount, + })); + if (otherCount > 0) { + options.push({ + key: 'other', + docCount: otherCount, + }); + } + + return options; +} diff --git a/x-pack/plugins/apm/server/routes/mobile/route.ts b/x-pack/plugins/apm/server/routes/mobile/route.ts index b86223e4f1bca..3f6de9de1b696 100644 --- a/x-pack/plugins/apm/server/routes/mobile/route.ts +++ b/x-pack/plugins/apm/server/routes/mobile/route.ts @@ -26,6 +26,15 @@ import { getMobileTermsByField, MobileTermsByFieldResponse, } from './get_mobile_terms_by_field'; +import { + getMobileMostUsedCharts, + MobileMostUsedChartResponse, +} from './get_mobile_most_used_charts/get_device_os_app_charts'; +import { + getMobileMostUsedNCTCharts, + MobileMostUsedNCTChartResponse, +} from './get_mobile_most_used_charts/get_nct_chart'; +import { MobilePropertyType } from '../../../common/mobile_types'; const mobileFiltersRoute = createApmServerRoute({ endpoint: 'GET /internal/apm/services/{serviceName}/mobile/filters', @@ -66,6 +75,60 @@ const mobileFiltersRoute = createApmServerRoute({ }, }); +const mobileChartsRoute = createApmServerRoute({ + endpoint: 'GET /internal/apm/mobile-services/{serviceName}/most_used_charts', + params: t.type({ + path: t.type({ + serviceName: t.string, + }), + query: t.intersection([ + kueryRt, + rangeRt, + environmentRt, + t.partial({ + transactionType: t.string, + }), + ]), + }), + options: { tags: ['access:apm'] }, + handler: async ( + resources + ): Promise<{ + mostUsedCharts: Array<{ + key: MobilePropertyType; + options: MobileMostUsedChartResponse[number]['options'] & + MobileMostUsedNCTChartResponse['options']; + }>; + }> => { + const apmEventClient = await getApmEventClient(resources); + const { params } = resources; + const { serviceName } = params.path; + const { kuery, environment, start, end, transactionType } = params.query; + + const [deviceOsAndAppVersionChart, nctChart] = await Promise.all([ + getMobileMostUsedCharts({ + kuery, + environment, + transactionType, + start, + end, + serviceName, + apmEventClient, + }), + getMobileMostUsedNCTCharts({ + kuery, + environment, + start, + end, + serviceName, + apmEventClient, + }), + ]); + + return { mostUsedCharts: [...deviceOsAndAppVersionChart, nctChart] }; + }, +}); + const mobileStatsRoute = createApmServerRoute({ endpoint: 'GET /internal/apm/mobile-services/{serviceName}/stats', params: t.type({ @@ -268,6 +331,7 @@ const mobileTermsByFieldRoute = createApmServerRoute({ export const mobileRouteRepository = { ...mobileFiltersRoute, + ...mobileChartsRoute, ...sessionsChartRoute, ...httpRequestsChartRoute, ...mobileStatsRoute, diff --git a/x-pack/plugins/apm/tsconfig.json b/x-pack/plugins/apm/tsconfig.json index e049bed128afa..cfa3bc4ac660e 100644 --- a/x-pack/plugins/apm/tsconfig.json +++ b/x-pack/plugins/apm/tsconfig.json @@ -83,6 +83,7 @@ "@kbn/alerts-as-data-utils", "@kbn/exploratory-view-plugin", "@kbn/logging-mocks", + "@kbn/chart-icons", "@kbn/observability-shared-plugin", ], "exclude": [ diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 429ea1508fd9d..79465e4956e51 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -7165,7 +7165,6 @@ "xpack.apm.serviceOveriew.errorsTableOccurrences": "{occurrences} occ.", "xpack.apm.serviceOverview.embeddedMap.error.toastDescription": "L'usine incorporable ayant l'ID \"{embeddableFactoryId}\" est introuvable.", "xpack.apm.serviceOverview.embeddedMap.subtitle": "Carte affichant le nombre total de {currentMap} en fonction du pays et de la région", - "xpack.apm.serviceOverview.lensFlyout.topValues": "{BUCKET_SIZE} valeurs les plus élevées de {metric}", "xpack.apm.serviceOverview.mobileCallOutText": "Il s'agit d'un service mobile, qui est actuellement disponible en tant que version d'évaluation technique. Vous pouvez nous aider à améliorer l'expérience en nous envoyant des commentaires. {feedbackLink}.", "xpack.apm.servicesTable.environmentCount": "{environmentCount, plural, one {1 environnement} other {# environnements}}", "xpack.apm.settings.agentKeys.apiKeysDisabledErrorDescription": "Contactez votre administrateur système et reportez-vous à {link} pour activer les clés d'API.", @@ -8095,17 +8094,11 @@ "xpack.apm.serviceOverview.latencyColumnDefaultLabel": "Latence", "xpack.apm.serviceOverview.latencyColumnP95Label": "Latence (95e)", "xpack.apm.serviceOverview.latencyColumnP99Label": "Latence (99e)", - "xpack.apm.serviceOverview.lensFlyout.countRecords": "Nombre d'enregistrements", "xpack.apm.serviceOverview.loadingText": "Chargement…", "xpack.apm.serviceOverview.mobileCallOutLink": "Donner un retour", "xpack.apm.serviceOverview.mobileCallOutTitle": "APM mobile", - "xpack.apm.serviceOverview.mostUsed.appVersion": "Version de l'application", - "xpack.apm.serviceOverview.mostUsed.device": "Appareils", - "xpack.apm.serviceOverview.mostUsed.nct": "Type de connexion réseau", - "xpack.apm.serviceOverview.mostUsed.osVersion": "Version du système d'exploitation", "xpack.apm.serviceOverview.mostUsedTitle": "Le plus utilisé", "xpack.apm.serviceOverview.noResultsText": "Aucune instance trouvée", - "xpack.apm.serviceOverview.openInLens": "Ouvrir dans Lens", "xpack.apm.serviceOverview.throughtputChartTitle": "Rendement", "xpack.apm.serviceOverview.tpmHelp": "Le rendement est mesuré en transactions par minute (tpm).", "xpack.apm.serviceOverview.transactionsTableColumnErrorRate": "Taux de transactions ayant échoué", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 43c21dba0a84a..956e0fee559b4 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -7166,7 +7166,6 @@ "xpack.apm.serviceOveriew.errorsTableOccurrences": "{occurrences}件。", "xpack.apm.serviceOverview.embeddedMap.error.toastDescription": "id {embeddableFactoryId}の埋め込み可能ファクトリが見つかりました。", "xpack.apm.serviceOverview.embeddedMap.subtitle": "国と地域別に基づく{currentMap}の総数を示した地図", - "xpack.apm.serviceOverview.lensFlyout.topValues": "{metric}の上位の{BUCKET_SIZE}値", "xpack.apm.serviceOverview.mobileCallOutText": "これはモバイルサービスであり、現在はテクニカルプレビューとしてリリースされています。フィードバックを送信して、エクスペリエンスの改善にご協力ください。{feedbackLink}", "xpack.apm.servicesTable.environmentCount": "{environmentCount, plural, other {#個の環境}}", "xpack.apm.settings.agentKeys.apiKeysDisabledErrorDescription": "システム管理者に連絡し、{link}を伝えてAPIキーを有効にしてください。", @@ -8095,17 +8094,11 @@ "xpack.apm.serviceOverview.latencyColumnDefaultLabel": "レイテンシ", "xpack.apm.serviceOverview.latencyColumnP95Label": "レイテンシ(95 番目)", "xpack.apm.serviceOverview.latencyColumnP99Label": "レイテンシ(99 番目)", - "xpack.apm.serviceOverview.lensFlyout.countRecords": "レコード数", "xpack.apm.serviceOverview.loadingText": "読み込み中…", "xpack.apm.serviceOverview.mobileCallOutLink": "フィードバックを作成する", "xpack.apm.serviceOverview.mobileCallOutTitle": "モバイルAPM", - "xpack.apm.serviceOverview.mostUsed.appVersion": "アプリバージョン", - "xpack.apm.serviceOverview.mostUsed.device": "デバイス", - "xpack.apm.serviceOverview.mostUsed.nct": "ネットワーク接続タイプ", - "xpack.apm.serviceOverview.mostUsed.osVersion": "OSバージョン", "xpack.apm.serviceOverview.mostUsedTitle": "最も使用されている", "xpack.apm.serviceOverview.noResultsText": "インスタンスが見つかりません", - "xpack.apm.serviceOverview.openInLens": "Lensで開く", "xpack.apm.serviceOverview.throughtputChartTitle": "スループット", "xpack.apm.serviceOverview.tpmHelp": "スループットは1分あたりのトランザクション数(tpm)で測定されます。", "xpack.apm.serviceOverview.transactionsTableColumnErrorRate": "失敗したトランザクション率", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 2f628ca89b213..bc9ce83dea3a2 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -7165,7 +7165,6 @@ "xpack.apm.serviceOveriew.errorsTableOccurrences": "{occurrences} 次", "xpack.apm.serviceOverview.embeddedMap.error.toastDescription": "未找到 ID 为“{embeddableFactoryId}”的可嵌入工厂。", "xpack.apm.serviceOverview.embeddedMap.subtitle": "根据国家和区域显示 {currentMap} 总数的地图", - "xpack.apm.serviceOverview.lensFlyout.topValues": "{metric} 的排名前 {BUCKET_SIZE} 的值", "xpack.apm.serviceOverview.mobileCallOutText": "这是一项移动服务,它当前以技术预览的形式发布。您可以通过提供反馈来帮助我们改进体验。{feedbackLink}。", "xpack.apm.servicesTable.environmentCount": "{environmentCount, plural, one {1 个环境} other {# 个环境}}", "xpack.apm.settings.agentKeys.apiKeysDisabledErrorDescription": "请联系您的系统管理员并参阅{link}以启用 API 密钥。", @@ -8095,17 +8094,11 @@ "xpack.apm.serviceOverview.latencyColumnDefaultLabel": "延迟", "xpack.apm.serviceOverview.latencyColumnP95Label": "延迟(第 95 个)", "xpack.apm.serviceOverview.latencyColumnP99Label": "延迟(第 99 个)", - "xpack.apm.serviceOverview.lensFlyout.countRecords": "记录计数", "xpack.apm.serviceOverview.loadingText": "正在加载……", "xpack.apm.serviceOverview.mobileCallOutLink": "反馈", "xpack.apm.serviceOverview.mobileCallOutTitle": "移动 APM", - "xpack.apm.serviceOverview.mostUsed.appVersion": "应用版本", - "xpack.apm.serviceOverview.mostUsed.device": "设备", - "xpack.apm.serviceOverview.mostUsed.nct": "网络连接类型", - "xpack.apm.serviceOverview.mostUsed.osVersion": "操作系统版本", "xpack.apm.serviceOverview.mostUsedTitle": "最常用", "xpack.apm.serviceOverview.noResultsText": "未找到实例", - "xpack.apm.serviceOverview.openInLens": "在 Lens 中打开", "xpack.apm.serviceOverview.throughtputChartTitle": "吞吐量", "xpack.apm.serviceOverview.tpmHelp": "吞吐量按每分钟事务数 (tpm) 来度量。", "xpack.apm.serviceOverview.transactionsTableColumnErrorRate": "失败事务率", diff --git a/x-pack/test/apm_api_integration/tests/mobile/generate_mobile_data.ts b/x-pack/test/apm_api_integration/tests/mobile/generate_mobile_data.ts index c2e536f0ce930..cd3b4ed636272 100644 --- a/x-pack/test/apm_api_integration/tests/mobile/generate_mobile_data.ts +++ b/x-pack/test/apm_api_integration/tests/mobile/generate_mobile_data.ts @@ -118,6 +118,96 @@ export async function generateMobileData({ carrierMCC: '440', }); + const pixel7 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Google', + modelIdentifier: 'Pixel 7', + modelName: 'Pixel 7', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + + const pixel7Pro = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Google', + modelIdentifier: 'Pixel 7 Pro', + modelName: 'Pixel 7 Pro', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + + const pixel8 = apm + .mobileApp({ + name: 'synth-android', + environment: 'production', + agentName: 'android/java', + }) + .mobileDevice({ serviceVersion: '2.3' }) + .deviceInfo({ + manufacturer: 'Google', + modelIdentifier: 'Pixel 8', + modelName: 'Pixel 8', + }) + .osInfo({ + osType: 'android', + osVersion: '10', + osFull: 'Android 10, API level 29, BUILD A022MUBU2AUD1', + runtimeVersion: '2.1.0', + }) + .setGeoInfo({ + clientIp: '223.72.43.22', + cityName: 'Beijing', + continentName: 'Asia', + countryIsoCode: 'CN', + countryName: 'China', + regionIsoCode: 'CN-BJ', + regionName: 'Beijing', + location: { coordinates: [116.3861, 39.9143], type: 'Point' }, + }) + .setNetworkConnection({ type: 'wifi' }); + return await synthtraceEsClient.index([ timerange(start, end) .interval('5m') @@ -126,6 +216,9 @@ export async function generateMobileData({ galaxy10.startNewSession(); galaxy7.startNewSession(); huaweiP2.startNewSession(); + pixel7.startNewSession(); + pixel7Pro.startNewSession(); + pixel8.startNewSession(); return [ galaxy10 .transaction('Start View - View Appearing', 'Android Activity') @@ -224,6 +317,87 @@ export async function generateMobileData({ .success() .timestamp(timestamp + 400) ), + pixel7 + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + pixel7 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + pixel7 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + pixel8 + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + pixel8 + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + pixel8 + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), + pixel7Pro + .transaction('Start View - View Appearing', 'Android Activity') + .timestamp(timestamp) + .duration(20) + .success() + .children( + pixel7Pro + .span({ + spanName: 'onCreate', + spanType: 'app', + spanSubtype: 'external', + 'service.target.type': 'http', + 'span.destination.service.resource': 'external', + }) + .duration(50) + .success() + .timestamp(timestamp + 20), + pixel7Pro + .httpSpan({ + spanName: 'GET backend:1234', + httpMethod: 'GET', + httpUrl: 'https://backend:1234/api/start', + }) + .duration(800) + .success() + .timestamp(timestamp + 400) + ), ]; }), ]); diff --git a/x-pack/test/apm_api_integration/tests/mobile/mobile_http_requests_timeseries.spec.ts b/x-pack/test/apm_api_integration/tests/mobile/mobile_http_requests_timeseries.spec.ts index 587f91ccbe6b8..a8b973f6d5660 100644 --- a/x-pack/test/apm_api_integration/tests/mobile/mobile_http_requests_timeseries.spec.ts +++ b/x-pack/test/apm_api_integration/tests/mobile/mobile_http_requests_timeseries.spec.ts @@ -92,7 +92,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { response.body.currentPeriod.timeseries.some((item) => item.y === 0 && item.x) ).to.eql(true); - expect(response.body.currentPeriod.timeseries[0].y).to.eql(4); + expect(response.body.currentPeriod.timeseries[0].y).to.eql(7); expect(response.body.previousPeriod.timeseries).to.eql([]); }); }); @@ -125,7 +125,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { expect(response.status).to.be(200); expect(ntcCell.status).to.be(200); - expect(response.body.currentPeriod.timeseries[0].y).to.eql(2); + expect(response.body.currentPeriod.timeseries[0].y).to.eql(5); expect(ntcCell.body.currentPeriod.timeseries[0].y).to.eql(2); }); }); diff --git a/x-pack/test/apm_api_integration/tests/mobile/mobile_location_stats.spec.ts b/x-pack/test/apm_api_integration/tests/mobile/mobile_location_stats.spec.ts index 5cbffe4ab8c00..171b43b1f1a0d 100644 --- a/x-pack/test/apm_api_integration/tests/mobile/mobile_location_stats.spec.ts +++ b/x-pack/test/apm_api_integration/tests/mobile/mobile_location_stats.spec.ts @@ -122,7 +122,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { kuery: `service.version:"2.3"`, }); - expect(response.currentPeriod.mostSessions.value).to.eql(3); + expect(response.currentPeriod.mostSessions.value).to.eql(12); expect(response.currentPeriod.mostRequests.value).to.eql(0); }); @@ -132,7 +132,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { kuery: `service.version:"2.3" and service.environment: "production"`, }); - expect(response.currentPeriod.mostSessions.value).to.eql(3); + expect(response.currentPeriod.mostSessions.value).to.eql(12); expect(response.currentPeriod.mostRequests.value).to.eql(0); }); }); diff --git a/x-pack/test/apm_api_integration/tests/mobile/mobile_most_used_chart.spec.ts b/x-pack/test/apm_api_integration/tests/mobile/mobile_most_used_chart.spec.ts new file mode 100644 index 0000000000000..65a6e19c0c058 --- /dev/null +++ b/x-pack/test/apm_api_integration/tests/mobile/mobile_most_used_chart.spec.ts @@ -0,0 +1,104 @@ +/* + * 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 { APIReturnType } from '@kbn/apm-plugin/public/services/rest/create_call_apm_api'; +import { ENVIRONMENT_ALL } from '@kbn/apm-plugin/common/environment_filter_values'; +import { FtrProviderContext } from '../../common/ftr_provider_context'; +import { generateMobileData } from './generate_mobile_data'; + +type MostUsedCharts = + APIReturnType<'GET /internal/apm/mobile-services/{serviceName}/most_used_charts'>; + +export default function ApiTest({ getService }: FtrProviderContext) { + const apmApiClient = getService('apmApiClient'); + const registry = getService('registry'); + const synthtraceEsClient = getService('synthtraceEsClient'); + + const start = new Date('2023-01-01T00:00:00.000Z').getTime(); + const end = new Date('2023-01-01T00:15:00.000Z').getTime() - 1; + + async function getMobileMostUsedCharts({ + environment = ENVIRONMENT_ALL.value, + kuery = '', + serviceName, + transactionType = 'mobile', + }: { + environment?: string; + kuery?: string; + serviceName: string; + transactionType?: string; + }) { + return await apmApiClient + .readUser({ + endpoint: 'GET /internal/apm/mobile-services/{serviceName}/most_used_charts', + params: { + path: { serviceName }, + query: { + environment, + start: new Date(start).toISOString(), + end: new Date(end).toISOString(), + kuery, + transactionType, + }, + }, + }) + .then(({ body }) => body); + } + + registry.when( + 'Most used charts when data is not loaded', + { config: 'basic', archives: [] }, + () => { + describe('when no data', () => { + it('handles empty state', async () => { + const response: MostUsedCharts = await getMobileMostUsedCharts({ serviceName: 'foo' }); + expect(response.mostUsedCharts.length).to.eql(4); + expect(response.mostUsedCharts.every((chart) => chart.options.length === 0)).to.eql(true); + }); + }); + } + ); + + registry.when('Mobile stats', { config: 'basic', archives: [] }, () => { + before(async () => { + await generateMobileData({ + synthtraceEsClient, + start, + end, + }); + }); + + after(() => synthtraceEsClient.clean()); + + describe('when data is loaded', () => { + let response: MostUsedCharts; + + before(async () => { + response = await getMobileMostUsedCharts({ + serviceName: 'synth-android', + environment: 'production', + }); + }); + + it('should get the top 5 and the other option only', () => { + const deviceOptions = response.mostUsedCharts.find( + (chart) => chart.key === 'device' + )?.options; + expect(deviceOptions?.length).to.eql(6); + expect(deviceOptions?.find((option) => option.key === 'other')).to.not.be(undefined); + }); + + it('should get network connection type object from span events', () => { + const nctOptions = response.mostUsedCharts.find( + (chart) => chart.key === 'netConnectionType' + )?.options; + expect(nctOptions?.length).to.eql(2); + }); + }); + }); +} diff --git a/x-pack/test/apm_api_integration/tests/mobile/mobile_sessions_timeseries.spec.ts b/x-pack/test/apm_api_integration/tests/mobile/mobile_sessions_timeseries.spec.ts index 8e1c2dceb0b5f..6eeb50f295d6a 100644 --- a/x-pack/test/apm_api_integration/tests/mobile/mobile_sessions_timeseries.spec.ts +++ b/x-pack/test/apm_api_integration/tests/mobile/mobile_sessions_timeseries.spec.ts @@ -78,7 +78,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { true ); - expect(response.body.currentPeriod.timeseries[0].y).to.eql(3); + expect(response.body.currentPeriod.timeseries[0].y).to.eql(6); expect(response.body.previousPeriod.timeseries[0].y).to.eql(0); }); @@ -90,7 +90,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { true ); - expect(response.body.currentPeriod.timeseries[0].y).to.eql(3); + expect(response.body.currentPeriod.timeseries[0].y).to.eql(6); expect(response.body.previousPeriod.timeseries).to.eql([]); }); }); @@ -119,7 +119,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { true ); - expect(response.body.currentPeriod.timeseries[0].y).to.eql(3); + expect(response.body.currentPeriod.timeseries[0].y).to.eql(6); expect(response.body.previousPeriod.timeseries).to.eql([]); }); }); diff --git a/x-pack/test/apm_api_integration/tests/mobile/mobile_stats.spec.ts b/x-pack/test/apm_api_integration/tests/mobile/mobile_stats.spec.ts index a6f7d50fc717a..c52c13ea64cae 100644 --- a/x-pack/test/apm_api_integration/tests/mobile/mobile_stats.spec.ts +++ b/x-pack/test/apm_api_integration/tests/mobile/mobile_stats.spec.ts @@ -134,7 +134,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { kuery: `service.version:"2.3" and service.environment: "production"`, }); - expect(response.currentPeriod.sessions.value).to.eql(3); + expect(response.currentPeriod.sessions.value).to.eql(12); expect(response.currentPeriod.requests.value).to.eql(0); }); }); diff --git a/x-pack/test/apm_api_integration/tests/mobile/mobile_terms_by_field.spec.ts b/x-pack/test/apm_api_integration/tests/mobile/mobile_terms_by_field.spec.ts index ae3201bb79a28..cfe52ce5afe5e 100644 --- a/x-pack/test/apm_api_integration/tests/mobile/mobile_terms_by_field.spec.ts +++ b/x-pack/test/apm_api_integration/tests/mobile/mobile_terms_by_field.spec.ts @@ -91,18 +91,12 @@ export default function ApiTest({ getService }: FtrProviderContext) { size: 10, }); expect(response.terms).to.eql([ - { - label: 'SM-G973F', - count: 6, - }, - { - label: 'HUAWEI P2-0000', - count: 3, - }, - { - label: 'SM-G930F', - count: 3, - }, + { label: 'SM-G973F', count: 6 }, + { label: 'HUAWEI P2-0000', count: 3 }, + { label: 'Pixel 7', count: 3 }, + { label: 'Pixel 7 Pro', count: 3 }, + { label: 'Pixel 8', count: 3 }, + { label: 'SM-G930F', count: 3 }, ]); }); @@ -116,7 +110,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { expect(response.terms).to.eql([ { label: '2.3', - count: 6, + count: 15, }, { label: '1.1', @@ -139,7 +133,7 @@ export default function ApiTest({ getService }: FtrProviderContext) { expect(response.terms).to.eql([ { label: '2.3', - count: 6, + count: 15, }, ]); }); From fd260171629e8ce0970584d4c0d7179b33ee7351 Mon Sep 17 00:00:00 2001 From: Vadim Kibana <82822460+vadimkibana@users.noreply.github.com> Date: Thu, 20 Apr 2023 14:51:16 +0200 Subject: [PATCH 123/144] Do not initialize event stream until we log events (#155357) ## Summary This PR pauses event stream initalization until we set up events that we want to log. ### Checklist Delete any items that are not applicable to this PR. - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios ### For maintainers - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../content_management/server/core/core.ts | 22 ++++++---- .../content_management/server/plugin.ts | 44 +++++++++++-------- 2 files changed, 40 insertions(+), 26 deletions(-) diff --git a/src/plugins/content_management/server/core/core.ts b/src/plugins/content_management/server/core/core.ts index 8062e4ca23ea5..4d055ed6783f4 100644 --- a/src/plugins/content_management/server/core/core.ts +++ b/src/plugins/content_management/server/core/core.ts @@ -28,7 +28,7 @@ export interface CoreApi { export interface CoreInitializerContext { logger: Logger; - eventStream: EventStreamService; + eventStream?: EventStreamService; } export interface CoreSetup { @@ -63,14 +63,20 @@ export class Core { } private setupEventStream() { + const eventStream = this.ctx.eventStream; + // TODO: This should be cleaned up and support added for all CRUD events. - this.eventBus.on('deleteItemSuccess', (event) => { - this.ctx.eventStream.addEvent({ - // TODO: add "subject" field to event - predicate: ['delete'], - // TODO: the `.contentId` should be easily available on most events. - object: [event.contentTypeId, (event as any).contentId], + // The work is tracked here: https://github.com/elastic/kibana/issues/153258 + // and here: https://github.com/elastic/kibana/issues/153260 + if (eventStream) { + this.eventBus.on('deleteItemSuccess', (event) => { + eventStream.addEvent({ + // TODO: add "subject" field to event + predicate: ['delete'], + // TODO: the `.contentId` should be easily available on most events. + object: [event.contentTypeId, (event as any).contentId], + }); }); - }); + } } } diff --git a/src/plugins/content_management/server/plugin.ts b/src/plugins/content_management/server/plugin.ts index e70bb5da14a65..4913c5cac08f6 100755 --- a/src/plugins/content_management/server/plugin.ts +++ b/src/plugins/content_management/server/plugin.ts @@ -21,7 +21,7 @@ import { ContentManagementServerStart, SetupDependencies, } from './types'; -import { EventStreamService, EsEventStreamClientFactory } from './event_stream'; +import { EventStreamService } from './event_stream'; import { procedureNames } from '../common/rpc'; export class ContentManagementPlugin @@ -29,20 +29,22 @@ export class ContentManagementPlugin { private readonly logger: Logger; private readonly core: Core; - readonly #eventStream: EventStreamService; + readonly #eventStream?: EventStreamService; constructor(initializerContext: PluginInitializerContext) { - const kibanaVersion = initializerContext.env.packageInfo.version; - this.logger = initializerContext.logger.get(); - this.#eventStream = new EventStreamService({ - logger: this.logger, - clientFactory: new EsEventStreamClientFactory({ - baseName: '.kibana', - kibanaVersion, - logger: this.logger, - }), - }); + + // TODO: Enable Event Stream once we ready to log events. + // const kibanaVersion = initializerContext.env.packageInfo.version; + // this.#eventStream = new EventStreamService({ + // logger: this.logger, + // clientFactory: new EsEventStreamClientFactory({ + // baseName: '.kibana', + // kibanaVersion, + // logger: this.logger, + // }), + // }); + this.core = new Core({ logger: this.logger, eventStream: this.#eventStream, @@ -50,7 +52,9 @@ export class ContentManagementPlugin } public setup(core: CoreSetup) { - this.#eventStream.setup({ core }); + if (this.#eventStream) { + this.#eventStream.setup({ core }); + } const { api: coreApi, contentRegistry } = this.core.setup(); @@ -69,16 +73,20 @@ export class ContentManagementPlugin } public start(core: CoreStart) { - this.#eventStream.start(); + if (this.#eventStream) { + this.#eventStream.start(); + } return {}; } public async stop(): Promise { - try { - await this.#eventStream.stop(); - } catch (e) { - this.logger.error(`Error during event stream stop: ${e}`); + if (this.#eventStream) { + try { + await this.#eventStream.stop(); + } catch (e) { + this.logger.error(`Error during event stream stop: ${e}`); + } } } } From 11721308fc953456fc48a7adb9e6af8ac74a36ab Mon Sep 17 00:00:00 2001 From: Maryam Saeidi Date: Thu, 20 Apr 2023 15:05:45 +0200 Subject: [PATCH 124/144] [AO] Add evaluation values for metric threshold and inventory rules (#154255) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #153877 ## Summary This PR adds a new field called `kibana.alert.evaluation.values` to the alert document for metric threshold and inventory rules. This is an array of numbers but depending on the result of the rule execution, the value might be `null` too. ![image](https://user-images.githubusercontent.com/12370520/230380396-fcfa10d8-a119-497b-bd94-9f567ecb8fc5.png) We want to use this result in the metric threshold alert details page, so I checked whether this value can be retrieved correctly there or not: ![image](https://user-images.githubusercontent.com/12370520/230380867-3a0520fd-687c-4d88-8161-278abfe8fc88.png) **Note** I will add tests later, I would like to get feedback about the implementation first. ## 🧪 How to test - Add xpack.observability.unsafe.alertDetails.metrics.enabled: true to the Kibana config - Create a metric threshold and inventory rule that generates an alert - Check the alert document for the `kibana.alert.evaluation.values` field, it should be an array with the result of evaluation for the related criteria - If you are using metricbeat, stop it so the value of evaluation will be null - Go to the alert details page, you should be able to see the main chart even when the evaluation value is null - Check the alert document for the `kibana.alert.evaluation.values` field, it should be an array including a null value --- .../legacy_experimental_field_map.ts | 12 ++++++++- .../src/technical_field_names.ts | 3 +++ .../inventory_metric_threshold_executor.ts | 22 ++++++++++++---- .../metric_threshold_executor.ts | 26 ++++++++++++++----- .../field_map/runtime_type_from_fieldmap.ts | 2 +- 5 files changed, 51 insertions(+), 14 deletions(-) diff --git a/packages/kbn-alerts-as-data-utils/src/field_maps/legacy_experimental_field_map.ts b/packages/kbn-alerts-as-data-utils/src/field_maps/legacy_experimental_field_map.ts index 8c8445ad6761a..eff46f46adbc5 100644 --- a/packages/kbn-alerts-as-data-utils/src/field_maps/legacy_experimental_field_map.ts +++ b/packages/kbn-alerts-as-data-utils/src/field_maps/legacy_experimental_field_map.ts @@ -6,7 +6,11 @@ * Side Public License, v 1. */ -import { ALERT_EVALUATION_THRESHOLD, ALERT_EVALUATION_VALUE } from '@kbn/rule-data-utils'; +import { + ALERT_EVALUATION_THRESHOLD, + ALERT_EVALUATION_VALUE, + ALERT_EVALUATION_VALUES, +} from '@kbn/rule-data-utils'; export const legacyExperimentalFieldMap = { [ALERT_EVALUATION_THRESHOLD]: { @@ -15,6 +19,12 @@ export const legacyExperimentalFieldMap = { required: false, }, [ALERT_EVALUATION_VALUE]: { type: 'scaled_float', scaling_factor: 100, required: false }, + [ALERT_EVALUATION_VALUES]: { + type: 'scaled_float', + scaling_factor: 100, + required: false, + array: true, + }, } as const; export type ExperimentalRuleFieldMap = typeof legacyExperimentalFieldMap; diff --git a/packages/kbn-rule-data-utils/src/technical_field_names.ts b/packages/kbn-rule-data-utils/src/technical_field_names.ts index a5a39d7ef33b1..1b3215af7e843 100644 --- a/packages/kbn-rule-data-utils/src/technical_field_names.ts +++ b/packages/kbn-rule-data-utils/src/technical_field_names.ts @@ -85,6 +85,7 @@ const EVENT_MODULE = 'event.module' as const; const ALERT_BUILDING_BLOCK_TYPE = `${ALERT_NAMESPACE}.building_block_type` as const; const ALERT_EVALUATION_THRESHOLD = `${ALERT_NAMESPACE}.evaluation.threshold` as const; const ALERT_EVALUATION_VALUE = `${ALERT_NAMESPACE}.evaluation.value` as const; +const ALERT_EVALUATION_VALUES = `${ALERT_NAMESPACE}.evaluation.values` as const; // Fields pertaining to the rule associated with the alert const ALERT_RULE_EXCEPTIONS_LIST = `${ALERT_RULE_NAMESPACE}.exceptions_list` as const; @@ -125,6 +126,7 @@ const fields = { ALERT_END, ALERT_EVALUATION_THRESHOLD, ALERT_EVALUATION_VALUE, + ALERT_EVALUATION_VALUES, ALERT_FLAPPING, ALERT_MAINTENANCE_WINDOW_IDS, ALERT_INSTANCE_ID, @@ -192,6 +194,7 @@ export { ALERT_BUILDING_BLOCK_TYPE, ALERT_EVALUATION_THRESHOLD, ALERT_EVALUATION_VALUE, + ALERT_EVALUATION_VALUES, ALERT_RULE_EXCEPTIONS_LIST, ALERT_RULE_NAMESPACE_FIELD, ALERT_THREAT_FRAMEWORK, diff --git a/x-pack/plugins/infra/server/lib/alerting/inventory_metric_threshold/inventory_metric_threshold_executor.ts b/x-pack/plugins/infra/server/lib/alerting/inventory_metric_threshold/inventory_metric_threshold_executor.ts index bd033b5285b3e..d0eb8603ee69c 100644 --- a/x-pack/plugins/infra/server/lib/alerting/inventory_metric_threshold/inventory_metric_threshold_executor.ts +++ b/x-pack/plugins/infra/server/lib/alerting/inventory_metric_threshold/inventory_metric_threshold_executor.ts @@ -6,7 +6,7 @@ */ import { i18n } from '@kbn/i18n'; -import { ALERT_REASON, ALERT_ACTION_GROUP } from '@kbn/rule-data-utils'; +import { ALERT_REASON, ALERT_ACTION_GROUP, ALERT_EVALUATION_VALUES } from '@kbn/rule-data-utils'; import { first, get } from 'lodash'; import { ActionGroup, @@ -65,8 +65,7 @@ type InventoryMetricThresholdAlertFactory = ( reason: string, actionGroup: InventoryThrehsoldActionGroup, additionalContext?: AdditionalContext | null, - threshold?: number | undefined, - value?: number | undefined + evaluationValues?: Array ) => InventoryMetricThresholdAlert; export const createInventoryMetricThresholdExecutor = (libs: InfraBackendLibs) => @@ -109,13 +108,15 @@ export const createInventoryMetricThresholdExecutor = (libs: InfraBackendLibs) = id, reason, actionGroup, - additionalContext + additionalContext, + evaluationValues ) => alertWithLifecycle({ id, fields: { [ALERT_REASON]: reason, [ALERT_ACTION_GROUP]: actionGroup, + [ALERT_EVALUATION_VALUES]: evaluationValues, ...flattenAdditionalContext(additionalContext), }, }); @@ -243,7 +244,18 @@ export const createInventoryMetricThresholdExecutor = (libs: InfraBackendLibs) = new Set([...(additionalContext.tags ?? []), ...ruleTags]) ); - const alert = alertFactory(group, reason, actionGroupId, additionalContext); + const evaluationValues = results.reduce((acc: Array, result) => { + acc.push(result[group].currentValue); + return acc; + }, []); + + const alert = alertFactory( + group, + reason, + actionGroupId, + additionalContext, + evaluationValues + ); const indexedStartedDate = getAlertStartedDate(group) ?? startedAt.toISOString(); const alertUuid = getAlertUuid(group); diff --git a/x-pack/plugins/infra/server/lib/alerting/metric_threshold/metric_threshold_executor.ts b/x-pack/plugins/infra/server/lib/alerting/metric_threshold/metric_threshold_executor.ts index 28a32a8c46174..7037e6398fc24 100644 --- a/x-pack/plugins/infra/server/lib/alerting/metric_threshold/metric_threshold_executor.ts +++ b/x-pack/plugins/infra/server/lib/alerting/metric_threshold/metric_threshold_executor.ts @@ -6,7 +6,7 @@ */ import { i18n } from '@kbn/i18n'; -import { ALERT_ACTION_GROUP, ALERT_REASON } from '@kbn/rule-data-utils'; +import { ALERT_ACTION_GROUP, ALERT_EVALUATION_VALUES, ALERT_REASON } from '@kbn/rule-data-utils'; import { isEqual } from 'lodash'; import { ActionGroupIdsOf, @@ -51,8 +51,8 @@ export type MetricThresholdRuleTypeState = RuleTypeState & { groupBy?: string | string[]; filterQuery?: string; }; -export type MetricThresholdAlertState = AlertState; // no specific instace state used -export type MetricThresholdAlertContext = AlertContext; // no specific instace state used +export type MetricThresholdAlertState = AlertState; // no specific instance state used +export type MetricThresholdAlertContext = AlertContext; // no specific instance state used export const FIRED_ACTIONS_ID = 'metrics.threshold.fired'; export const WARNING_ACTIONS_ID = 'metrics.threshold.warning'; @@ -79,8 +79,7 @@ type MetricThresholdAlertFactory = ( reason: string, actionGroup: MetricThresholdActionGroup, additionalContext?: AdditionalContext | null, - threshold?: number | undefined, - value?: number | undefined + evaluationValues?: Array ) => MetricThresholdAlert; export const createMetricThresholdExecutor = (libs: InfraBackendLibs) => @@ -117,13 +116,15 @@ export const createMetricThresholdExecutor = (libs: InfraBackendLibs) => id, reason, actionGroup, - additionalContext + additionalContext, + evaluationValues ) => alertWithLifecycle({ id, fields: { [ALERT_REASON]: reason, [ALERT_ACTION_GROUP]: actionGroup, + [ALERT_EVALUATION_VALUES]: evaluationValues, ...flattenAdditionalContext(additionalContext), }, }); @@ -295,7 +296,18 @@ export const createMetricThresholdExecutor = (libs: InfraBackendLibs) => new Set([...(additionalContext.tags ?? []), ...options.rule.tags]) ); - const alert = alertFactory(`${group}`, reason, actionGroupId, additionalContext); + const evaluationValues = alertResults.reduce((acc: Array, result) => { + acc.push(result[group].currentValue); + return acc; + }, []); + + const alert = alertFactory( + `${group}`, + reason, + actionGroupId, + additionalContext, + evaluationValues + ); const alertUuid = getAlertUuid(group); scheduledActionsCount++; diff --git a/x-pack/plugins/rule_registry/common/field_map/runtime_type_from_fieldmap.ts b/x-pack/plugins/rule_registry/common/field_map/runtime_type_from_fieldmap.ts index 93e182e53af63..d914d6e7a580f 100644 --- a/x-pack/plugins/rule_registry/common/field_map/runtime_type_from_fieldmap.ts +++ b/x-pack/plugins/rule_registry/common/field_map/runtime_type_from_fieldmap.ts @@ -77,7 +77,7 @@ type CastSingle> = t.Type< >; const createCastArrayRt = >(type: T): CastArray => { - const union = t.union([type, t.array(type)]); + const union = t.union([type, t.array(t.union([type, t.nullType]))]); return new t.Type('castArray', union.is, union.validate, (a) => (Array.isArray(a) ? a : [a])); }; From 5de52e84d59c59842dd59f8965671a57a877174b Mon Sep 17 00:00:00 2001 From: Chenhui Wang <54903978+wangch079@users.noreply.github.com> Date: Thu, 20 Apr 2023 21:14:42 +0800 Subject: [PATCH 125/144] [Enterprise Search] Render indexed_document_volume in MiB (#155250) ## Part of https://github.com/elastic/connectors-python/issues/735 ## Summary The field type for `indexed_document_volume` is `integer`, which can only represent about 2GB worth of "bytes". To be able to support syncing with larger datasets, `indexed_document_volume` is updated to store the size in `MebiBytes`. This PR makes sure the size is rendered correctly in UI. ### For maintainers - [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) --- .../search_index/sync_jobs/documents_panel.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/sync_jobs/documents_panel.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/sync_jobs/documents_panel.tsx index 5323620776026..27b18d48b1743 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/sync_jobs/documents_panel.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/search_index/sync_jobs/documents_panel.tsx @@ -45,7 +45,23 @@ export const SyncJobDocumentsPanel: React.FC = (sync name: i18n.translate('xpack.enterpriseSearch.content.index.syncJobs.documents.volume', { defaultMessage: 'Volume', }), - render: (volume: number) => new ByteSizeValue(volume).toString(), + render: (volume: number) => + volume < 1 + ? i18n.translate( + 'xpack.enterpriseSearch.content.index.syncJobs.documents.volume.lessThanOneMBLabel', + { + defaultMessage: 'Less than 1mb', + } + ) + : i18n.translate( + 'xpack.enterpriseSearch.content.index.syncJobs.documents.volume.aboutLabel', + { + defaultMessage: 'About {volume}', + values: { + volume: new ByteSizeValue(volume * 1024 * 1024).toString(), + }, + } + ), }, ]; return ( From c13a3ab603c51df0b36433e0e658ead0753bb9b8 Mon Sep 17 00:00:00 2001 From: Shahzad Date: Thu, 20 Apr 2023 15:17:09 +0200 Subject: [PATCH 126/144] [Uptime] Add both both ip filters for view host in uptime location for host and monitor (#155382) --- .../synthetics/public/apps/locators/overview.test.ts | 8 +++++--- .../plugins/synthetics/public/apps/locators/overview.ts | 4 ++-- x-pack/plugins/synthetics/scripts/e2e.js | 6 +++++- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/x-pack/plugins/synthetics/public/apps/locators/overview.test.ts b/x-pack/plugins/synthetics/public/apps/locators/overview.test.ts index 14c05192482a2..a8ca60077bdf6 100644 --- a/x-pack/plugins/synthetics/public/apps/locators/overview.test.ts +++ b/x-pack/plugins/synthetics/public/apps/locators/overview.test.ts @@ -21,7 +21,9 @@ describe('uptimeOverviewNavigatorParams', () => { it('creates a path with expected search when ip is specified', async () => { const location = await uptimeOverviewNavigatorParams.getLocation({ ip: '127.0.0.1' }); - expect(location.path).toEqual(`${OVERVIEW_ROUTE}?search=monitor.ip: "127.0.0.1"`); + expect(location.path).toEqual( + `${OVERVIEW_ROUTE}?search=host.ip: "127.0.0.1" OR monitor.ip: "127.0.0.1"` + ); }); it('creates a path with expected search when hostname is specified', async () => { @@ -35,7 +37,7 @@ describe('uptimeOverviewNavigatorParams', () => { ip: '127.0.0.1', }); expect(location.path).toEqual( - `${OVERVIEW_ROUTE}?search=host.name: "elastic.co" OR host.ip: "127.0.0.1"` + `${OVERVIEW_ROUTE}?search=host.name: "elastic.co" OR host.ip: "127.0.0.1" OR monitor.ip: "127.0.0.1"` ); }); @@ -45,7 +47,7 @@ describe('uptimeOverviewNavigatorParams', () => { ip: '10.0.0.1', }); expect(location.path).toEqual( - `${OVERVIEW_ROUTE}?search=kubernetes.pod.uid: "foo" OR monitor.ip: "10.0.0.1"` + `${OVERVIEW_ROUTE}?search=kubernetes.pod.uid: "foo" OR host.ip: "10.0.0.1" OR monitor.ip: "10.0.0.1"` ); }); diff --git a/x-pack/plugins/synthetics/public/apps/locators/overview.ts b/x-pack/plugins/synthetics/public/apps/locators/overview.ts index e2267d4d0fe6d..785668d8e8c74 100644 --- a/x-pack/plugins/synthetics/public/apps/locators/overview.ts +++ b/x-pack/plugins/synthetics/public/apps/locators/overview.ts @@ -28,8 +28,8 @@ async function navigate({ if (pod) searchParams.push(formatSearchKey('kubernetes.pod.uid', pod)); if (ip) { - const root = host ? 'host' : 'monitor'; - searchParams.push(formatSearchKey(`${root}.ip`, ip)); + searchParams.push(formatSearchKey(`host.ip`, ip)); + searchParams.push(formatSearchKey(`monitor.ip`, ip)); } const searchString = searchParams.join(' OR '); diff --git a/x-pack/plugins/synthetics/scripts/e2e.js b/x-pack/plugins/synthetics/scripts/e2e.js index 69a1f3319491e..4edd824b448e3 100644 --- a/x-pack/plugins/synthetics/scripts/e2e.js +++ b/x-pack/plugins/synthetics/scripts/e2e.js @@ -12,4 +12,8 @@ const path = require('path'); const e2eDir = path.join(__dirname, '../e2e'); -executeSyntheticsRunner(e2eDir); +try { + executeSyntheticsRunner(e2eDir); +} catch (e) { + console.log(e); +} From c936210ba5493809d2ad5016efde6560102856bf Mon Sep 17 00:00:00 2001 From: Shahzad Date: Thu, 20 Apr 2023 15:17:43 +0200 Subject: [PATCH 127/144] [Synthetics] Auto enable monitor management where possible (#155231) --- .../synthetics_enablement/labels.ts | 24 ++-------- .../synthetics_enablement.tsx | 2 +- .../routes/synthetics_service/enablement.ts | 26 ++++++++--- .../server/synthetics_service/get_api_key.ts | 12 ++++- .../get_service_locations.ts | 3 +- .../synthetics_service.test.ts | 4 +- .../synthetics_service/synthetics_service.ts | 4 +- .../translations/translations/fr-FR.json | 6 +-- .../translations/translations/ja-JP.json | 6 +-- .../translations/translations/zh-CN.json | 6 +-- .../api_integration/apis/synthetics/config.ts | 10 ++++ .../apis/synthetics/synthetics_enablement.ts | 46 ++++++++++++++----- 12 files changed, 90 insertions(+), 59 deletions(-) diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/labels.ts b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/labels.ts index ad7220e328f3b..961e0c3782e81 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/labels.ts +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/labels.ts @@ -7,20 +7,6 @@ import { i18n } from '@kbn/i18n'; -export const SYNTHETICS_ENABLE_FAILURE = i18n.translate( - 'xpack.synthetics.monitorManagement.syntheticsEnabledFailure', - { - defaultMessage: 'Monitor Management was not able to be enabled. Please contact support.', - } -); - -export const SYNTHETICS_DISABLE_FAILURE = i18n.translate( - 'xpack.synthetics.monitorManagement.syntheticsDisabledFailure', - { - defaultMessage: 'Monitor Management was not able to be disabled. Please contact support.', - } -); - export const SYNTHETICS_ENABLE_SUCCESS = i18n.translate( 'xpack.synthetics.monitorManagement.syntheticsEnableSuccess', { @@ -42,10 +28,10 @@ export const MONITOR_MANAGEMENT_ENABLEMENT_LABEL = i18n.translate( } ); -export const MONITOR_MANAGEMENT_DISABLED_LABEL = i18n.translate( - 'xpack.synthetics.monitorManagement.emptyState.enablement.disabled.title', +export const SYNTHETICS_APP_DISABLED_LABEL = i18n.translate( + 'xpack.synthetics.emptyState.enablement.disabled.title', { - defaultMessage: 'Monitor Management is disabled', + defaultMessage: 'Synthetics App is disabled', } ); @@ -58,10 +44,10 @@ export const MONITOR_MANAGEMENT_ENABLEMENT_MESSAGE = i18n.translate( ); export const MONITOR_MANAGEMENT_DISABLED_MESSAGE = i18n.translate( - 'xpack.synthetics.monitorManagement.emptyState.enablement.disabledDescription', + 'xpack.synthetics.emptyState.enablement.disabledDescription', { defaultMessage: - 'Monitor Management is currently disabled. Monitor Management allows you to run lightweight and real-browser monitors from hosted testing locations around the world. To enable Monitor Management, please contact an administrator.', + 'Synthetics App is currently disabled. Synthetics App allows you to run lightweight and real-browser monitors from hosted testing locations around the world. To enable Synthetics App, please contact an administrator.', } ); diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/synthetics_enablement.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/synthetics_enablement.tsx index 09496214c45ac..b1efd88590588 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/synthetics_enablement.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/monitors_page/management/synthetics_enablement/synthetics_enablement.tsx @@ -61,7 +61,7 @@ export const EnablementEmptyState = () => {

    {canEnable ? labels.MONITOR_MANAGEMENT_ENABLEMENT_LABEL - : labels.MONITOR_MANAGEMENT_DISABLED_LABEL} + : labels.SYNTHETICS_APP_DISABLED_LABEL}

    } body={ diff --git a/x-pack/plugins/synthetics/server/routes/synthetics_service/enablement.ts b/x-pack/plugins/synthetics/server/routes/synthetics_service/enablement.ts index defd82c415726..c4561f3ee9e00 100644 --- a/x-pack/plugins/synthetics/server/routes/synthetics_service/enablement.ts +++ b/x-pack/plugins/synthetics/server/routes/synthetics_service/enablement.ts @@ -19,12 +19,24 @@ export const getSyntheticsEnablementRoute: UMRestApiRouteFactory = (libs) => ({ method: 'GET', path: API_URLS.SYNTHETICS_ENABLEMENT, validate: {}, - handler: async ({ response, server }): Promise => { + handler: async ({ savedObjectsClient, request, server }): Promise => { try { - return response.ok({ - body: await libs.requests.getSyntheticsEnablement({ + const result = await libs.requests.getSyntheticsEnablement({ + server, + }); + const { canEnable, isEnabled } = result; + if (canEnable && !isEnabled && server.config.service?.manifestUrl) { + await generateAndSaveServiceAPIKey({ + request, + authSavedObjectsClient: savedObjectsClient, server, - }), + }); + } else { + return result; + } + + return libs.requests.getSyntheticsEnablement({ + server, }); } catch (e) { server.logger.error(e); @@ -69,12 +81,12 @@ export const enableSyntheticsRoute: UMRestApiRouteFactory = (libs) => ({ method: 'POST', path: API_URLS.SYNTHETICS_ENABLEMENT, validate: {}, - handler: async ({ request, response, server }): Promise => { - const { authSavedObjectsClient, logger } = server; + handler: async ({ request, response, server, savedObjectsClient }): Promise => { + const { logger } = server; try { await generateAndSaveServiceAPIKey({ request, - authSavedObjectsClient, + authSavedObjectsClient: savedObjectsClient, server, }); return response.ok({ diff --git a/x-pack/plugins/synthetics/server/synthetics_service/get_api_key.ts b/x-pack/plugins/synthetics/server/synthetics_service/get_api_key.ts index f3363b4d18a52..0bc4f656901f4 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/get_api_key.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/get_api_key.ts @@ -158,7 +158,17 @@ export const generateAndSaveServiceAPIKey = async ({ }; export const getSyntheticsEnablement = async ({ server }: { server: UptimeServerSetup }) => { - const { security } = server; + const { security, config } = server; + + if (!config.service?.manifestUrl) { + return { + canEnable: true, + canManageApiKeys: true, + isEnabled: true, + isValidApiKey: true, + areApiKeysEnabled: true, + }; + } const [apiKey, hasPrivileges, areApiKeysEnabled] = await Promise.all([ getAPIKeyForSyntheticsService({ server }), diff --git a/x-pack/plugins/synthetics/server/synthetics_service/get_service_locations.ts b/x-pack/plugins/synthetics/server/synthetics_service/get_service_locations.ts index 3ee44e9b999dd..5fdf931b5605e 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/get_service_locations.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/get_service_locations.ts @@ -33,8 +33,9 @@ export async function getServiceLocations(server: UptimeServerSetup) { if (server.config.service?.devUrl) { locations = [getDevLocation(server.config.service.devUrl)]; } + const manifestUrl = server.config.service?.manifestUrl; - if (!server.config.service?.manifestUrl) { + if (!manifestUrl || manifestUrl === 'mockDevUrl') { return { locations }; } diff --git a/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.test.ts b/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.test.ts index 9ec587cab93c5..35e31add55aa0 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.test.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.test.ts @@ -100,7 +100,9 @@ describe('SyntheticsService', () => { status: LocationStatus.GA, }; }); - serverMock.config = { service: { devUrl: 'http://localhost' } }; + serverMock.config = { + service: { devUrl: 'http://localhost', manifestUrl: 'https://test-manifest.com' }, + }; if (serverMock.savedObjectsClient) { serverMock.savedObjectsClient.find = jest.fn().mockResolvedValue({ saved_objects: [ diff --git a/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts b/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts index dd3af249aa3e7..bd9c0032984c3 100644 --- a/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts +++ b/x-pack/plugins/synthetics/server/synthetics_service/synthetics_service.ts @@ -174,7 +174,7 @@ export class SyntheticsService { service.isAllowed = allowed; service.signupUrl = signupUrl; - if (service.isAllowed) { + if (service.isAllowed && service.config.manifestUrl) { service.setupIndexTemplates(); await service.pushConfigs(); } @@ -349,7 +349,7 @@ export class SyntheticsService { subject.subscribe(async (monitors) => { try { - if (monitors.length === 0) { + if (monitors.length === 0 || !this.config.manifestUrl) { return; } diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 79465e4956e51..6a0d6b7aa138a 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -35020,8 +35020,6 @@ "xpack.synthetics.monitorManagement.editMonitorError": "Erreur lors du chargement de la liste Gestion des moniteurs", "xpack.synthetics.monitorManagement.editMonitorError.description": "Les paramètres de Gestion des moniteurs n'ont pas pu être chargés. Veuillez contacter le support technique.", "xpack.synthetics.monitorManagement.emptyState.enablement": "Activez la Gestion des moniteurs pour exécuter des moniteurs légers et basés sur un navigateur réel à partir d'emplacements de test hébergés dans le monde entier. L'activation de la Gestion des moniteurs générera une clé d'API pour autoriser le service Synthetics à mettre à jour votre cluster Elasticsearch.", - "xpack.synthetics.monitorManagement.emptyState.enablement.disabled.title": "La Gestion des moniteurs est désactivée", - "xpack.synthetics.monitorManagement.emptyState.enablement.disabledDescription": "La Gestion des moniteurs est actuellement désactivée. La Gestion des moniteurs vous permet d'exécuter des moniteurs légers et basés sur un navigateur réel à partir d'emplacements de test hébergés dans le monde entier. Pour activer la Gestion des moniteurs, veuillez contacter un administrateur.", "xpack.synthetics.monitorManagement.emptyState.enablement.doc": "Lisez les documents", "xpack.synthetics.monitorManagement.emptyState.enablement.enabled.title": "Activer la Gestion des moniteurs", "xpack.synthetics.monitorManagement.emptyState.enablement.learnMore": "Envie d'en savoir plus ?", @@ -35090,9 +35088,7 @@ "xpack.synthetics.monitorManagement.startAddingLocationsDescription": "Les emplacements privés vous permettent d'exploiter des moniteurs depuis vos propres locaux. Ils nécessitent un agent Elastic et une politique d'agent que vous pouvez contrôler et maintenir via Fleet.", "xpack.synthetics.monitorManagement.steps": "Étapes", "xpack.synthetics.monitorManagement.summary.heading": "Résumé", - "xpack.synthetics.monitorManagement.syntheticsDisabledFailure": "La Gestion des moniteurs n'a pas pu être désactivée. Veuillez contacter le support technique.", "xpack.synthetics.monitorManagement.syntheticsDisabledSuccess": "Gestion des moniteurs désactivée avec succès.", - "xpack.synthetics.monitorManagement.syntheticsEnabledFailure": "La Gestion des moniteurs n'a pas pu être activée. Veuillez contacter le support technique.", "xpack.synthetics.monitorManagement.syntheticsEnableLabel.invalidKey": "Activer la Gestion des moniteurs", "xpack.synthetics.monitorManagement.syntheticsEnableLabel.management": "Activer la Gestion des moniteurs", "xpack.synthetics.monitorManagement.syntheticsEnableSuccess": "Gestion des moniteurs activée avec succès.", @@ -38041,4 +38037,4 @@ "xpack.painlessLab.title": "Painless Lab", "xpack.painlessLab.walkthroughButtonLabel": "Présentation" } -} \ No newline at end of file +} diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 956e0fee559b4..f18a3f2f1916b 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -34999,8 +34999,6 @@ "xpack.synthetics.monitorManagement.editMonitorError": "モニター管理の読み込みエラー", "xpack.synthetics.monitorManagement.editMonitorError.description": "モニター管理設定を読み込めませんでした。サポートに問い合わせてください。", "xpack.synthetics.monitorManagement.emptyState.enablement": "モニター管理を有効にすると、世界中のホスティングされたテスト場所から軽量でリアルなブラウザーモニターを実行できます。モニター管理を有効にすると、APIキーが生成され、SyntheticsサービスはElasticsearchクラスターに書き込むことができます。", - "xpack.synthetics.monitorManagement.emptyState.enablement.disabled.title": "モニター管理が無効です", - "xpack.synthetics.monitorManagement.emptyState.enablement.disabledDescription": "モニター管理は現在無効です。モニター管理では、世界中のホスティングされたテスト場所から軽量でリアルなブラウザーモニターを実行できます。モニター管理を有効にするには、管理者に連絡してください。", "xpack.synthetics.monitorManagement.emptyState.enablement.doc": "ドキュメントを読む", "xpack.synthetics.monitorManagement.emptyState.enablement.enabled.title": "モニター管理を有効にする", "xpack.synthetics.monitorManagement.emptyState.enablement.learnMore": "詳細について", @@ -35069,9 +35067,7 @@ "xpack.synthetics.monitorManagement.startAddingLocationsDescription": "非公開の場所では、独自の施設からモニターを実行できます。Fleet経由で制御および保守できるElasticエージェントとエージェントポリシーが必要です。", "xpack.synthetics.monitorManagement.steps": "ステップ", "xpack.synthetics.monitorManagement.summary.heading": "まとめ", - "xpack.synthetics.monitorManagement.syntheticsDisabledFailure": "モニター管理を無効にできませんでした。サポートに問い合わせてください。", "xpack.synthetics.monitorManagement.syntheticsDisabledSuccess": "モニター管理は正常に無効にされました。", - "xpack.synthetics.monitorManagement.syntheticsEnabledFailure": "モニター管理を有効にできませんでした。サポートに問い合わせてください。", "xpack.synthetics.monitorManagement.syntheticsEnableLabel.invalidKey": "モニター管理を有効にする", "xpack.synthetics.monitorManagement.syntheticsEnableLabel.management": "モニター管理を有効にする", "xpack.synthetics.monitorManagement.syntheticsEnableSuccess": "モニター管理は正常に有効にされました。", @@ -38009,4 +38005,4 @@ "xpack.painlessLab.title": "Painless Lab", "xpack.painlessLab.walkthroughButtonLabel": "実地検証" } -} \ No newline at end of file +} diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index bc9ce83dea3a2..769dd6e40b48e 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -35015,8 +35015,6 @@ "xpack.synthetics.monitorManagement.editMonitorError": "加载监测管理时出错", "xpack.synthetics.monitorManagement.editMonitorError.description": "无法加载监测管理设置。请联系支持人员。", "xpack.synthetics.monitorManagement.emptyState.enablement": "启用监测管理以从全球托管测试地点运行轻量级、真正的浏览器监测。启用监测管理将生成 API 密钥,以便 Synthetics 服务回写 Elasticsearch 集群。", - "xpack.synthetics.monitorManagement.emptyState.enablement.disabled.title": "已禁用监测管理", - "xpack.synthetics.monitorManagement.emptyState.enablement.disabledDescription": "监测管理当前处于禁用状态。通过监测管理,您可以从全球托管测试地点运行轻量级、真正的浏览器监测。要启用监测管理,请与管理员联系。", "xpack.synthetics.monitorManagement.emptyState.enablement.doc": "阅读文档", "xpack.synthetics.monitorManagement.emptyState.enablement.enabled.title": "启用监测管理", "xpack.synthetics.monitorManagement.emptyState.enablement.learnMore": "希望了解详情?", @@ -35085,9 +35083,7 @@ "xpack.synthetics.monitorManagement.startAddingLocationsDescription": "专用位置供您从自己的场所运行监测。它们需要可以通过 Fleet 进行控制和维护的 Elastic 代理和代理策略。", "xpack.synthetics.monitorManagement.steps": "步长", "xpack.synthetics.monitorManagement.summary.heading": "摘要", - "xpack.synthetics.monitorManagement.syntheticsDisabledFailure": "无法禁用监测管理。请联系支持人员。", "xpack.synthetics.monitorManagement.syntheticsDisabledSuccess": "已成功禁用监测管理。", - "xpack.synthetics.monitorManagement.syntheticsEnabledFailure": "无法启用监测管理。请联系支持人员。", "xpack.synthetics.monitorManagement.syntheticsEnableLabel.invalidKey": "启用监测管理", "xpack.synthetics.monitorManagement.syntheticsEnableLabel.management": "启用监测管理", "xpack.synthetics.monitorManagement.syntheticsEnableSuccess": "已成功启用监测管理。", @@ -38036,4 +38032,4 @@ "xpack.painlessLab.title": "Painless 实验室", "xpack.painlessLab.walkthroughButtonLabel": "指导" } -} \ No newline at end of file +} diff --git a/x-pack/test/api_integration/apis/synthetics/config.ts b/x-pack/test/api_integration/apis/synthetics/config.ts index 5f335f116fefe..c2e5b5dec912c 100644 --- a/x-pack/test/api_integration/apis/synthetics/config.ts +++ b/x-pack/test/api_integration/apis/synthetics/config.ts @@ -12,6 +12,16 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) { return { ...baseIntegrationTestsConfig.getAll(), + kbnTestServer: { + ...baseIntegrationTestsConfig.get('kbnTestServer'), + serverArgs: [ + ...baseIntegrationTestsConfig.get('kbnTestServer.serverArgs'), + '--xpack.uptime.service.password=test', + '--xpack.uptime.service.username=localKibanaIntegrationTestsUser', + '--xpack.uptime.service.devUrl=mockDevUrl', + '--xpack.uptime.service.manifestUrl=mockDevUrl', + ], + }, testFiles: [require.resolve('.')], }; } diff --git a/x-pack/test/api_integration/apis/synthetics/synthetics_enablement.ts b/x-pack/test/api_integration/apis/synthetics/synthetics_enablement.ts index dac32af21106a..d031a6c505c8f 100644 --- a/x-pack/test/api_integration/apis/synthetics/synthetics_enablement.ts +++ b/x-pack/test/api_integration/apis/synthetics/synthetics_enablement.ts @@ -11,7 +11,7 @@ import expect from '@kbn/expect'; import { FtrProviderContext } from '../../ftr_provider_context'; export default function ({ getService }: FtrProviderContext) { - describe('/internal/uptime/service/enablement', () => { + describe('SyntheticsEnablement', () => { const supertestWithAuth = getService('supertest'); const supertest = getService('supertestWithoutAuth'); const security = getService('security'); @@ -22,7 +22,7 @@ export default function ({ getService }: FtrProviderContext) { }); describe('[GET] - /internal/uptime/service/enablement', () => { - ['manage_security', 'manage_api_key', 'manage_own_api_key'].forEach((privilege) => { + ['manage_security', 'manage_own_api_key', 'manage_api_key'].forEach((privilege) => { it(`returns response for an admin with privilege ${privilege}`, async () => { const username = 'admin'; const roleName = `synthetics_admin-${privilege}`; @@ -59,9 +59,16 @@ export default function ({ getService }: FtrProviderContext) { areApiKeysEnabled: true, canManageApiKeys: true, canEnable: true, - isEnabled: false, - isValidApiKey: false, + isEnabled: true, + isValidApiKey: true, }); + if (privilege !== 'manage_own_api_key') { + await supertest + .delete(API_URLS.SYNTHETICS_ENABLEMENT) + .auth(username, password) + .set('kbn-xsrf', 'true') + .expect(200); + } } finally { await security.user.delete(username); await security.role.delete(roleName); @@ -247,11 +254,12 @@ export default function ({ getService }: FtrProviderContext) { .auth(username, password) .set('kbn-xsrf', 'true') .expect(200); - await supertest + const delResponse = await supertest .delete(API_URLS.SYNTHETICS_ENABLEMENT) .auth(username, password) .set('kbn-xsrf', 'true') .expect(200); + expect(delResponse.body).eql({}); const apiResponse = await supertest .get(API_URLS.SYNTHETICS_ENABLEMENT) .auth(username, password) @@ -262,8 +270,8 @@ export default function ({ getService }: FtrProviderContext) { areApiKeysEnabled: true, canManageApiKeys: true, canEnable: true, - isEnabled: false, - isValidApiKey: false, + isEnabled: true, + isValidApiKey: true, }); } finally { await security.user.delete(username); @@ -354,7 +362,21 @@ export default function ({ getService }: FtrProviderContext) { full_name: 'a kibana user', }); - // can disable synthetics in default space when enabled in a non default space + // can enable synthetics in default space when enabled in a non default space + const apiResponseGet = await supertest + .get(`/s/${SPACE_ID}${API_URLS.SYNTHETICS_ENABLEMENT}`) + .auth(username, password) + .set('kbn-xsrf', 'true') + .expect(200); + + expect(apiResponseGet.body).eql({ + areApiKeysEnabled: true, + canManageApiKeys: true, + canEnable: true, + isEnabled: true, + isValidApiKey: true, + }); + await supertest .post(`/s/${SPACE_ID}${API_URLS.SYNTHETICS_ENABLEMENT}`) .auth(username, password) @@ -375,8 +397,8 @@ export default function ({ getService }: FtrProviderContext) { areApiKeysEnabled: true, canManageApiKeys: true, canEnable: true, - isEnabled: false, - isValidApiKey: false, + isEnabled: true, + isValidApiKey: true, }); // can disable synthetics in non default space when enabled in default space @@ -400,8 +422,8 @@ export default function ({ getService }: FtrProviderContext) { areApiKeysEnabled: true, canManageApiKeys: true, canEnable: true, - isEnabled: false, - isValidApiKey: false, + isEnabled: true, + isValidApiKey: true, }); } finally { await security.user.delete(username); From 517b0a0fb326017804f7acb8841962661bd17037 Mon Sep 17 00:00:00 2001 From: Jean-Louis Leysens Date: Thu, 20 Apr 2023 15:20:09 +0200 Subject: [PATCH 128/144] [HTTP] Switch default handler resolution based on Kibana config (#155142) --- .../src/router.ts | 12 ++- .../core_versioned_route.test.ts | 2 +- .../versioned_router/core_versioned_route.ts | 1 - .../versioned_router/core_versioned_router.ts | 2 +- .../src/http_service.ts | 3 +- packages/kbn-config/src/env.ts | 1 + .../http/versioned_router.test.ts | 76 +++++++++++++++---- 7 files changed, 74 insertions(+), 23 deletions(-) diff --git a/packages/core/http/core-http-router-server-internal/src/router.ts b/packages/core/http/core-http-router-server-internal/src/router.ts index 4b2519c6bc80f..0a0353fbae7eb 100644 --- a/packages/core/http/core-http-router-server-internal/src/router.ts +++ b/packages/core/http/core-http-router-server-internal/src/router.ts @@ -122,7 +122,9 @@ function validOptions( /** @internal */ interface RouterOptions { /** Whether we are running in development */ - isDev: boolean; + isDev?: boolean; + /** Whether we are running in a serverless */ + isServerless?: boolean; } /** @@ -142,7 +144,7 @@ export class Router, - private readonly options: RouterOptions = { isDev: false } + private readonly options: RouterOptions = { isDev: false, isServerless: false } ) { const buildMethod = (method: Method) => @@ -216,7 +218,11 @@ export class Router = undefined; public get versioned(): VersionedRouter { if (this.versionedRouter === undefined) { - this.versionedRouter = CoreVersionedRouter.from({ router: this, isDev: this.options.isDev }); + this.versionedRouter = CoreVersionedRouter.from({ + router: this, + isDev: this.options.isDev, + defaultHandlerResolutionStrategy: this.options.isServerless ? 'newest' : 'oldest', + }); } return this.versionedRouter; } diff --git a/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts b/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts index e95f4cf82a309..28869506316f9 100644 --- a/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts +++ b/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.test.ts @@ -194,7 +194,7 @@ describe('Versioned route', () => { ); const kibanaResponse = await handler!( - { core: { env: { mode: { dev: true } } } } as any, + {} as any, createRequest({ version: '1', body: { foo: 1 }, diff --git a/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.ts b/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.ts index 4d73b09563077..e053444d72551 100644 --- a/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.ts +++ b/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_route.ts @@ -5,7 +5,6 @@ * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ - import { schema } from '@kbn/config-schema'; import { ELASTIC_HTTP_VERSION_HEADER } from '@kbn/core-http-common'; import type { diff --git a/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_router.ts b/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_router.ts index 2d148ab461a6e..79abccea59dd8 100644 --- a/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_router.ts +++ b/packages/core/http/core-http-router-server-internal/src/versioned_router/core_versioned_router.ts @@ -9,7 +9,7 @@ import type { IRouter } from '@kbn/core-http-server'; import type { VersionedRouter, VersionedRoute, VersionedRouteConfig } from '@kbn/core-http-server'; import { CoreVersionedRoute } from './core_versioned_route'; -import { HandlerResolutionStrategy, Method, VersionedRouterRoute } from './types'; +import type { HandlerResolutionStrategy, Method, VersionedRouterRoute } from './types'; /** @internal */ interface Dependencies { diff --git a/packages/core/http/core-http-server-internal/src/http_service.ts b/packages/core/http/core-http-server-internal/src/http_service.ts index 5c1ec864b2141..2afc4150108df 100644 --- a/packages/core/http/core-http-server-internal/src/http_service.ts +++ b/packages/core/http/core-http-server-internal/src/http_service.ts @@ -129,7 +129,7 @@ export class HttpService path, this.log, prebootServerRequestHandlerContext.createHandler.bind(null, this.coreContext.coreId), - { isDev: this.env.mode.dev } + { isDev: this.env.mode.dev, isServerless: this.env.cliArgs.serverless } ); registerCallback(router); @@ -175,6 +175,7 @@ export class HttpService const enhanceHandler = this.requestHandlerContext!.createHandler.bind(null, pluginId); const router = new Router(path, this.log, enhanceHandler, { isDev: this.env.mode.dev, + isServerless: this.env.cliArgs.serverless, }); registerRouter(router); return router; diff --git a/packages/kbn-config/src/env.ts b/packages/kbn-config/src/env.ts index dde77b26fa86f..3c256e8a95375 100644 --- a/packages/kbn-config/src/env.ts +++ b/packages/kbn-config/src/env.ts @@ -34,6 +34,7 @@ export interface CliArgs { disableOptimizer: boolean; cache: boolean; dist: boolean; + serverless?: boolean; } /** @internal */ diff --git a/src/core/server/integration_tests/http/versioned_router.test.ts b/src/core/server/integration_tests/http/versioned_router.test.ts index 4206bed642bba..d8dc15d3a2d1c 100644 --- a/src/core/server/integration_tests/http/versioned_router.test.ts +++ b/src/core/server/integration_tests/http/versioned_router.test.ts @@ -15,6 +15,7 @@ import { contextServiceMock } from '@kbn/core-http-context-server-mocks'; import { createHttpServer } from '@kbn/core-http-server-mocks'; import type { HttpService } from '@kbn/core-http-server-internal'; import type { IRouterWithVersion } from '@kbn/core-http-server'; +import type { CliArgs } from '@kbn/config'; let server: HttpService; let logger: ReturnType; @@ -23,18 +24,26 @@ describe('Routing versioned requests', () => { let router: IRouterWithVersion; let supertest: Supertest.SuperTest; + async function setupServer(cliArgs: Partial = {}) { + logger = loggingSystemMock.create(); + await server?.stop(); // stop the already started server + server = createHttpServer({ + logger, + env: createTestEnv({ envOptions: getEnvOptions({ cliArgs }) }), + }); + await server.preboot({ context: contextServiceMock.createPrebootContract() }); + const { server: innerServer, createRouter } = await server.setup(setupDeps); + router = createRouter('/'); + supertest = Supertest(innerServer.listener); + } + const setupDeps = { context: contextServiceMock.createSetupContract(), executionContext: executionContextServiceMock.createInternalSetupContract(), }; beforeEach(async () => { - logger = loggingSystemMock.create(); - server = createHttpServer({ logger }); - await server.preboot({ context: contextServiceMock.createPrebootContract() }); - const { server: innerServer, createRouter } = await server.setup(setupDeps); - router = createRouter('/'); - supertest = Supertest(innerServer.listener); + await setupServer(); }); afterEach(async () => { @@ -191,17 +200,8 @@ describe('Routing versioned requests', () => { }); it('does not run response validation in prod', async () => { - logger = loggingSystemMock.create(); - await server.stop(); // stop the already started server - server = createHttpServer({ - logger, - env: createTestEnv({ envOptions: getEnvOptions({ cliArgs: { dev: false } }) }), - }); - await server.preboot({ context: contextServiceMock.createPrebootContract() }); - const { server: innerServer, createRouter } = await server.setup(setupDeps); + await setupServer({ dev: false }); - router = createRouter('/'); - supertest = Supertest(innerServer.listener); router.versioned .get({ path: '/my-path', access: 'internal' }) .addVersion( @@ -237,4 +237,48 @@ describe('Routing versioned requests', () => { expect.objectContaining({ message: expect.stringMatching(/No handlers registered/) }) ); }); + + it('resolves the newest handler on serverless', async () => { + await setupServer({ serverless: true }); + + router.versioned + .get({ path: '/my-path', access: 'public' }) + .addVersion({ validate: false, version: '2023-04-04' }, async (ctx, req, res) => { + return res.ok({ body: { v: 'oldest' } }); + }) + .addVersion({ validate: false, version: '2024-04-04' }, async (ctx, req, res) => { + return res.ok({ body: { v: 'newest' } }); + }); + + await server.start(); + + await expect( + supertest + .get('/my-path') + .expect(200) + .then(({ body }) => body.v) + ).resolves.toEqual('newest'); + }); + + it('resolves the oldest handler on anything other than serverless', async () => { + await setupServer({ serverless: false }); + + router.versioned + .get({ path: '/my-path', access: 'public' }) + .addVersion({ validate: false, version: '2023-04-04' }, async (ctx, req, res) => { + return res.ok({ body: { v: 'oldest' } }); + }) + .addVersion({ validate: false, version: '2024-04-04' }, async (ctx, req, res) => { + return res.ok({ body: { v: 'newest' } }); + }); + + await server.start(); + + await expect( + supertest + .get('/my-path') + .expect(200) + .then(({ body }) => body.v) + ).resolves.toEqual('oldest'); + }); }); From d8fa5d6831e71b8c8559ac7128f247b3ae98532c Mon Sep 17 00:00:00 2001 From: Rodney Norris Date: Thu, 20 Apr 2023 08:22:32 -0500 Subject: [PATCH 129/144] [Enterprise Search][Search Application] Rename API page to Connect (#155278) ## Summary Renamed the engine API page to Connect and introduced a tab for the API so we can add a Documentation tab next. ### Screenshots image --- .../engine_api_integration.tsx | 0 .../engine_api_logic.ts | 0 .../engine/engine_connect/engine_connect.tsx | 102 ++++++++++++++++++ ...enerate_engine_api_key_modal.logic.test.ts | 0 .../generate_engine_api_key_modal.logic.ts | 0 .../generate_engine_api_key_modal.test.tsx | 0 .../generate_engine_api_key_modal.tsx | 0 .../search_application_api.tsx} | 27 +---- .../components/engine/engine_error.tsx | 7 +- .../components/engine/engine_indices.tsx | 10 +- .../components/engine/engine_schema.tsx | 10 +- .../engine_search_preview/api_call_flyout.tsx | 2 +- .../engine_search_preview.tsx | 10 +- .../components/engine/engine_view.tsx | 53 ++++----- .../enterprise_search_content/routes.ts | 10 +- .../kibana_chrome/generate_breadcrumbs.ts | 6 +- .../shared/kibana_chrome/set_chrome.tsx | 7 +- .../applications/shared/layout/nav.test.tsx | 6 +- .../public/applications/shared/layout/nav.tsx | 15 ++- .../translations/translations/fr-FR.json | 2 - .../translations/translations/ja-JP.json | 2 - .../translations/translations/zh-CN.json | 2 - 22 files changed, 184 insertions(+), 87 deletions(-) rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api => engine_connect}/engine_api_integration.tsx (100%) rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api => engine_connect}/engine_api_logic.ts (100%) create mode 100644 x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_connect.tsx rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api => engine_connect}/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.test.ts (100%) rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api => engine_connect}/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.ts (100%) rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api => engine_connect}/generate_engine_api_key_modal/generate_engine_api_key_modal.test.tsx (100%) rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api => engine_connect}/generate_engine_api_key_modal/generate_engine_api_key_modal.tsx (100%) rename x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/{engine_api/engine_api.tsx => engine_connect/search_application_api.tsx} (88%) diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api_integration.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_api_integration.tsx similarity index 100% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api_integration.tsx rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_api_integration.tsx diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api_logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_api_logic.ts similarity index 100% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api_logic.ts rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_api_logic.ts diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_connect.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_connect.tsx new file mode 100644 index 0000000000000..2dd55304b6035 --- /dev/null +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/engine_connect.tsx @@ -0,0 +1,102 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; +import { useParams } from 'react-router-dom'; + +import { useValues } from 'kea'; + +import { i18n } from '@kbn/i18n'; + +import { generateEncodedPath } from '../../../../shared/encode_path_params'; +import { KibanaLogic } from '../../../../shared/kibana'; +import { + SEARCH_APPLICATION_CONNECT_PATH, + EngineViewTabs, + SearchApplicationConnectTabs, +} from '../../../routes'; +import { EnterpriseSearchEnginesPageTemplate } from '../../layout/engines_page_template'; + +import { EngineError } from '../engine_error'; +import { EngineViewLogic } from '../engine_view_logic'; + +import { SearchApplicationAPI } from './search_application_api'; + +const pageTitle = i18n.translate( + 'xpack.enterpriseSearch.content.searchApplications.connect.pageTitle', + { + defaultMessage: 'Connect', + } +); +const API_TAB_TITLE = i18n.translate( + 'xpack.enterpriseSearch.content.searchApplications.connect.apiTabTitle', + { + defaultMessage: 'API', + } +); +const ConnectTabs: string[] = Object.values(SearchApplicationConnectTabs); +const getTabBreadCrumb = (tabId: string) => { + switch (tabId) { + case SearchApplicationConnectTabs.API: + return API_TAB_TITLE; + default: + return tabId; + } +}; + +export const EngineConnect: React.FC = () => { + const { engineName, isLoadingEngine } = useValues(EngineViewLogic); + const { connectTabId = SearchApplicationConnectTabs.API } = useParams<{ + connectTabId?: string; + }>(); + const onTabClick = (tab: SearchApplicationConnectTabs) => () => { + KibanaLogic.values.navigateToUrl( + generateEncodedPath(SEARCH_APPLICATION_CONNECT_PATH, { + engineName, + connectTabId: tab, + }) + ); + }; + if (!ConnectTabs.includes(connectTabId)) { + return ( + + + + ); + } + + return ( + + {connectTabId === SearchApplicationConnectTabs.API && } + + ); +}; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.test.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.test.ts similarity index 100% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.test.ts rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.test.ts diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.ts similarity index 100% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.ts rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.logic.ts diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.test.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.test.tsx similarity index 100% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.test.tsx rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.test.tsx diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.tsx similarity index 100% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/generate_engine_api_key_modal/generate_engine_api_key_modal.tsx rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/generate_engine_api_key_modal/generate_engine_api_key_modal.tsx diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/search_application_api.tsx similarity index 88% rename from x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api.tsx rename to x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/search_application_api.tsx index aad7e84d99084..c51654f0c557d 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_api/engine_api.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_connect/search_application_api.tsx @@ -19,7 +19,6 @@ import { EuiSteps, EuiText, } from '@elastic/eui'; - import { i18n } from '@kbn/i18n'; import { ANALYTICS_PLUGIN } from '../../../../../../common/constants'; @@ -29,26 +28,19 @@ import { generateEncodedPath } from '../../../../shared/encode_path_params'; import { getEnterpriseSearchUrl } from '../../../../shared/enterprise_search_url'; import { KibanaLogic } from '../../../../shared/kibana'; -import { EngineViewTabs } from '../../../routes'; -import { EnterpriseSearchEnginesPageTemplate } from '../../layout/engines_page_template'; - -import { EngineIndicesLogic } from '../engine_indices_logic'; import { EngineViewLogic } from '../engine_view_logic'; import { EngineApiIntegrationStage } from './engine_api_integration'; import { EngineApiLogic } from './engine_api_logic'; import { GenerateEngineApiKeyModal } from './generate_engine_api_key_modal/generate_engine_api_key_modal'; -export const EngineAPI: React.FC = () => { - const { engineName, isLoadingEngine } = useValues(EngineViewLogic); - const { engineData } = useValues(EngineIndicesLogic); +export const SearchApplicationAPI = () => { + const { engineName } = useValues(EngineViewLogic); const { isGenerateModalOpen } = useValues(EngineApiLogic); const { openGenerateModal, closeGenerateModal } = useActions(EngineApiLogic); const enterpriseSearchUrl = getEnterpriseSearchUrl(); const { navigateToUrl } = useValues(KibanaLogic); - if (!engineData) return null; - const steps = [ { title: i18n.translate('xpack.enterpriseSearch.content.engine.api.step1.title', { @@ -186,22 +178,11 @@ export const EngineAPI: React.FC = () => { ]; return ( - + <> {isGenerateModalOpen ? ( ) : null} - + ); }; diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_error.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_error.tsx index 4b620c7a3d505..b8be4c7652e1b 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_error.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_error.tsx @@ -18,8 +18,11 @@ import { SendEnterpriseSearchTelemetry } from '../../../shared/telemetry'; import { ENGINES_PATH } from '../../routes'; -export const EngineError: React.FC<{ error: HttpError | undefined }> = ({ error }) => { - if (error?.body?.statusCode === 404) { +export const EngineError: React.FC<{ error?: HttpError; notFound?: boolean }> = ({ + error, + notFound, +}) => { + if (notFound || error?.body?.statusCode === 404) { return ( <> diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_indices.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_indices.tsx index f18fd66ff5f94..116430e4d0017 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_indices.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_indices.tsx @@ -39,6 +39,10 @@ import { EnterpriseSearchEnginesPageTemplate } from '../layout/engines_page_temp import { AddIndicesFlyout } from './add_indices_flyout'; import { EngineIndicesLogic } from './engine_indices_logic'; +const pageTitle = i18n.translate('xpack.enterpriseSearch.content.engine.indices.pageTitle', { + defaultMessage: 'Indices', +}); + export const EngineIndices: React.FC = () => { const subduedBackground = useEuiBackgroundColor('subdued'); const { sendEnterpriseSearchTelemetry } = useActions(TelemetryLogic); @@ -174,13 +178,11 @@ export const EngineIndices: React.FC = () => { ]; return ( = ({ schemaFiel ); }; +const pageTitle = i18n.translate('xpack.enterpriseSearch.content.engine.schema.pageTitle', { + defaultMessage: 'Schema', +}); + export const EngineSchema: React.FC = () => { const { engineName } = useValues(EngineIndicesLogic); const [onlyShowConflicts, setOnlyShowConflicts] = useState(false); @@ -345,13 +349,11 @@ export const EngineSchema: React.FC = () => { return ( diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_search_preview/api_call_flyout.tsx b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_search_preview/api_call_flyout.tsx index e4fa7d5c667dc..ca64d73bf1b64 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_search_preview/api_call_flyout.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/components/engine/engine_search_preview/api_call_flyout.tsx @@ -79,7 +79,7 @@ export const APICallFlyout: React.FC = ({ { const { http } = useValues(HttpLogic); const [showAPICallFlyout, setShowAPICallFlyout] = useState(false); @@ -114,13 +118,11 @@ export const EngineSearchPreview: React.FC = () => { return ( { const { fetchEngine, closeDeleteEngineModal } = useActions(EngineViewLogic); - const { - engineName, - fetchEngineApiError, - fetchEngineApiStatus, - isDeleteModalVisible, - isLoadingEngine, - } = useValues(EngineViewLogic); + const { engineName, fetchEngineApiError, fetchEngineApiStatus, isDeleteModalVisible } = + useValues(EngineViewLogic); const { tabId = EngineViewTabs.PREVIEW } = useParams<{ tabId?: string; }>(); @@ -77,21 +76,25 @@ export const EngineView: React.FC = () => { /> - - ( - ], - }} - engineName={engineName} - isLoading={isLoadingEngine} - /> - )} + + + + + + + ); diff --git a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts index 37504ef0ba960..ea5672222014f 100644 --- a/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts +++ b/x-pack/plugins/enterprise_search/public/applications/enterprise_search_content/routes.ts @@ -27,13 +27,17 @@ export const OLD_SEARCH_INDEX_CRAWLER_DOMAIN_DETAIL_PATH = `${SEARCH_INDEX_PATH} export const ENGINES_PATH = `${ROOT_PATH}engines`; -export const ENGINE_CREATION_PATH = `${ENGINES_PATH}/new`; -export const ENGINE_PATH = `${ENGINES_PATH}/:engineName`; -export const ENGINE_TAB_PATH = `${ENGINE_PATH}/:tabId`; export enum EngineViewTabs { PREVIEW = 'preview', INDICES = 'indices', SCHEMA = 'schema', + CONNECT = 'connect', +} +export const ENGINE_CREATION_PATH = `${ENGINES_PATH}/new`; +export const ENGINE_PATH = `${ENGINES_PATH}/:engineName`; +export const ENGINE_TAB_PATH = `${ENGINE_PATH}/:tabId`; +export const SEARCH_APPLICATION_CONNECT_PATH = `${ENGINE_PATH}/${EngineViewTabs.CONNECT}/:connectTabId`; +export enum SearchApplicationConnectTabs { API = 'api', } diff --git a/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/generate_breadcrumbs.ts b/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/generate_breadcrumbs.ts index 87282007f5bbd..ff2c05c4c8566 100644 --- a/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/generate_breadcrumbs.ts +++ b/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/generate_breadcrumbs.ts @@ -10,7 +10,6 @@ import { useValues } from 'kea'; import { EuiBreadcrumb } from '@elastic/eui'; import { - ENGINES_PLUGIN, ENTERPRISE_SEARCH_OVERVIEW_PLUGIN, ANALYTICS_PLUGIN, APP_SEARCH_PLUGIN, @@ -139,7 +138,4 @@ export const useSearchExperiencesBreadcrumbs = (breadcrumbs: Breadcrumbs = []) = ]); export const useEnterpriseSearchEnginesBreadcrumbs = (breadcrumbs: Breadcrumbs = []) => - useEnterpriseSearchBreadcrumbs([ - { text: ENGINES_PLUGIN.NAV_TITLE, path: '/engines' }, - ...breadcrumbs, - ]); + useEnterpriseSearchBreadcrumbs(breadcrumbs); diff --git a/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/set_chrome.tsx b/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/set_chrome.tsx index 9c22e64127326..bd042c4b6ac90 100644 --- a/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/set_chrome.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/shared/kibana_chrome/set_chrome.tsx @@ -9,6 +9,8 @@ import React, { useEffect } from 'react'; import { useValues } from 'kea'; +import { ENGINES_PLUGIN } from '../../../../common/constants'; + import { KibanaLogic } from '../kibana'; import { @@ -176,8 +178,9 @@ export const SetEnterpriseSearchEnginesChrome: React.FC = ({ tra const title = reverseArray(trail); const docTitle = appSearchTitle(title); - const crumbs = useGenerateBreadcrumbs(trail); - const breadcrumbs = useEnterpriseSearchEnginesBreadcrumbs(crumbs); + const breadcrumbs = useEnterpriseSearchEnginesBreadcrumbs( + useGenerateBreadcrumbs([ENGINES_PLUGIN.NAV_TITLE, ...trail]) + ); useEffect(() => { setBreadcrumbs(breadcrumbs); diff --git a/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.test.tsx b/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.test.tsx index 299f803a6e131..11458565f781a 100644 --- a/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.test.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.test.tsx @@ -300,9 +300,9 @@ describe('useEnterpriseSearchEngineNav', () => { name: 'Schema', }, { - href: `/app/enterprise_search/content/engines/${engineName}/api`, - id: 'enterpriseSearchEngineAPI', - name: 'API', + href: `/app/enterprise_search/content/engines/${engineName}/connect`, + id: 'enterpriseSearchApplicationConnect', + name: 'Connect', }, ], name: engineName, diff --git a/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.tsx b/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.tsx index 0798de9870f94..f06e32b9e30c8 100644 --- a/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.tsx +++ b/x-pack/plugins/enterprise_search/public/applications/shared/layout/nav.tsx @@ -189,6 +189,7 @@ export const useEnterpriseSearchEngineNav = (engineName?: string, isEmptyState?: name: engineName, ...generateNavLink({ shouldNotCreateHref: true, + shouldShowActiveForSubroutes: true, to: enginePath, }), items: [ @@ -223,13 +224,17 @@ export const useEnterpriseSearchEngineNav = (engineName?: string, isEmptyState?: }), }, { - id: 'enterpriseSearchEngineAPI', - name: i18n.translate('xpack.enterpriseSearch.nav.engine.apiTitle', { - defaultMessage: 'API', - }), + id: 'enterpriseSearchApplicationConnect', + name: i18n.translate( + 'xpack.enterpriseSearch.nav.applications.searchApplications.connectTitle', + { + defaultMessage: 'Connect', + } + ), ...generateNavLink({ shouldNotCreateHref: true, - to: `${enginePath}/${EngineViewTabs.API}`, + shouldShowActiveForSubroutes: true, + to: `${enginePath}/${EngineViewTabs.CONNECT}`, }), }, ], diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 6a0d6b7aa138a..969438e555138 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -12226,7 +12226,6 @@ "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.done": "Terminé", "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.generateButton": "Générer une clé en lecture seule", "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.title": "Créer une clé d'API en lecture seule pour le moteur", - "xpack.enterpriseSearch.content.engine.api.pageTitle": "API", "xpack.enterpriseSearch.content.engine.api.step1.apiKeyWarning": "Elastic ne stocke pas les clés d’API. Une fois la clé générée, vous ne pourrez la visualiser qu'une seule fois. Veillez à l'enregistrer dans un endroit sûr. Si vous n'y avez plus accès, vous devrez générer une nouvelle clé d’API à partir de cet écran.", "xpack.enterpriseSearch.content.engine.api.step1.createAPIKeyButton": "Créer une clé d'API", "xpack.enterpriseSearch.content.engine.api.step1.learnMoreLink": "Découvrez plus d'informations sur les clés d'API.", @@ -13130,7 +13129,6 @@ "xpack.enterpriseSearch.nav.contentSettingsTitle": "Paramètres", "xpack.enterpriseSearch.nav.contentTitle": "Contenu", "xpack.enterpriseSearch.nav.elasticsearchTitle": "Elasticsearch", - "xpack.enterpriseSearch.nav.engine.apiTitle": "API", "xpack.enterpriseSearch.nav.engine.indicesTitle": "Index", "xpack.enterpriseSearch.nav.engine.schemaTitle": "Schéma", "xpack.enterpriseSearch.nav.enterpriseSearchOverviewTitle": "Aperçu", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index f18a3f2f1916b..9bad4964ca71c 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -12225,7 +12225,6 @@ "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.done": "完了", "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.generateButton": "読み取り専用キーを生成", "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.title": "エンジン読み取り専用APIキーを作成", - "xpack.enterpriseSearch.content.engine.api.pageTitle": "API", "xpack.enterpriseSearch.content.engine.api.step1.apiKeyWarning": "ElasticはAPIキーを保存しません。生成後は、1回だけキーを表示できます。必ず安全に保管してください。アクセスできなくなった場合は、この画面から新しいAPIキーを生成する必要があります。", "xpack.enterpriseSearch.content.engine.api.step1.createAPIKeyButton": "APIキーを作成", "xpack.enterpriseSearch.content.engine.api.step1.learnMoreLink": "APIキーの詳細をご覧ください。", @@ -13129,7 +13128,6 @@ "xpack.enterpriseSearch.nav.contentSettingsTitle": "設定", "xpack.enterpriseSearch.nav.contentTitle": "コンテンツ", "xpack.enterpriseSearch.nav.elasticsearchTitle": "Elasticsearch", - "xpack.enterpriseSearch.nav.engine.apiTitle": "API", "xpack.enterpriseSearch.nav.engine.indicesTitle": "インデックス", "xpack.enterpriseSearch.nav.engine.schemaTitle": "スキーマ", "xpack.enterpriseSearch.nav.enterpriseSearchOverviewTitle": "概要", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 769dd6e40b48e..d800cf3c9c612 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -12226,7 +12226,6 @@ "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.done": "完成", "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.generateButton": "生成只读密钥", "xpack.enterpriseSearch.content.engine.api.generateEngineApiKeyModal.title": "创建引擎只读 API 密钥", - "xpack.enterpriseSearch.content.engine.api.pageTitle": "API", "xpack.enterpriseSearch.content.engine.api.step1.apiKeyWarning": "Elastic 不会存储 API 密钥。一旦生成,您只能查看密钥一次。请确保将其保存在某个安全位置。如果失去它的访问权限,您需要从此屏幕生成新的 API 密钥。", "xpack.enterpriseSearch.content.engine.api.step1.createAPIKeyButton": "创建 API 密钥", "xpack.enterpriseSearch.content.engine.api.step1.learnMoreLink": "详细了解 API 密钥。", @@ -13130,7 +13129,6 @@ "xpack.enterpriseSearch.nav.contentSettingsTitle": "设置", "xpack.enterpriseSearch.nav.contentTitle": "内容", "xpack.enterpriseSearch.nav.elasticsearchTitle": "Elasticsearch", - "xpack.enterpriseSearch.nav.engine.apiTitle": "API", "xpack.enterpriseSearch.nav.engine.indicesTitle": "索引", "xpack.enterpriseSearch.nav.engine.schemaTitle": "架构", "xpack.enterpriseSearch.nav.enterpriseSearchOverviewTitle": "概览", From 2d576c575ee632850692aa27b32de2866e3e0161 Mon Sep 17 00:00:00 2001 From: James Gowdy Date: Thu, 20 Apr 2023 14:36:27 +0100 Subject: [PATCH 130/144] [ML] Use two weeks before now for default start time in job start date picker (#155312) When starting an anomaly detection job, if you select "Specify start time", the time chosen is two weeks before now, rounded down to the start of the day. image Fixes https://github.com/elastic/enhancements/issues/16467 --- .../time_range_selector/time_range_selector.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/x-pack/plugins/ml/public/application/jobs/jobs_list/components/start_datafeed_modal/time_range_selector/time_range_selector.js b/x-pack/plugins/ml/public/application/jobs/jobs_list/components/start_datafeed_modal/time_range_selector/time_range_selector.js index e3c6458fabda9..b6166dd6cbd82 100644 --- a/x-pack/plugins/ml/public/application/jobs/jobs_list/components/start_datafeed_modal/time_range_selector/time_range_selector.js +++ b/x-pack/plugins/ml/public/application/jobs/jobs_list/components/start_datafeed_modal/time_range_selector/time_range_selector.js @@ -27,6 +27,7 @@ export class TimeRangeSelector extends Component { }; this.latestTimestamp = this.props.startTime; this.now = this.props.now; + this.twoWeeksAgo = moment(this.now).subtract(2, 'weeks').startOf('day'); } setStartTab = (tab) => { @@ -38,6 +39,9 @@ export class TimeRangeSelector extends Component { case 1: this.setStartTime(this.now); break; + case 2: + this.setStartTime(this.twoWeeksAgo); + break; default: break; } From f0964823deeaf11b5ac06e3dbed04d35f8054206 Mon Sep 17 00:00:00 2001 From: Dima Arnautov Date: Thu, 20 Apr 2023 16:13:23 +0200 Subject: [PATCH 131/144] [ML] AIOps: Add filter action for the Change point detection results (#155256) ## Summary Part of https://github.com/elastic/kibana/issues/151592 Adds actions to quickly filter for and filter out split field values. ![Apr-20-2023 12-41-17](https://user-images.githubusercontent.com/5236598/233342684-0ee7e27e-0ffc-444b-92b0-5bf1a732ed87.gif) ### Checklist - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [x] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [x] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [x] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --- .../change_points_table.tsx | 99 ++++++++++++++++++- 1 file changed, 98 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/aiops/public/components/change_point_detection/change_points_table.tsx b/x-pack/plugins/aiops/public/components/change_point_detection/change_points_table.tsx index 28ff26ad7645a..dd054b88076ec 100644 --- a/x-pack/plugins/aiops/public/components/change_point_detection/change_points_table.tsx +++ b/x-pack/plugins/aiops/public/components/change_point_detection/change_points_table.tsx @@ -12,11 +12,14 @@ import { EuiIcon, EuiInMemoryTable, EuiToolTip, + type DefaultItemAction, } from '@elastic/eui'; import React, { type FC, useMemo } from 'react'; import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import { EuiTableSelectionType } from '@elastic/eui/src/components/basic_table/table_types'; +import { type Filter, FilterStateStore } from '@kbn/es-query'; +import { useDataSource } from '../../hooks/use_data_source'; import { useCommonChartProps } from './use_common_chart_props'; import { type ChangePointAnnotation, @@ -33,13 +36,49 @@ export interface ChangePointsTableProps { onSelectionChange: (update: SelectedChangePoint[]) => void; } +function getFilterConfig( + index: string, + item: Required, + negate: boolean +): Filter { + return { + meta: { + disabled: false, + negate, + alias: null, + index, + key: `${item.group.name}_${item.group.value}`, + // @ts-ignore FilterMeta type definition misses the field property + field: item.group.name, + params: { + query: item.group.value, + }, + type: 'phrase', + }, + query: { + match_phrase: { + [item.group.name]: item.group.value, + }, + }, + $state: { + store: FilterStateStore.APP_STATE, + }, + }; +} + export const ChangePointsTable: FC = ({ isLoading, annotations, fieldConfig, onSelectionChange, }) => { - const { fieldFormats } = useAiopsAppContext(); + const { + fieldFormats, + data: { + query: { filterManager }, + }, + } = useAiopsAppContext(); + const { dataView } = useDataSource(); const dateFormatter = useMemo(() => fieldFormats.deserialize({ id: 'date' }), [fieldFormats]); @@ -51,6 +90,8 @@ export const ChangePointsTable: FC = ({ }, }; + const hasActions = fieldConfig.splitField !== undefined; + const columns: Array> = [ { field: 'timestamp', @@ -126,6 +167,61 @@ export const ChangePointsTable: FC = ({ truncateText: false, sortable: true, }, + { + name: i18n.translate('xpack.aiops.changePointDetection.actionsColumn', { + defaultMessage: 'Actions', + }), + actions: [ + { + name: i18n.translate( + 'xpack.aiops.changePointDetection.actions.filterForValueAction', + { + defaultMessage: 'Filter for value', + } + ), + description: i18n.translate( + 'xpack.aiops.changePointDetection.actions.filterForValueAction', + { + defaultMessage: 'Filter for value', + } + ), + icon: 'plusInCircle', + color: 'primary', + type: 'icon', + onClick: (item) => { + filterManager.addFilters( + getFilterConfig(dataView.id!, item as Required, false)! + ); + }, + isPrimary: true, + 'data-test-subj': 'aiopsChangePointFilterForValue', + }, + { + name: i18n.translate( + 'xpack.aiops.changePointDetection.actions.filterOutValueAction', + { + defaultMessage: 'Filter out value', + } + ), + description: i18n.translate( + 'xpack.aiops.changePointDetection.actions.filterOutValueAction', + { + defaultMessage: 'Filter out value', + } + ), + icon: 'minusInCircle', + color: 'primary', + type: 'icon', + onClick: (item) => { + filterManager.addFilters( + getFilterConfig(dataView.id!, item as Required, true)! + ); + }, + isPrimary: true, + 'data-test-subj': 'aiopsChangePointFilterForValue', + }, + ] as Array>, + }, ] : []), ]; @@ -155,6 +251,7 @@ export const ChangePointsTable: FC = ({ columns={columns} pagination={{ pageSizeOptions: [5, 10, 15] }} sorting={defaultSorting} + hasActions={hasActions} message={ isLoading ? ( Date: Thu, 20 Apr 2023 16:26:48 +0200 Subject: [PATCH 132/144] Enable APM for ES when running performance journeys (#155195) Enables APM instrumentation for Elasticsearch when running performance journeys, for a more complete understanding of where time is being spent: CleanShot 2023-04-18 at 20 30 32@2x --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- packages/kbn-journeys/index.ts | 1 + .../journey/journey_apm_config.ts | 37 +++++++++++++++++++ .../journey/journey_ftr_config.ts | 36 ++++++------------ src/dev/performance/run_performance_cli.ts | 21 ++++++++++- src/dev/tsconfig.json | 1 + 5 files changed, 70 insertions(+), 26 deletions(-) create mode 100644 packages/kbn-journeys/journey/journey_apm_config.ts diff --git a/packages/kbn-journeys/index.ts b/packages/kbn-journeys/index.ts index def8e5f3b0d59..6c0df15667c27 100644 --- a/packages/kbn-journeys/index.ts +++ b/packages/kbn-journeys/index.ts @@ -7,6 +7,7 @@ */ export { JourneyConfig } from './journey/journey_config'; +export { JOURNEY_APM_CONFIG } from './journey/journey_apm_config'; export type { ScalabilityAction, ScalabilitySetup, diff --git a/packages/kbn-journeys/journey/journey_apm_config.ts b/packages/kbn-journeys/journey/journey_apm_config.ts new file mode 100644 index 0000000000000..c14a78a438418 --- /dev/null +++ b/packages/kbn-journeys/journey/journey_apm_config.ts @@ -0,0 +1,37 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +// These "secret" values are intentionally written in the source. We would make the APM server accept anonymous traffic if we could +const APM_SERVER_URL = 'https://kibana-ops-e2e-perf.apm.us-central1.gcp.cloud.es.io:443'; +const APM_PUBLIC_TOKEN = 'CTs9y3cvcfq13bQqsB'; + +export const JOURNEY_APM_CONFIG = { + serverUrl: APM_SERVER_URL, + secretToken: APM_PUBLIC_TOKEN, + active: 'true', + contextPropagationOnly: 'false', + environment: process.env.CI ? 'ci' : 'development', + transactionSampleRate: '1.0', + // capture request body for both errors and request transactions + // https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#capture-body + captureBody: 'all', + // capture request headers + // https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#capture-headers + captureRequestHeaders: true, + // request body with bigger size will be trimmed. + // 300_000 is the default of the APM server. + // for a body with larger size, we might need to reconfigure the APM server to increase the limit. + // https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#long-field-max-length + longFieldMaxLength: 300_000, + globalLabels: { + performancePhase: process.env.TEST_PERFORMANCE_PHASE, + branch: process.env.BUILDKITE_BRANCH, + gitRev: process.env.BUILDKITE_COMMIT, + ciBuildName: process.env.BUILDKITE_PIPELINE_SLUG, + }, +}; diff --git a/packages/kbn-journeys/journey/journey_ftr_config.ts b/packages/kbn-journeys/journey/journey_ftr_config.ts index 3933d0d7e195a..2d855ab8fb22c 100644 --- a/packages/kbn-journeys/journey/journey_ftr_config.ts +++ b/packages/kbn-journeys/journey/journey_ftr_config.ts @@ -15,10 +15,7 @@ import { commonFunctionalServices } from '@kbn/ftr-common-functional-services'; import { AnyStep } from './journey'; import { JourneyConfig } from './journey_config'; - -// These "secret" values are intentionally written in the source. We would make the APM server accept anonymous traffic if we could -const APM_SERVER_URL = 'https://kibana-ops-e2e-perf.apm.us-central1.gcp.cloud.es.io:443'; -const APM_PUBLIC_TOKEN = 'CTs9y3cvcfq13bQqsB'; +import { JOURNEY_APM_CONFIG } from './journey_apm_config'; export function makeFtrConfigProvider( config: JourneyConfig, @@ -92,33 +89,22 @@ export function makeFtrConfigProvider( ], env: { - ELASTIC_APM_ACTIVE: 'true', - ELASTIC_APM_CONTEXT_PROPAGATION_ONLY: 'false', - ELASTIC_APM_ENVIRONMENT: process.env.CI ? 'ci' : 'development', - ELASTIC_APM_TRANSACTION_SAMPLE_RATE: '1.0', - ELASTIC_APM_SERVER_URL: APM_SERVER_URL, - ELASTIC_APM_SECRET_TOKEN: APM_PUBLIC_TOKEN, - // capture request body for both errors and request transactions - // https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#capture-body - ELASTIC_APM_CAPTURE_BODY: 'all', - // capture request headers - // https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#capture-headers - ELASTIC_APM_CAPTURE_HEADERS: true, - // request body with bigger size will be trimmed. - // 300_000 is the default of the APM server. - // for a body with larger size, we might need to reconfigure the APM server to increase the limit. - // https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#long-field-max-length - ELASTIC_APM_LONG_FIELD_MAX_LENGTH: 300_000, + ELASTIC_APM_ACTIVE: JOURNEY_APM_CONFIG.active, + ELASTIC_APM_CONTEXT_PROPAGATION_ONLY: JOURNEY_APM_CONFIG.contextPropagationOnly, + ELASTIC_APM_ENVIRONMENT: JOURNEY_APM_CONFIG.environment, + ELASTIC_APM_TRANSACTION_SAMPLE_RATE: JOURNEY_APM_CONFIG.transactionSampleRate, + ELASTIC_APM_SERVER_URL: JOURNEY_APM_CONFIG.serverUrl, + ELASTIC_APM_SECRET_TOKEN: JOURNEY_APM_CONFIG.secretToken, + ELASTIC_APM_CAPTURE_BODY: JOURNEY_APM_CONFIG.captureBody, + ELASTIC_APM_CAPTURE_HEADERS: JOURNEY_APM_CONFIG.captureRequestHeaders, + ELASTIC_APM_LONG_FIELD_MAX_LENGTH: JOURNEY_APM_CONFIG.longFieldMaxLength, ELASTIC_APM_GLOBAL_LABELS: Object.entries({ ...config.getExtraApmLabels(), testJobId, testBuildId, journeyName: config.getName(), ftrConfig: config.getRepoRelPath(), - performancePhase: process.env.TEST_PERFORMANCE_PHASE, - branch: process.env.BUILDKITE_BRANCH, - gitRev: process.env.BUILDKITE_COMMIT, - ciBuildName: process.env.BUILDKITE_PIPELINE_SLUG, + ...JOURNEY_APM_CONFIG.globalLabels, }) .flatMap(([key, value]) => (value == null ? [] : `${key}=${value}`)) .join(','), diff --git a/src/dev/performance/run_performance_cli.ts b/src/dev/performance/run_performance_cli.ts index 3539ada07e405..3c5807e1c208b 100644 --- a/src/dev/performance/run_performance_cli.ts +++ b/src/dev/performance/run_performance_cli.ts @@ -11,6 +11,7 @@ import { run } from '@kbn/dev-cli-runner'; import { REPO_ROOT } from '@kbn/repo-info'; import fs from 'fs'; import path from 'path'; +import { JOURNEY_APM_CONFIG } from '@kbn/journeys'; const JOURNEY_BASE_PATH = 'x-pack/performance/journeys'; @@ -103,7 +104,25 @@ run( process.stdout.write(`--- Starting ES\n`); await procRunner.run('es', { cmd: 'node', - args: ['scripts/es', 'snapshot', '--license=trial'], + args: [ + 'scripts/es', + 'snapshot', + '--license=trial', + ...(JOURNEY_APM_CONFIG.active + ? [ + '-E', + 'tracing.apm.enabled=true', + '-E', + 'tracing.apm.agent.transaction_sample_rate=1.0', + '-E', + `tracing.apm.agent.server_url=${JOURNEY_APM_CONFIG.serverUrl}`, + '-E', + `tracing.apm.agent.secret_token=${JOURNEY_APM_CONFIG.secretToken}`, + '-E', + `tracing.apm.agent.environment=${JOURNEY_APM_CONFIG.environment}`, + ] + : []), + ], cwd: REPO_ROOT, wait: /kbn\/es setup complete/, }); diff --git a/src/dev/tsconfig.json b/src/dev/tsconfig.json index 7ceac215ee3f2..b4fb983d63e52 100644 --- a/src/dev/tsconfig.json +++ b/src/dev/tsconfig.json @@ -38,5 +38,6 @@ "@kbn/repo-file-maps", "@kbn/get-repo-files", "@kbn/import-locator", + "@kbn/journeys", ] } From c68dfd7f9a14d5409e065f5f0e5b62f8b9b36d09 Mon Sep 17 00:00:00 2001 From: Alexi Doak <109488926+doakalexi@users.noreply.github.com> Date: Thu, 20 Apr 2023 10:32:05 -0400 Subject: [PATCH 133/144] [ResponseOps][Window Maintenance] Add the edit action to the maintenance window table (#154669) Resolves https://github.com/elastic/kibana/issues/154559 ## Summary Adds an edit action to the maintance windows table. When a user clicks edit we retrieve the maintenance window and open the edit form. ### Checklist - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../application/maintenance_windows.tsx | 11 +- .../plugins/alerting/public/config/paths.ts | 2 + .../public/hooks/use_breadcrumbs.test.tsx | 15 + .../alerting/public/hooks/use_breadcrumbs.ts | 7 + .../hooks/use_find_maintenance_windows.ts | 1 + .../hooks/use_get_maintenance_window.test.tsx | 54 +++ .../hooks/use_get_maintenance_window.ts | 47 +++ .../public/hooks/use_navigation.test.tsx | 18 + .../alerting/public/hooks/use_navigation.ts | 20 ++ .../use_update_maintenance_window.test.tsx | 85 +++++ .../hooks/use_update_maintenance_window.ts | 53 +++ .../create_maintenance_windows_form.tsx | 36 +- .../components/maintenance_windows_list.tsx | 22 +- .../components/submit_button.tsx | 5 +- ...rt_from_maintenance_window_to_form.test.ts | 318 ++++++++++++++++++ ...convert_from_maintenance_window_to_form.ts | 94 ++++++ .../helpers/convert_to_rrule.ts | 58 ++-- .../maintenance_window_edit_page.tsx | 52 +++ .../pages/maintenance_windows/translations.ts | 18 + .../maintenance_windows_api/create.ts | 4 +- .../services/maintenance_windows_api/find.ts | 2 +- .../maintenance_windows_api/get.test.ts | 51 +++ .../services/maintenance_windows_api/get.ts | 32 ++ .../maintenance_windows_api/update.test.ts | 58 ++++ .../maintenance_windows_api/update.ts | 40 +++ 25 files changed, 1055 insertions(+), 48 deletions(-) create mode 100644 x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.test.tsx create mode 100644 x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.ts create mode 100644 x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.test.tsx create mode 100644 x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.ts create mode 100644 x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.test.ts create mode 100644 x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.ts create mode 100644 x-pack/plugins/alerting/public/pages/maintenance_windows/maintenance_window_edit_page.tsx create mode 100644 x-pack/plugins/alerting/public/services/maintenance_windows_api/get.test.ts create mode 100644 x-pack/plugins/alerting/public/services/maintenance_windows_api/get.ts create mode 100644 x-pack/plugins/alerting/public/services/maintenance_windows_api/update.test.ts create mode 100644 x-pack/plugins/alerting/public/services/maintenance_windows_api/update.ts diff --git a/x-pack/plugins/alerting/public/application/maintenance_windows.tsx b/x-pack/plugins/alerting/public/application/maintenance_windows.tsx index 88ac69cf82b66..4005ee739a12b 100644 --- a/x-pack/plugins/alerting/public/application/maintenance_windows.tsx +++ b/x-pack/plugins/alerting/public/application/maintenance_windows.tsx @@ -7,7 +7,7 @@ import React, { Suspense } from 'react'; import ReactDOM from 'react-dom'; -import { Router, Switch } from 'react-router-dom'; +import { Redirect, Router, Switch } from 'react-router-dom'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { Route } from '@kbn/shared-ux-router'; import { CoreStart } from '@kbn/core/public'; @@ -23,6 +23,9 @@ const MaintenanceWindowsLazy: React.FC = React.lazy(() => import('../pages/maint const MaintenanceWindowsCreateLazy: React.FC = React.lazy( () => import('../pages/maintenance_windows/maintenance_window_create_page') ); +const MaintenanceWindowsEditLazy: React.FC = React.lazy( + () => import('../pages/maintenance_windows/maintenance_window_edit_page') +); const App = React.memo(() => { return ( @@ -38,6 +41,12 @@ const App = React.memo(() => { + + }> + + + + ); diff --git a/x-pack/plugins/alerting/public/config/paths.ts b/x-pack/plugins/alerting/public/config/paths.ts index 1fdfa48078c0a..7dc8b1b643f2a 100644 --- a/x-pack/plugins/alerting/public/config/paths.ts +++ b/x-pack/plugins/alerting/public/config/paths.ts @@ -12,12 +12,14 @@ export const paths = { alerting: { maintenanceWindows: `/${MAINTENANCE_WINDOWS_APP_ID}`, maintenanceWindowsCreate: '/create', + maintenanceWindowsEdit: '/edit/:maintenanceWindowId', }, }; export const AlertingDeepLinkId = { maintenanceWindows: MAINTENANCE_WINDOWS_APP_ID, maintenanceWindowsCreate: 'create', + maintenanceWindowsEdit: 'edit', }; export type IAlertingDeepLinkId = typeof AlertingDeepLinkId[keyof typeof AlertingDeepLinkId]; diff --git a/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.test.tsx b/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.test.tsx index fb42a59db0fe2..def69ac94beb1 100644 --- a/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.test.tsx +++ b/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.test.tsx @@ -71,4 +71,19 @@ describe('useBreadcrumbs', () => { { text: 'Create' }, ]); }); + + test('set edit maintenance windows breadcrumbs', () => { + renderHook(() => useBreadcrumbs(AlertingDeepLinkId.maintenanceWindowsEdit), { + wrapper: appMockRenderer.AppWrapper, + }); + expect(mockSetBreadcrumbs).toHaveBeenCalledWith([ + { href: '/test', onClick: expect.any(Function), text: 'Stack Management' }, + { + href: AlertingDeepLinkId.maintenanceWindows, + onClick: expect.any(Function), + text: 'Maintenance Windows', + }, + { text: 'Edit' }, + ]); + }); }); diff --git a/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.ts b/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.ts index d33ce68bd0b1b..1553fc59e9176 100644 --- a/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.ts +++ b/x-pack/plugins/alerting/public/hooks/use_breadcrumbs.ts @@ -25,10 +25,17 @@ const breadcrumbTitle: Record = { defaultMessage: 'Create', } ), + [AlertingDeepLinkId.maintenanceWindowsEdit]: i18n.translate( + 'xpack.alerting.breadcrumbs.editMaintenanceWindowsLinkText', + { + defaultMessage: 'Edit', + } + ), }; const topLevelBreadcrumb: Record = { [AlertingDeepLinkId.maintenanceWindowsCreate]: AlertingDeepLinkId.maintenanceWindows, + [AlertingDeepLinkId.maintenanceWindowsEdit]: AlertingDeepLinkId.maintenanceWindows, }; function addClickHandlers( diff --git a/x-pack/plugins/alerting/public/hooks/use_find_maintenance_windows.ts b/x-pack/plugins/alerting/public/hooks/use_find_maintenance_windows.ts index dbbd39f523679..6a71bd9c64518 100644 --- a/x-pack/plugins/alerting/public/hooks/use_find_maintenance_windows.ts +++ b/x-pack/plugins/alerting/public/hooks/use_find_maintenance_windows.ts @@ -36,6 +36,7 @@ export const useFindMaintenanceWindows = () => { onError: onErrorFn, refetchOnWindowFocus: false, retry: false, + cacheTime: 0, }); return { diff --git a/x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.test.tsx b/x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.test.tsx new file mode 100644 index 0000000000000..eaef1f4fc4b99 --- /dev/null +++ b/x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.test.tsx @@ -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 { renderHook } from '@testing-library/react-hooks/dom'; +import { waitFor } from '@testing-library/dom'; + +import { AppMockRenderer, createAppMockRenderer } from '../lib/test_utils'; +import { useGetMaintenanceWindow } from './use_get_maintenance_window'; + +const mockAddDanger = jest.fn(); + +jest.mock('../utils/kibana_react', () => { + const originalModule = jest.requireActual('../utils/kibana_react'); + return { + ...originalModule, + useKibana: () => { + const { services } = originalModule.useKibana(); + return { + services: { + ...services, + notifications: { toasts: { addDanger: mockAddDanger } }, + }, + }; + }, + }; +}); +jest.mock('../services/maintenance_windows_api/get', () => ({ + getMaintenanceWindow: jest.fn(), +})); + +const { getMaintenanceWindow } = jest.requireMock('../services/maintenance_windows_api/get'); + +let appMockRenderer: AppMockRenderer; + +describe('useGetMaintenanceWindow', () => { + beforeEach(() => { + jest.clearAllMocks(); + + appMockRenderer = createAppMockRenderer(); + }); + + it('should call onError if api fails', async () => { + getMaintenanceWindow.mockRejectedValue(''); + + renderHook(() => useGetMaintenanceWindow('testId'), { + wrapper: appMockRenderer.AppWrapper, + }); + + await waitFor(() => expect(mockAddDanger).toBeCalledWith('Unable to get maintenance window.')); + }); +}); diff --git a/x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.ts b/x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.ts new file mode 100644 index 0000000000000..1657ac9fbb30e --- /dev/null +++ b/x-pack/plugins/alerting/public/hooks/use_get_maintenance_window.ts @@ -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 { i18n } from '@kbn/i18n'; +import { useQuery } from '@tanstack/react-query'; +import { useKibana } from '../utils/kibana_react'; +import { getMaintenanceWindow } from '../services/maintenance_windows_api/get'; +import { convertFromMaintenanceWindowToForm } from '../pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form'; + +export const useGetMaintenanceWindow = (maintenanceWindowId: string) => { + const { + http, + notifications: { toasts }, + } = useKibana().services; + + const queryFn = async () => { + const maintenanceWindow = await getMaintenanceWindow({ http, maintenanceWindowId }); + return convertFromMaintenanceWindowToForm(maintenanceWindow); + }; + + const onErrorFn = () => { + toasts.addDanger( + i18n.translate('xpack.alerting.getMaintenanceWindowFailure', { + defaultMessage: 'Unable to get maintenance window.', + }) + ); + }; + + const { isInitialLoading, isLoading, data, isError } = useQuery({ + queryKey: ['getMaintenanceWindow', maintenanceWindowId], + queryFn, + onError: onErrorFn, + refetchOnWindowFocus: false, + retry: false, + cacheTime: 0, + }); + + return { + maintenanceWindow: data, + isLoading: isLoading || isInitialLoading, + isError, + }; +}; diff --git a/x-pack/plugins/alerting/public/hooks/use_navigation.test.tsx b/x-pack/plugins/alerting/public/hooks/use_navigation.test.tsx index abf7a27f595a1..c4d2b7b71ef27 100644 --- a/x-pack/plugins/alerting/public/hooks/use_navigation.test.tsx +++ b/x-pack/plugins/alerting/public/hooks/use_navigation.test.tsx @@ -9,6 +9,7 @@ import { act, renderHook } from '@testing-library/react-hooks'; import { useCreateMaintenanceWindowNavigation, + useEditMaintenanceWindowsNavigation, useMaintenanceWindowsNavigation, } from './use_navigation'; import { AppMockRenderer, createAppMockRenderer } from '../lib/test_utils'; @@ -90,4 +91,21 @@ describe('useNavigation', () => { }); }); }); + + describe('useEditMaintenanceWindowNavigation', () => { + it('it calls navigateToEditMaintenanceWindow with correct arguments', () => { + const { result } = renderHook(() => useEditMaintenanceWindowsNavigation(), { + wrapper: appMockRenderer.AppWrapper, + }); + + act(() => { + result.current.navigateToEditMaintenanceWindows('1234'); + }); + + expect(mockNavigateTo).toHaveBeenCalledWith(APP_ID, { + deepLinkId: MAINTENANCE_WINDOWS_APP_ID, + path: '/edit/1234', + }); + }); + }); }); diff --git a/x-pack/plugins/alerting/public/hooks/use_navigation.ts b/x-pack/plugins/alerting/public/hooks/use_navigation.ts index 12f64dbdcad30..d1c3673b60abc 100644 --- a/x-pack/plugins/alerting/public/hooks/use_navigation.ts +++ b/x-pack/plugins/alerting/public/hooks/use_navigation.ts @@ -6,6 +6,7 @@ */ import { useCallback } from 'react'; +import { generatePath } from 'react-router-dom'; import type { NavigateToAppOptions } from '@kbn/core/public'; import { useKibana } from '../utils/kibana_react'; import { paths, APP_ID, MAINTENANCE_WINDOWS_APP_ID } from '../config'; @@ -53,3 +54,22 @@ export const useMaintenanceWindowsNavigation = () => { }), }; }; + +export const useEditMaintenanceWindowsNavigation = () => { + const { navigateTo, getAppUrl } = useNavigation(APP_ID); + const deepLinkId = MAINTENANCE_WINDOWS_APP_ID; + + return { + navigateToEditMaintenanceWindows: (maintenanceWindowId: string) => + navigateTo({ + path: generatePath(paths.alerting.maintenanceWindowsEdit, { maintenanceWindowId }), + deepLinkId, + }), + getEditMaintenanceWindowsUrl: (maintenanceWindowId: string, absolute?: boolean) => + getAppUrl({ + path: generatePath(paths.alerting.maintenanceWindowsEdit, { maintenanceWindowId }), + deepLinkId, + absolute, + }), + }; +}; diff --git a/x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.test.tsx b/x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.test.tsx new file mode 100644 index 0000000000000..67545d83aba17 --- /dev/null +++ b/x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.test.tsx @@ -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 { act, renderHook } from '@testing-library/react-hooks/dom'; +import { waitFor } from '@testing-library/dom'; + +import { MaintenanceWindow } from '../pages/maintenance_windows/types'; +import { AppMockRenderer, createAppMockRenderer } from '../lib/test_utils'; +import { useUpdateMaintenanceWindow } from './use_update_maintenance_window'; + +const mockAddDanger = jest.fn(); +const mockAddSuccess = jest.fn(); + +jest.mock('../utils/kibana_react', () => { + const originalModule = jest.requireActual('../utils/kibana_react'); + return { + ...originalModule, + useKibana: () => { + const { services } = originalModule.useKibana(); + return { + services: { + ...services, + notifications: { toasts: { addSuccess: mockAddSuccess, addDanger: mockAddDanger } }, + }, + }; + }, + }; +}); +jest.mock('../services/maintenance_windows_api/update', () => ({ + updateMaintenanceWindow: jest.fn(), +})); + +const { updateMaintenanceWindow } = jest.requireMock('../services/maintenance_windows_api/update'); + +const maintenanceWindow: MaintenanceWindow = { + title: 'updated', + duration: 1, + rRule: { + dtstart: '2023-03-23T19:16:21.293Z', + tzid: 'America/New_York', + }, +}; + +let appMockRenderer: AppMockRenderer; + +describe('useUpdateMaintenanceWindow', () => { + beforeEach(() => { + jest.clearAllMocks(); + + appMockRenderer = createAppMockRenderer(); + updateMaintenanceWindow.mockResolvedValue(maintenanceWindow); + }); + + it('should call onSuccess if api succeeds', async () => { + const { result } = renderHook(() => useUpdateMaintenanceWindow(), { + wrapper: appMockRenderer.AppWrapper, + }); + + await act(async () => { + await result.current.mutate({ maintenanceWindowId: '123', maintenanceWindow }); + }); + await waitFor(() => + expect(mockAddSuccess).toBeCalledWith("Updated maintenance window 'updated'") + ); + }); + + it('should call onError if api fails', async () => { + updateMaintenanceWindow.mockRejectedValue(''); + + const { result } = renderHook(() => useUpdateMaintenanceWindow(), { + wrapper: appMockRenderer.AppWrapper, + }); + + await act(async () => { + await result.current.mutate({ maintenanceWindowId: '123', maintenanceWindow }); + }); + + await waitFor(() => + expect(mockAddDanger).toBeCalledWith("Failed to update maintenance window '123'") + ); + }); +}); diff --git a/x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.ts b/x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.ts new file mode 100644 index 0000000000000..de6596b1c766d --- /dev/null +++ b/x-pack/plugins/alerting/public/hooks/use_update_maintenance_window.ts @@ -0,0 +1,53 @@ +/* + * 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 { i18n } from '@kbn/i18n'; +import { useMutation } from '@tanstack/react-query'; + +import { useKibana } from '../utils/kibana_react'; +import { MaintenanceWindow } from '../pages/maintenance_windows/types'; +import { updateMaintenanceWindow } from '../services/maintenance_windows_api/update'; + +export function useUpdateMaintenanceWindow() { + const { + http, + notifications: { toasts }, + } = useKibana().services; + + const mutationFn = ({ + maintenanceWindowId, + maintenanceWindow, + }: { + maintenanceWindowId: string; + maintenanceWindow: MaintenanceWindow; + }) => { + return updateMaintenanceWindow({ http, maintenanceWindowId, maintenanceWindow }); + }; + + return useMutation(mutationFn, { + onSuccess: (variables: MaintenanceWindow) => { + toasts.addSuccess( + i18n.translate('xpack.alerting.maintenanceWindowsUpdateSuccess', { + defaultMessage: "Updated maintenance window '{title}'", + values: { + title: variables.title, + }, + }) + ); + }, + onError: (error, variables) => { + toasts.addDanger( + i18n.translate('xpack.alerting.maintenanceWindowsUpdateFailure', { + defaultMessage: "Failed to update maintenance window '{id}'", + values: { + id: variables.maintenanceWindowId, + }, + }) + ); + }, + }); +} diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.tsx index 41c6dc304d93c..bef99e1188051 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.tsx +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.tsx @@ -22,6 +22,7 @@ import { RecurringSchedule } from './recurring_schedule_form/recurring_schedule' import { SubmitButton } from './submit_button'; import { convertToRRule } from '../helpers/convert_to_rrule'; import { useCreateMaintenanceWindow } from '../../../hooks/use_create_maintenance_window'; +import { useUpdateMaintenanceWindow } from '../../../hooks/use_update_maintenance_window'; import { useUiSetting } from '../../../utils/kibana_react'; import { DatePickerRangeField } from './fields/date_picker_range_field'; @@ -31,6 +32,7 @@ export interface CreateMaintenanceWindowFormProps { onCancel: () => void; onSuccess: () => void; initialValue?: FormProps; + maintenanceWindowId?: string; } export const useTimeZone = (): string => { @@ -39,30 +41,42 @@ export const useTimeZone = (): string => { }; export const CreateMaintenanceWindowForm = React.memo( - ({ onCancel, onSuccess, initialValue }) => { + ({ onCancel, onSuccess, initialValue, maintenanceWindowId }) => { const [defaultStartDateValue] = useState(moment().toISOString()); const [defaultEndDateValue] = useState(moment().add(30, 'minutes').toISOString()); const timezone = useTimeZone(); + const isEditMode = initialValue !== undefined && maintenanceWindowId !== undefined; const { mutate: createMaintenanceWindow, isLoading: isCreateLoading } = useCreateMaintenanceWindow(); + const { mutate: updateMaintenanceWindow, isLoading: isUpdateLoading } = + useUpdateMaintenanceWindow(); const submitMaintenanceWindow = useCallback( async (formData, isValid) => { if (isValid) { const startDate = moment(formData.startDate); const endDate = moment(formData.endDate); - await createMaintenanceWindow( - { - title: formData.title, - duration: endDate.diff(startDate), - rRule: convertToRRule(startDate, timezone, formData.recurringSchedule), - }, - { onSuccess } - ); + const maintenanceWindow = { + title: formData.title, + duration: endDate.diff(startDate), + rRule: convertToRRule(startDate, timezone, formData.recurringSchedule), + }; + if (isEditMode) { + updateMaintenanceWindow({ maintenanceWindowId, maintenanceWindow }, { onSuccess }); + } else { + createMaintenanceWindow(maintenanceWindow, { onSuccess }); + } } }, - [createMaintenanceWindow, onSuccess, timezone] + [ + isEditMode, + maintenanceWindowId, + updateMaintenanceWindow, + createMaintenanceWindow, + onSuccess, + timezone, + ] ); const { form } = useForm({ @@ -151,7 +165,7 @@ export const CreateMaintenanceWindowForm = React.memo - + diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/maintenance_windows_list.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/maintenance_windows_list.tsx index f7482e1ec78d3..33a36a2bc0dea 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/maintenance_windows_list.tsx +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/maintenance_windows_list.tsx @@ -17,6 +17,7 @@ import { import { css } from '@emotion/react'; import { MaintenanceWindowFindResponse, SortDirection } from '../types'; import * as i18n from '../translations'; +import { useEditMaintenanceWindowsNavigation } from '../../../hooks/use_navigation'; import { StatusColor, STATUS_DISPLAY, STATUS_SORT } from '../constants'; import { MaintenanceWindowStatus } from '../../../../common'; import { StatusFilter } from './status_filter'; @@ -94,6 +95,7 @@ const search: { filters: SearchFilterConfig[] } = { export const MaintenanceWindowsList = React.memo( ({ loading, items }) => { + const { navigateToEditMaintenanceWindows } = useEditMaintenanceWindowsNavigation(); const warningBackgroundColor = useEuiBackgroundColor('warning'); const subduedBackgroundColor = useEuiBackgroundColor('subdued'); const tableCss = useMemo(() => { @@ -110,6 +112,23 @@ export const MaintenanceWindowsList = React.memo( `; }, [warningBackgroundColor, subduedBackgroundColor]); + const actions: Array> = [ + { + name: '', + actions: [ + { + name: i18n.TABLE_ACTION_EDIT, + isPrimary: true, + description: 'Edit maintenance window', + icon: 'pencil', + type: 'icon', + onClick: (mw: MaintenanceWindowFindResponse) => navigateToEditMaintenanceWindows(mw.id), + 'data-test-subj': 'action-edit', + }, + ], + }, + ]; + return ( ( loading={loading} tableCaption="Maintenance Windows List" items={items} - columns={columns} + columns={columns.concat(actions)} pagination={true} sorting={sorting} rowProps={rowProps} search={search} + hasActions={true} /> ); } diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/submit_button.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/submit_button.tsx index d02e003347162..544c093539210 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/submit_button.tsx +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/submit_button.tsx @@ -13,9 +13,10 @@ import * as i18n from '../translations'; interface SubmitButtonProps { isLoading: boolean; + editMode?: boolean; } -export const SubmitButton: React.FC = React.memo(({ isLoading }) => { +export const SubmitButton: React.FC = React.memo(({ isLoading, editMode }) => { const { submit, isSubmitting } = useFormContext(); return ( @@ -26,7 +27,7 @@ export const SubmitButton: React.FC = React.memo(({ isLoading isLoading={isLoading || isSubmitting} onClick={submit} > - {i18n.CREATE_MAINTENANCE_WINDOW} + {editMode ? i18n.SAVE_MAINTENANCE_WINDOW : i18n.CREATE_MAINTENANCE_WINDOW} ); }); diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.test.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.test.ts new file mode 100644 index 0000000000000..9dc72ea30b1c1 --- /dev/null +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.test.ts @@ -0,0 +1,318 @@ +/* + * 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'; + +import { Frequency } from '../constants'; +import { RRuleFrequency } from '../types'; +import { convertFromMaintenanceWindowToForm } from './convert_from_maintenance_window_to_form'; + +describe('convertFromMaintenanceWindowToForm', () => { + const title = 'test'; + const today = '2023-03-22'; + const startDate = moment(today); + const endDate = moment(today).add(2, 'days'); + const duration = endDate.diff(startDate); + + test('should convert a maintenance window that is not recurring', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.YEARLY, + count: 1, + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: false, + }); + }); + + test('should convert a maintenance window that is recurring on a daily schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.DAILY, + interval: 1, + byweekday: ['WE'], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, + ends: 'never', + frequency: Frequency.DAILY, + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a daily schedule until', () => { + const until = moment(today).add(1, 'month').toISOString(); + + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.DAILY, + interval: 1, + byweekday: ['WE'], + until, + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, + ends: 'ondate', + until, + frequency: Frequency.DAILY, + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a daily schedule after x', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.DAILY, + interval: 1, + byweekday: ['WE'], + count: 3, + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, + ends: 'afterx', + count: 3, + frequency: Frequency.DAILY, + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a weekly schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.WEEKLY, + interval: 1, + byweekday: ['WE'], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + ends: 'never', + frequency: Frequency.WEEKLY, + byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a monthly schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.MONTHLY, + interval: 1, + byweekday: ['+4WE'], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + ends: 'never', + frequency: Frequency.MONTHLY, + bymonth: 'weekday', + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a yearly schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.YEARLY, + interval: 1, + bymonth: [2], + bymonthday: [22], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + ends: 'never', + frequency: Frequency.YEARLY, + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a custom daily schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.DAILY, + interval: 1, + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + customFrequency: Frequency.DAILY, + ends: 'never', + frequency: 'CUSTOM', + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a custom weekly schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.WEEKLY, + interval: 1, + byweekday: ['WE', 'TH'], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + byweekday: { 1: false, 2: false, 3: true, 4: true, 5: false, 6: false, 7: false }, + customFrequency: Frequency.WEEKLY, + ends: 'never', + frequency: 'CUSTOM', + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a custom monthly by day schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.MONTHLY, + interval: 1, + bymonthday: [22], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + bymonth: 'day', + customFrequency: Frequency.MONTHLY, + ends: 'never', + frequency: 'CUSTOM', + interval: 1, + }, + }); + }); + + test('should convert a maintenance window that is recurring on a custom yearly schedule', () => { + const maintenanceWindow = convertFromMaintenanceWindowToForm({ + title, + duration, + rRule: { + dtstart: startDate.toISOString(), + tzid: 'UTC', + freq: RRuleFrequency.YEARLY, + interval: 3, + bymonth: [2], + bymonthday: [22], + }, + }); + + expect(maintenanceWindow).toEqual({ + title, + startDate: startDate.toISOString(), + endDate: endDate.toISOString(), + recurring: true, + recurringSchedule: { + customFrequency: Frequency.YEARLY, + ends: 'never', + frequency: 'CUSTOM', + interval: 3, + }, + }); + }); +}); diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.ts new file mode 100644 index 0000000000000..c4b2c551de0cd --- /dev/null +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_from_maintenance_window_to_form.ts @@ -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 moment from 'moment'; +import { has } from 'lodash'; +import { MaintenanceWindow } from '../types'; +import { EndsOptions, Frequency } from '../constants'; +import { FormProps, RecurringScheduleFormProps } from '../components/schema'; +import { getInitialByWeekday } from './get_initial_by_weekday'; +import { RRuleParams } from '../../../../common'; + +export const convertFromMaintenanceWindowToForm = ( + maintenanceWindow: MaintenanceWindow +): FormProps => { + const startDate = maintenanceWindow.rRule.dtstart; + const endDate = moment(startDate).add(maintenanceWindow.duration); + // maintenance window is considered recurring if interval is defined + const recurring = has(maintenanceWindow, 'rRule.interval'); + const form: FormProps = { + title: maintenanceWindow.title, + startDate, + endDate: endDate.toISOString(), + recurring, + }; + if (!recurring) return form; + + const rRule = maintenanceWindow.rRule; + const isCustomFrequency = isCustom(rRule); + const frequency = rRule.freq?.toString() as Frequency; + const ends = rRule.until + ? EndsOptions.ON_DATE + : rRule.count + ? EndsOptions.AFTER_X + : EndsOptions.NEVER; + + const recurringSchedule: RecurringScheduleFormProps = { + frequency: isCustomFrequency ? 'CUSTOM' : frequency, + interval: rRule.interval, + ends, + }; + + if (isCustomFrequency) { + recurringSchedule.customFrequency = frequency; + } + + if (rRule.until) { + recurringSchedule.until = rRule.until; + } + if (rRule.count) { + recurringSchedule.count = rRule.count; + } + if (frequency !== Frequency.MONTHLY && rRule.byweekday) { + recurringSchedule.byweekday = getInitialByWeekday( + rRule.byweekday as string[], + moment(startDate) + ); + } + if (frequency === Frequency.MONTHLY) { + if (rRule.byweekday) { + recurringSchedule.bymonth = 'weekday'; + } else if (rRule.bymonthday) { + recurringSchedule.bymonth = 'day'; + } + } + + form.recurringSchedule = recurringSchedule; + + return form; +}; + +const isCustom = (rRule: RRuleParams) => { + const freq = rRule.freq?.toString() as Frequency; + // interval is greater than 1 + if (rRule.interval && rRule.interval > 1) { + return true; + } + // frequency is daily and no weekdays are selected + if (freq && freq === Frequency.DAILY && !rRule.byweekday) { + return true; + } + // frequency is weekly and there are multiple weekdays selected + if (freq && freq === Frequency.WEEKLY && rRule.byweekday && rRule.byweekday.length > 1) { + return true; + } + // frequency is monthly and by month day is selected + if (freq && freq === Frequency.MONTHLY && rRule.bymonthday) { + return true; + } + return false; +}; diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.ts index 42935ae291934..b284e50579deb 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.ts @@ -34,45 +34,43 @@ export const convertToRRule = ( count: 1, }; - if (recurringForm) { - let form = recurringForm; - if (recurringForm.frequency !== 'CUSTOM') { - form = { ...recurringForm, ...presets[recurringForm.frequency] }; - } - - const frequency = form.customFrequency ? form.customFrequency : (form.frequency as Frequency); - rRule.freq = RRuleFrequencyMap[frequency]; + let form = recurringForm; + if (recurringForm.frequency !== 'CUSTOM') { + form = { ...recurringForm, ...presets[recurringForm.frequency] }; + } - rRule.interval = form.interval; + const frequency = form.customFrequency ? form.customFrequency : (form.frequency as Frequency); + rRule.freq = RRuleFrequencyMap[frequency]; - if (form.until) { - rRule.until = form.until; - } + rRule.interval = form.interval; - if (form.count) { - rRule.count = form.count; - } + if (form.until) { + rRule.until = form.until; + } - if (form.byweekday) { - const byweekday = form.byweekday; - rRule.byweekday = Object.keys(byweekday) - .filter((k) => byweekday[k] === true) - .map((n) => ISO_WEEKDAYS_TO_RRULE[Number(n)]); - } + if (form.count) { + rRule.count = form.count; + } - if (form.bymonth) { - if (form.bymonth === 'day') { - rRule.bymonthday = [startDate.date()]; - } else if (form.bymonth === 'weekday') { - rRule.byweekday = [getNthByWeekday(startDate)]; - } - } + if (form.byweekday) { + const byweekday = form.byweekday; + rRule.byweekday = Object.keys(byweekday) + .filter((k) => byweekday[k] === true) + .map((n) => ISO_WEEKDAYS_TO_RRULE[Number(n)]); + } - if (frequency === Frequency.YEARLY) { - rRule.bymonth = [startDate.month()]; + if (form.bymonth) { + if (form.bymonth === 'day') { rRule.bymonthday = [startDate.date()]; + } else if (form.bymonth === 'weekday') { + rRule.byweekday = [getNthByWeekday(startDate)]; } } + if (frequency === Frequency.YEARLY) { + rRule.bymonth = [startDate.month()]; + rRule.bymonthday = [startDate.date()]; + } + return rRule; }; diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/maintenance_window_edit_page.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/maintenance_window_edit_page.tsx new file mode 100644 index 0000000000000..d8969988ee7d9 --- /dev/null +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/maintenance_window_edit_page.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 { useParams } from 'react-router-dom'; +import { EuiPageSection, EuiSpacer } from '@elastic/eui'; + +import { useBreadcrumbs } from '../../hooks/use_breadcrumbs'; +import { useMaintenanceWindowsNavigation } from '../../hooks/use_navigation'; +import * as i18n from './translations'; +import { PageHeader } from './components/page_header'; +import { CreateMaintenanceWindowForm } from './components/create_maintenance_windows_form'; +import { AlertingDeepLinkId } from '../../config'; +import { useGetMaintenanceWindow } from '../../hooks/use_get_maintenance_window'; +import { CenterJustifiedSpinner } from './components/center_justified_spinner'; + +export const MaintenanceWindowsEditPage = React.memo(() => { + const { navigateToMaintenanceWindows } = useMaintenanceWindowsNavigation(); + + useBreadcrumbs(AlertingDeepLinkId.maintenanceWindowsEdit); + + const { maintenanceWindowId } = useParams<{ maintenanceWindowId: string }>(); + const { maintenanceWindow, isLoading, isError } = useGetMaintenanceWindow(maintenanceWindowId); + + if (isError) { + navigateToMaintenanceWindows(); + } + + if (!maintenanceWindow || isLoading) { + return ; + } + + return ( + + + + + + ); +}); +MaintenanceWindowsEditPage.displayName = 'MaintenanceWindowsEditPage'; +// eslint-disable-next-line import/no-default-export +export { MaintenanceWindowsEditPage as default }; diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts index 64b0c0fae247f..7da8ad80a5932 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts @@ -428,3 +428,21 @@ export const TABLE_START_TIME = i18n.translate( export const TABLE_END_TIME = i18n.translate('xpack.alerting.maintenanceWindows.table.endTime', { defaultMessage: 'End time', }); + +export const TABLE_ACTION_EDIT = i18n.translate('xpack.alerting.maintenanceWindows.table.edit', { + defaultMessage: 'Edit', +}); + +export const EDIT_MAINTENANCE_WINDOW = i18n.translate( + 'xpack.alerting.maintenanceWindows.edit.maintenanceWindow', + { + defaultMessage: 'Edit maintenance window', + } +); + +export const SAVE_MAINTENANCE_WINDOW = i18n.translate( + 'xpack.alerting.maintenanceWindows.save.maintenanceWindow', + { + defaultMessage: 'Save maintenance window', + } +); diff --git a/x-pack/plugins/alerting/public/services/maintenance_windows_api/create.ts b/x-pack/plugins/alerting/public/services/maintenance_windows_api/create.ts index e4032edbef640..73323b257d3e2 100644 --- a/x-pack/plugins/alerting/public/services/maintenance_windows_api/create.ts +++ b/x-pack/plugins/alerting/public/services/maintenance_windows_api/create.ts @@ -12,12 +12,12 @@ import { INTERNAL_BASE_ALERTING_API_PATH } from '../../../common'; const rewriteBodyRequest: RewriteResponseCase = ({ rRule, ...res }) => ({ ...res, - r_rule: { ...rRule }, + r_rule: rRule, }); const rewriteBodyRes: RewriteRequestCase = ({ r_rule: rRule, ...rest }) => ({ ...rest, - rRule: { ...rRule }, + rRule, }); export async function createMaintenanceWindow({ diff --git a/x-pack/plugins/alerting/public/services/maintenance_windows_api/find.ts b/x-pack/plugins/alerting/public/services/maintenance_windows_api/find.ts index cc407c2eacb12..e54028d30dfa8 100644 --- a/x-pack/plugins/alerting/public/services/maintenance_windows_api/find.ts +++ b/x-pack/plugins/alerting/public/services/maintenance_windows_api/find.ts @@ -30,7 +30,7 @@ const transform: RewriteRequestCase = ({ }) => ({ ...rest, expirationDate, - rRule: { ...rRule }, + rRule, eventStartTime, eventEndTime, createdBy, diff --git a/x-pack/plugins/alerting/public/services/maintenance_windows_api/get.test.ts b/x-pack/plugins/alerting/public/services/maintenance_windows_api/get.test.ts new file mode 100644 index 0000000000000..f19d77e55b405 --- /dev/null +++ b/x-pack/plugins/alerting/public/services/maintenance_windows_api/get.test.ts @@ -0,0 +1,51 @@ +/* + * 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 { httpServiceMock } from '@kbn/core/public/mocks'; +import { MaintenanceWindow } from '../../pages/maintenance_windows/types'; +import { getMaintenanceWindow } from './get'; + +const http = httpServiceMock.createStartContract(); + +beforeEach(() => jest.resetAllMocks()); + +describe('getMaintenanceWindow', () => { + test('should call get maintenance windows api', async () => { + const apiResponse = { + title: 'test', + duration: 1, + r_rule: { + dtstart: '2023-03-23T19:16:21.293Z', + tzid: 'America/New_York', + freq: 3, + interval: 1, + byweekday: ['TH'], + }, + }; + http.get.mockResolvedValueOnce(apiResponse); + + const maintenanceWindow: MaintenanceWindow = { + title: 'test', + duration: 1, + rRule: { + dtstart: '2023-03-23T19:16:21.293Z', + tzid: 'America/New_York', + freq: 3, + interval: 1, + byweekday: ['TH'], + }, + }; + + const result = await getMaintenanceWindow({ http, maintenanceWindowId: '123' }); + expect(result).toEqual(maintenanceWindow); + expect(http.get.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + "/internal/alerting/rules/maintenance_window/123", + ] + `); + }); +}); diff --git a/x-pack/plugins/alerting/public/services/maintenance_windows_api/get.ts b/x-pack/plugins/alerting/public/services/maintenance_windows_api/get.ts new file mode 100644 index 0000000000000..d353f2b45124b --- /dev/null +++ b/x-pack/plugins/alerting/public/services/maintenance_windows_api/get.ts @@ -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 { HttpSetup } from '@kbn/core/public'; +import { AsApiContract, RewriteRequestCase } from '@kbn/actions-plugin/common'; + +import { MaintenanceWindow } from '../../pages/maintenance_windows/types'; +import { INTERNAL_BASE_ALERTING_API_PATH } from '../../../common'; + +const rewriteBodyRes: RewriteRequestCase = ({ r_rule: rRule, ...rest }) => ({ + ...rest, + rRule, +}); + +export async function getMaintenanceWindow({ + http, + maintenanceWindowId, +}: { + http: HttpSetup; + maintenanceWindowId: string; +}): Promise { + const res = await http.get>( + `${INTERNAL_BASE_ALERTING_API_PATH}/rules/maintenance_window/${encodeURIComponent( + maintenanceWindowId + )}` + ); + + return rewriteBodyRes(res); +} diff --git a/x-pack/plugins/alerting/public/services/maintenance_windows_api/update.test.ts b/x-pack/plugins/alerting/public/services/maintenance_windows_api/update.test.ts new file mode 100644 index 0000000000000..4c46ac4519928 --- /dev/null +++ b/x-pack/plugins/alerting/public/services/maintenance_windows_api/update.test.ts @@ -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 { httpServiceMock } from '@kbn/core/public/mocks'; +import { MaintenanceWindow } from '../../pages/maintenance_windows/types'; +import { updateMaintenanceWindow } from './update'; + +const http = httpServiceMock.createStartContract(); + +beforeEach(() => jest.resetAllMocks()); + +describe('updateMaintenanceWindow', () => { + test('should call update maintenance window api', async () => { + const apiResponse = { + title: 'test', + duration: 1, + r_rule: { + dtstart: '2023-03-23T19:16:21.293Z', + tzid: 'America/New_York', + freq: 3, + interval: 1, + byweekday: ['TH'], + }, + }; + http.post.mockResolvedValueOnce(apiResponse); + + const maintenanceWindow: MaintenanceWindow = { + title: 'test', + duration: 1, + rRule: { + dtstart: '2023-03-23T19:16:21.293Z', + tzid: 'America/New_York', + freq: 3, + interval: 1, + byweekday: ['TH'], + }, + }; + + const result = await updateMaintenanceWindow({ + http, + maintenanceWindowId: '123', + maintenanceWindow, + }); + expect(result).toEqual(maintenanceWindow); + expect(http.post.mock.calls[0]).toMatchInlineSnapshot(` + Array [ + "/internal/alerting/rules/maintenance_window/123", + Object { + "body": "{\\"title\\":\\"test\\",\\"duration\\":1,\\"r_rule\\":{\\"dtstart\\":\\"2023-03-23T19:16:21.293Z\\",\\"tzid\\":\\"America/New_York\\",\\"freq\\":3,\\"interval\\":1,\\"byweekday\\":[\\"TH\\"]}}", + }, + ] + `); + }); +}); diff --git a/x-pack/plugins/alerting/public/services/maintenance_windows_api/update.ts b/x-pack/plugins/alerting/public/services/maintenance_windows_api/update.ts new file mode 100644 index 0000000000000..c8328c23e825d --- /dev/null +++ b/x-pack/plugins/alerting/public/services/maintenance_windows_api/update.ts @@ -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 { HttpSetup } from '@kbn/core/public'; +import { AsApiContract, RewriteRequestCase, RewriteResponseCase } from '@kbn/actions-plugin/common'; + +import { MaintenanceWindow } from '../../pages/maintenance_windows/types'; +import { INTERNAL_BASE_ALERTING_API_PATH } from '../../../common'; + +const rewriteBodyRequest: RewriteResponseCase = ({ rRule, ...res }) => ({ + ...res, + r_rule: rRule, +}); + +const rewriteBodyRes: RewriteRequestCase = ({ r_rule: rRule, ...rest }) => ({ + ...rest, + rRule, +}); + +export async function updateMaintenanceWindow({ + http, + maintenanceWindowId, + maintenanceWindow, +}: { + http: HttpSetup; + maintenanceWindowId: string; + maintenanceWindow: MaintenanceWindow; +}): Promise { + const res = await http.post>( + `${INTERNAL_BASE_ALERTING_API_PATH}/rules/maintenance_window/${encodeURIComponent( + maintenanceWindowId + )}`, + { body: JSON.stringify(rewriteBodyRequest(maintenanceWindow)) } + ); + + return rewriteBodyRes(res); +} From 0b71c7458df0d78869668dbe38c7b11757da3193 Mon Sep 17 00:00:00 2001 From: Dominique Clarke Date: Thu, 20 Apr 2023 10:51:04 -0400 Subject: [PATCH 134/144] [Synthetics] add default email recovery message (#154862) ## Summary Resolves https://github.com/elastic/kibana/issues/153891 Screen Shot 2023-04-18 at 7 50 20 PM Down email Recovered email Screen Shot 2023-04-18 at 7 50 30 PM Please note the `recoverd` typo in the screenshot has been addressed in commits [7c4040f](https://github.com/elastic/kibana/pull/154862/commits/7c4040fda316f0565eb1ea429417b0fa91f6424d) and [56f637b](https://github.com/elastic/kibana/pull/154862/commits/56f637b82edf81b7ab6dafd54c197f1b945c487b) ### Testing This PR is extremely tricky to test. I have deployed this branch to my own cloud account. This ensures that I can control the allowlist setting for emails on cloud. If you want, I can give you the cloud cluster where this branch is hosted and if you give me your email I can add you to my allowlist settings for you to test. The cloud cluster is current on commit [f889500](https://github.com/elastic/kibana/pull/154862/commits/f889500dc2b217fefb1a02a9e3c15b7cad8217cb) --- .../common/rules/alert_actions.test.ts | 140 ++++++++++++++- .../synthetics/common/rules/alert_actions.ts | 17 +- .../rules/legacy_uptime/translations.ts | 160 ++++++++++++++++++ .../common/rules/synthetics/translations.ts | 10 ++ .../plugins/synthetics/common/translations.ts | 143 ---------------- .../lib/alert_types/duration_anomaly.tsx | 2 +- .../lib/alert_types/monitor_status.tsx | 2 +- .../legacy_uptime/lib/alert_types/tls.tsx | 2 +- .../lib/alert_types/tls_legacy.tsx | 2 +- .../public/legacy_uptime/state/api/alerts.ts | 3 +- .../lib/alerts/duration_anomaly.ts | 2 +- .../server/legacy_uptime/lib/alerts/tls.ts | 2 +- .../default_alerts/status_alert_service.ts | 2 + .../uptime/simple_down_alert.ts | 2 +- 14 files changed, 333 insertions(+), 156 deletions(-) create mode 100644 x-pack/plugins/synthetics/common/rules/legacy_uptime/translations.ts diff --git a/x-pack/plugins/synthetics/common/rules/alert_actions.test.ts b/x-pack/plugins/synthetics/common/rules/alert_actions.test.ts index 219790bfe991c..d31e0cd74c360 100644 --- a/x-pack/plugins/synthetics/common/rules/alert_actions.test.ts +++ b/x-pack/plugins/synthetics/common/rules/alert_actions.test.ts @@ -9,7 +9,7 @@ import { populateAlertActions } from './alert_actions'; import { ActionConnector } from './types'; import { MONITOR_STATUS } from '../constants/uptime_alerts'; import { MONITOR_STATUS as SYNTHETICS_MONITOR_STATUS } from '../constants/synthetics_alerts'; -import { MonitorStatusTranslations } from '../translations'; +import { MonitorStatusTranslations } from './legacy_uptime/translations'; import { SyntheticsMonitorStatusTranslations } from './synthetics/translations'; describe('Legacy Alert Actions factory', () => { @@ -33,6 +33,7 @@ describe('Legacy Alert Actions factory', () => { defaultActionMessage: MonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: MonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: MonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: MonitorStatusTranslations.defaultRecoverySubjectMessage, }, isLegacy: true, }); @@ -60,6 +61,70 @@ describe('Legacy Alert Actions factory', () => { ]); }); + it('generate expected action for email', async () => { + const resp = populateAlertActions({ + groupId: MONITOR_STATUS.id, + defaultActions: [ + { + actionTypeId: '.email', + group: 'xpack.uptime.alerts.actionGroups.monitorStatus', + params: { + dedupKey: 'always-downxpack.uptime.alerts.actionGroups.monitorStatus', + eventAction: 'trigger', + severity: 'error', + summary: MonitorStatusTranslations.defaultActionMessage, + }, + id: 'f2a3b195-ed76-499a-805d-82d24d4eeba9', + }, + ] as unknown as ActionConnector[], + translations: { + defaultActionMessage: MonitorStatusTranslations.defaultActionMessage, + defaultRecoveryMessage: MonitorStatusTranslations.defaultRecoveryMessage, + defaultSubjectMessage: MonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: MonitorStatusTranslations.defaultRecoverySubjectMessage, + }, + isLegacy: true, + defaultEmail: { + to: ['test@email.com'], + }, + }); + expect(resp).toEqual([ + { + group: 'recovered', + id: 'f2a3b195-ed76-499a-805d-82d24d4eeba9', + params: { + bcc: [], + cc: [], + kibanaFooterLink: { + path: '', + text: '', + }, + message: + 'Alert for monitor {{context.monitorName}} with url {{{context.monitorUrl}}} from {{context.observerLocation}} has recovered', + subject: + 'Monitor {{context.monitorName}} with url {{{context.monitorUrl}}} has recovered', + to: ['test@email.com'], + }, + }, + { + group: 'xpack.uptime.alerts.actionGroups.monitorStatus', + id: 'f2a3b195-ed76-499a-805d-82d24d4eeba9', + params: { + bcc: [], + cc: [], + kibanaFooterLink: { + path: '', + text: '', + }, + message: + 'Monitor {{context.monitorName}} with url {{{context.monitorUrl}}} from {{context.observerLocation}} {{{context.statusMessage}}} The latest error message is {{{context.latestErrorMessage}}}, checked at {{context.checkedAt}}', + subject: 'Monitor {{context.monitorName}} with url {{{context.monitorUrl}}} is down', + to: ['test@email.com'], + }, + }, + ]); + }); + it('generate expected action for index', async () => { const resp = populateAlertActions({ groupId: MONITOR_STATUS.id, @@ -80,6 +145,7 @@ describe('Legacy Alert Actions factory', () => { defaultActionMessage: MonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: MonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: MonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: MonitorStatusTranslations.defaultRecoverySubjectMessage, }, isLegacy: true, }); @@ -141,6 +207,7 @@ describe('Legacy Alert Actions factory', () => { defaultActionMessage: MonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: MonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: MonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: MonitorStatusTranslations.defaultRecoverySubjectMessage, }, }); expect(resp).toEqual([ @@ -189,6 +256,8 @@ describe('Alert Actions factory', () => { defaultActionMessage: SyntheticsMonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: SyntheticsMonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: SyntheticsMonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: + SyntheticsMonitorStatusTranslations.defaultRecoverySubjectMessage, }, }); expect(resp).toEqual([ @@ -235,6 +304,8 @@ describe('Alert Actions factory', () => { defaultActionMessage: SyntheticsMonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: SyntheticsMonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: SyntheticsMonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: + SyntheticsMonitorStatusTranslations.defaultRecoverySubjectMessage, }, }); expect(resp).toEqual([ @@ -295,6 +366,8 @@ describe('Alert Actions factory', () => { defaultActionMessage: SyntheticsMonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: SyntheticsMonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: SyntheticsMonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: + SyntheticsMonitorStatusTranslations.defaultRecoverySubjectMessage, }, }); expect(resp).toEqual([ @@ -320,4 +393,69 @@ describe('Alert Actions factory', () => { }, ]); }); + + it('generate expected action for email action connector', async () => { + const resp = populateAlertActions({ + groupId: SYNTHETICS_MONITOR_STATUS.id, + defaultActions: [ + { + actionTypeId: '.email', + group: 'xpack.synthetics.alerts.actionGroups.monitorStatus', + params: { + dedupKey: 'always-downxpack.uptime.alerts.actionGroups.monitorStatus', + eventAction: 'trigger', + severity: 'error', + summary: + 'Monitor {{context.monitorName}} with url {{{context.monitorUrl}}} from {{context.observerLocation}} {{{context.statusMessage}}} The latest error message is {{{context.latestErrorMessage}}}', + }, + id: 'f2a3b195-ed76-499a-805d-82d24d4eeba9', + }, + ] as unknown as ActionConnector[], + defaultEmail: { + to: ['test@email.com'], + }, + translations: { + defaultActionMessage: SyntheticsMonitorStatusTranslations.defaultActionMessage, + defaultRecoveryMessage: SyntheticsMonitorStatusTranslations.defaultRecoveryMessage, + defaultSubjectMessage: SyntheticsMonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: + SyntheticsMonitorStatusTranslations.defaultRecoverySubjectMessage, + }, + }); + expect(resp).toEqual([ + { + group: 'recovered', + id: 'f2a3b195-ed76-499a-805d-82d24d4eeba9', + params: { + bcc: [], + cc: [], + kibanaFooterLink: { + path: '', + text: '', + }, + message: + 'The alert for the monitor {{context.monitorName}} checking {{{context.monitorUrl}}} from {{context.locationName}} is no longer active: {{context.recoveryReason}}.', + subject: + 'The monitor {{context.monitorName}} checking {{{context.monitorUrl}}} has recovered.', + to: ['test@email.com'], + }, + }, + { + group: 'xpack.synthetics.alerts.actionGroups.monitorStatus', + id: 'f2a3b195-ed76-499a-805d-82d24d4eeba9', + params: { + bcc: [], + cc: [], + kibanaFooterLink: { + path: '', + text: '', + }, + message: + 'The monitor {{context.monitorName}} checking {{{context.monitorUrl}}} from {{context.locationName}} last ran at {{context.checkedAt}} and is {{{context.status}}}. The last error received is: {{{context.lastErrorMessage}}}.', + subject: 'The monitor {{context.monitorName}} checking {{{context.monitorUrl}}} is down.', + to: ['test@email.com'], + }, + }, + ]); + }); }); diff --git a/x-pack/plugins/synthetics/common/rules/alert_actions.ts b/x-pack/plugins/synthetics/common/rules/alert_actions.ts index 3f8cedf715536..0c9782108743f 100644 --- a/x-pack/plugins/synthetics/common/rules/alert_actions.ts +++ b/x-pack/plugins/synthetics/common/rules/alert_actions.ts @@ -36,6 +36,7 @@ interface Translations { defaultActionMessage: string; defaultRecoveryMessage: string; defaultSubjectMessage: string; + defaultRecoverySubjectMessage: string; } export function populateAlertActions({ @@ -107,6 +108,8 @@ export function populateAlertActions({ case EMAIL_ACTION_ID: if (defaultEmail) { action.params = getEmailActionParams(translations, defaultEmail); + recoveredAction.params = getEmailActionParams(translations, defaultEmail, true); + actions.push(recoveredAction); } break; default: @@ -270,13 +273,19 @@ function getJiraActionParams({ defaultActionMessage }: Translations): JiraAction } function getEmailActionParams( - { defaultActionMessage, defaultSubjectMessage }: Translations, - defaultEmail: DefaultEmail + { + defaultActionMessage, + defaultSubjectMessage, + defaultRecoverySubjectMessage, + defaultRecoveryMessage, + }: Translations, + defaultEmail: DefaultEmail, + isRecovery?: boolean ): EmailActionParams { return { to: defaultEmail.to, - subject: defaultSubjectMessage, - message: defaultActionMessage, + subject: isRecovery ? defaultRecoverySubjectMessage : defaultSubjectMessage, + message: isRecovery ? defaultRecoveryMessage : defaultActionMessage, cc: defaultEmail.cc ?? [], bcc: defaultEmail.bcc ?? [], kibanaFooterLink: { diff --git a/x-pack/plugins/synthetics/common/rules/legacy_uptime/translations.ts b/x-pack/plugins/synthetics/common/rules/legacy_uptime/translations.ts new file mode 100644 index 0000000000000..fab705daeb0c0 --- /dev/null +++ b/x-pack/plugins/synthetics/common/rules/legacy_uptime/translations.ts @@ -0,0 +1,160 @@ +/* + * 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 { i18n } from '@kbn/i18n'; + +export const MonitorStatusTranslations = { + defaultActionMessage: i18n.translate( + 'xpack.synthetics.alerts.monitorStatus.defaultActionMessage', + { + defaultMessage: + 'Monitor {monitorName} with url {monitorUrl} from {observerLocation} {statusMessage} The latest error message is {latestErrorMessage}, checked at {checkedAt}', + values: { + monitorName: '{{context.monitorName}}', + monitorUrl: '{{{context.monitorUrl}}}', + statusMessage: '{{{context.statusMessage}}}', + latestErrorMessage: '{{{context.latestErrorMessage}}}', + observerLocation: '{{context.observerLocation}}', + checkedAt: '{{context.checkedAt}}', + }, + } + ), + defaultSubjectMessage: i18n.translate( + 'xpack.synthetics.alerts.monitorStatus.defaultSubjectMessage', + { + defaultMessage: 'Monitor {monitorName} with url {monitorUrl} is down', + values: { + monitorName: '{{context.monitorName}}', + monitorUrl: '{{{context.monitorUrl}}}', + }, + } + ), + defaultRecoverySubjectMessage: i18n.translate( + 'xpack.synthetics.alerts.monitorStatus.defaultRecoverySubjectMessage', + { + defaultMessage: 'Monitor {monitorName} with url {monitorUrl} has recovered', + values: { + monitorName: '{{context.monitorName}}', + monitorUrl: '{{{context.monitorUrl}}}', + }, + } + ), + defaultRecoveryMessage: i18n.translate( + 'xpack.synthetics.alerts.monitorStatus.defaultRecoveryMessage', + { + defaultMessage: + 'Alert for monitor {monitorName} with url {monitorUrl} from {observerLocation} has recovered', + values: { + monitorName: '{{context.monitorName}}', + monitorUrl: '{{{context.monitorUrl}}}', + observerLocation: '{{context.observerLocation}}', + }, + } + ), + name: i18n.translate('xpack.synthetics.alerts.monitorStatus.clientName', { + defaultMessage: 'Uptime monitor status', + }), + description: i18n.translate('xpack.synthetics.alerts.monitorStatus.description', { + defaultMessage: 'Alert when a monitor is down or an availability threshold is breached.', + }), +}; + +export const TlsTranslations = { + defaultActionMessage: i18n.translate('xpack.synthetics.alerts.tls.defaultActionMessage', { + defaultMessage: `Detected TLS certificate {commonName} from issuer {issuer} is {status}. Certificate {summary}`, + values: { + commonName: '{{context.commonName}}', + issuer: '{{context.issuer}}', + summary: '{{context.summary}}', + status: '{{context.status}}', + }, + }), + defaultRecoveryMessage: i18n.translate('xpack.synthetics.alerts.tls.defaultRecoveryMessage', { + defaultMessage: `Alert for TLS certificate {commonName} from issuer {issuer} has recovered`, + values: { + commonName: '{{context.commonName}}', + issuer: '{{context.issuer}}', + }, + }), + name: i18n.translate('xpack.synthetics.alerts.tls.clientName', { + defaultMessage: 'Uptime TLS', + }), + description: i18n.translate('xpack.synthetics.alerts.tls.description', { + defaultMessage: 'Alert when the TLS certificate of an Uptime monitor is about to expire.', + }), +}; + +export const TlsTranslationsLegacy = { + defaultActionMessage: i18n.translate('xpack.synthetics.alerts.tls.legacy.defaultActionMessage', { + defaultMessage: `Detected {count} TLS certificates expiring or becoming too old. +{expiringConditionalOpen} +Expiring cert count: {expiringCount} +Expiring Certificates: {expiringCommonNameAndDate} +{expiringConditionalClose} +{agingConditionalOpen} +Aging cert count: {agingCount} +Aging Certificates: {agingCommonNameAndDate} +{agingConditionalClose} +`, + values: { + count: '{{state.count}}', + expiringCount: '{{state.expiringCount}}', + expiringCommonNameAndDate: '{{state.expiringCommonNameAndDate}}', + expiringConditionalOpen: '{{#state.hasExpired}}', + expiringConditionalClose: '{{/state.hasExpired}}', + agingCount: '{{state.agingCount}}', + agingCommonNameAndDate: '{{state.agingCommonNameAndDate}}', + agingConditionalOpen: '{{#state.hasAging}}', + agingConditionalClose: '{{/state.hasAging}}', + }, + }), + name: i18n.translate('xpack.synthetics.alerts.tls.legacy.clientName', { + defaultMessage: 'Uptime TLS (Legacy)', + }), + description: i18n.translate('xpack.synthetics.alerts.tls.legacy.description', { + defaultMessage: + 'Alert when the TLS certificate of an Uptime monitor is about to expire. This alert will be deprecated in a future version.', + }), +}; + +export const DurationAnomalyTranslations = { + defaultActionMessage: i18n.translate( + 'xpack.synthetics.alerts.durationAnomaly.defaultActionMessage', + { + defaultMessage: `Abnormal ({severity} level) response time detected on {monitor} with url {monitorUrl} at {anomalyStartTimestamp}. Anomaly severity score is {severityScore}. +Response times as high as {slowestAnomalyResponse} have been detected from location {observerLocation}. Expected response time is {expectedResponseTime}.`, + values: { + severity: '{{context.severity}}', + anomalyStartTimestamp: '{{context.anomalyStartTimestamp}}', + monitor: '{{context.monitor}}', + monitorUrl: '{{{context.monitorUrl}}}', + slowestAnomalyResponse: '{{context.slowestAnomalyResponse}}', + expectedResponseTime: '{{context.expectedResponseTime}}', + severityScore: '{{context.severityScore}}', + observerLocation: '{{context.observerLocation}}', + }, + } + ), + defaultRecoveryMessage: i18n.translate( + 'xpack.synthetics.alerts.durationAnomaly.defaultRecoveryMessage', + { + defaultMessage: `Alert for abnormal ({severity} level) response time detected on monitor {monitor} with url {monitorUrl} from location {observerLocation} at {anomalyStartTimestamp} has recovered`, + values: { + severity: '{{context.severity}}', + anomalyStartTimestamp: '{{context.anomalyStartTimestamp}}', + monitor: '{{context.monitor}}', + monitorUrl: '{{{context.monitorUrl}}}', + observerLocation: '{{context.observerLocation}}', + }, + } + ), + name: i18n.translate('xpack.synthetics.alerts.durationAnomaly.clientName', { + defaultMessage: 'Uptime Duration Anomaly', + }), + description: i18n.translate('xpack.synthetics.alerts.durationAnomaly.description', { + defaultMessage: 'Alert when the Uptime monitor duration is anomalous.', + }), +}; diff --git a/x-pack/plugins/synthetics/common/rules/synthetics/translations.ts b/x-pack/plugins/synthetics/common/rules/synthetics/translations.ts index a6df24bfb5f8d..167c436dbed98 100644 --- a/x-pack/plugins/synthetics/common/rules/synthetics/translations.ts +++ b/x-pack/plugins/synthetics/common/rules/synthetics/translations.ts @@ -33,6 +33,16 @@ export const SyntheticsMonitorStatusTranslations = { }, } ), + defaultRecoverySubjectMessage: i18n.translate( + 'xpack.synthetics.alerts.syntheticsMonitorStatus.defaultRecoverySubjectMessage', + { + defaultMessage: 'The monitor {monitorName} checking {monitorUrl} has recovered.', + values: { + monitorName: '{{context.monitorName}}', + monitorUrl: '{{{context.monitorUrl}}}', + }, + } + ), defaultRecoveryMessage: i18n.translate( 'xpack.synthetics.alerts.syntheticsMonitorStatus.defaultRecoveryMessage', { diff --git a/x-pack/plugins/synthetics/common/translations.ts b/x-pack/plugins/synthetics/common/translations.ts index bd761456aa7b7..ac2bec7a5506b 100644 --- a/x-pack/plugins/synthetics/common/translations.ts +++ b/x-pack/plugins/synthetics/common/translations.ts @@ -20,146 +20,3 @@ export const VALUE_MUST_BE_AN_INTEGER = i18n.translate( defaultMessage: 'Value must be an integer.', } ); - -export const MonitorStatusTranslations = { - defaultActionMessage: i18n.translate( - 'xpack.synthetics.alerts.monitorStatus.defaultActionMessage', - { - defaultMessage: - 'Monitor {monitorName} with url {monitorUrl} from {observerLocation} {statusMessage} The latest error message is {latestErrorMessage}, checked at {checkedAt}', - values: { - monitorName: '{{context.monitorName}}', - monitorUrl: '{{{context.monitorUrl}}}', - statusMessage: '{{{context.statusMessage}}}', - latestErrorMessage: '{{{context.latestErrorMessage}}}', - observerLocation: '{{context.observerLocation}}', - checkedAt: '{{context.checkedAt}}', - }, - } - ), - defaultSubjectMessage: i18n.translate( - 'xpack.synthetics.alerts.monitorStatus.defaultSubjectMessage', - { - defaultMessage: 'Monitor {monitorName} with url {monitorUrl} is down', - values: { - monitorName: '{{context.monitorName}}', - monitorUrl: '{{{context.monitorUrl}}}', - }, - } - ), - defaultRecoveryMessage: i18n.translate( - 'xpack.synthetics.alerts.monitorStatus.defaultRecoveryMessage', - { - defaultMessage: - 'Alert for monitor {monitorName} with url {monitorUrl} from {observerLocation} has recovered', - values: { - monitorName: '{{context.monitorName}}', - monitorUrl: '{{{context.monitorUrl}}}', - observerLocation: '{{context.observerLocation}}', - }, - } - ), - name: i18n.translate('xpack.synthetics.alerts.monitorStatus.clientName', { - defaultMessage: 'Uptime monitor status', - }), - description: i18n.translate('xpack.synthetics.alerts.monitorStatus.description', { - defaultMessage: 'Alert when a monitor is down or an availability threshold is breached.', - }), -}; - -export const TlsTranslations = { - defaultActionMessage: i18n.translate('xpack.synthetics.alerts.tls.defaultActionMessage', { - defaultMessage: `Detected TLS certificate {commonName} from issuer {issuer} is {status}. Certificate {summary}`, - values: { - commonName: '{{context.commonName}}', - issuer: '{{context.issuer}}', - summary: '{{context.summary}}', - status: '{{context.status}}', - }, - }), - defaultRecoveryMessage: i18n.translate('xpack.synthetics.alerts.tls.defaultRecoveryMessage', { - defaultMessage: `Alert for TLS certificate {commonName} from issuer {issuer} has recovered`, - values: { - commonName: '{{context.commonName}}', - issuer: '{{context.issuer}}', - }, - }), - name: i18n.translate('xpack.synthetics.alerts.tls.clientName', { - defaultMessage: 'Uptime TLS', - }), - description: i18n.translate('xpack.synthetics.alerts.tls.description', { - defaultMessage: 'Alert when the TLS certificate of an Uptime monitor is about to expire.', - }), -}; - -export const TlsTranslationsLegacy = { - defaultActionMessage: i18n.translate('xpack.synthetics.alerts.tls.legacy.defaultActionMessage', { - defaultMessage: `Detected {count} TLS certificates expiring or becoming too old. -{expiringConditionalOpen} -Expiring cert count: {expiringCount} -Expiring Certificates: {expiringCommonNameAndDate} -{expiringConditionalClose} -{agingConditionalOpen} -Aging cert count: {agingCount} -Aging Certificates: {agingCommonNameAndDate} -{agingConditionalClose} -`, - values: { - count: '{{state.count}}', - expiringCount: '{{state.expiringCount}}', - expiringCommonNameAndDate: '{{state.expiringCommonNameAndDate}}', - expiringConditionalOpen: '{{#state.hasExpired}}', - expiringConditionalClose: '{{/state.hasExpired}}', - agingCount: '{{state.agingCount}}', - agingCommonNameAndDate: '{{state.agingCommonNameAndDate}}', - agingConditionalOpen: '{{#state.hasAging}}', - agingConditionalClose: '{{/state.hasAging}}', - }, - }), - name: i18n.translate('xpack.synthetics.alerts.tls.legacy.clientName', { - defaultMessage: 'Uptime TLS (Legacy)', - }), - description: i18n.translate('xpack.synthetics.alerts.tls.legacy.description', { - defaultMessage: - 'Alert when the TLS certificate of an Uptime monitor is about to expire. This alert will be deprecated in a future version.', - }), -}; - -export const DurationAnomalyTranslations = { - defaultActionMessage: i18n.translate( - 'xpack.synthetics.alerts.durationAnomaly.defaultActionMessage', - { - defaultMessage: `Abnormal ({severity} level) response time detected on {monitor} with url {monitorUrl} at {anomalyStartTimestamp}. Anomaly severity score is {severityScore}. -Response times as high as {slowestAnomalyResponse} have been detected from location {observerLocation}. Expected response time is {expectedResponseTime}.`, - values: { - severity: '{{context.severity}}', - anomalyStartTimestamp: '{{context.anomalyStartTimestamp}}', - monitor: '{{context.monitor}}', - monitorUrl: '{{{context.monitorUrl}}}', - slowestAnomalyResponse: '{{context.slowestAnomalyResponse}}', - expectedResponseTime: '{{context.expectedResponseTime}}', - severityScore: '{{context.severityScore}}', - observerLocation: '{{context.observerLocation}}', - }, - } - ), - defaultRecoveryMessage: i18n.translate( - 'xpack.synthetics.alerts.durationAnomaly.defaultRecoveryMessage', - { - defaultMessage: `Alert for abnormal ({severity} level) response time detected on monitor {monitor} with url {monitorUrl} from location {observerLocation} at {anomalyStartTimestamp} has recovered`, - values: { - severity: '{{context.severity}}', - anomalyStartTimestamp: '{{context.anomalyStartTimestamp}}', - monitor: '{{context.monitor}}', - monitorUrl: '{{{context.monitorUrl}}}', - observerLocation: '{{context.observerLocation}}', - }, - } - ), - name: i18n.translate('xpack.synthetics.alerts.durationAnomaly.clientName', { - defaultMessage: 'Uptime Duration Anomaly', - }), - description: i18n.translate('xpack.synthetics.alerts.durationAnomaly.description', { - defaultMessage: 'Alert when the Uptime monitor duration is anomalous.', - }), -}; diff --git a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/duration_anomaly.tsx b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/duration_anomaly.tsx index 92406d65948f4..b6d5a63af7712 100644 --- a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/duration_anomaly.tsx +++ b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/duration_anomaly.tsx @@ -14,7 +14,7 @@ import { ObservabilityRuleTypeModel } from '@kbn/observability-plugin/public'; import { AlertTypeInitializer } from '.'; import { getMonitorRouteFromMonitorId } from '../../../../common/utils/get_monitor_url'; import { CLIENT_ALERT_TYPES } from '../../../../common/constants/uptime_alerts'; -import { DurationAnomalyTranslations } from '../../../../common/translations'; +import { DurationAnomalyTranslations } from '../../../../common/rules/legacy_uptime/translations'; const { defaultActionMessage, defaultRecoveryMessage, description } = DurationAnomalyTranslations; const DurationAnomalyAlert = React.lazy(() => import('./lazy_wrapper/duration_anomaly')); diff --git a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/monitor_status.tsx b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/monitor_status.tsx index 5910d3fb5093a..9af2ede31e42e 100644 --- a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/monitor_status.tsx +++ b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/monitor_status.tsx @@ -20,7 +20,7 @@ import { ObservabilityRuleTypeModel } from '@kbn/observability-plugin/public'; import { ValidationResult } from '@kbn/triggers-actions-ui-plugin/public'; import { AlertTypeInitializer } from '.'; import { getMonitorRouteFromMonitorId } from '../../../../common/utils/get_monitor_url'; -import { MonitorStatusTranslations } from '../../../../common/translations'; +import { MonitorStatusTranslations } from '../../../../common/rules/legacy_uptime/translations'; import { CLIENT_ALERT_TYPES } from '../../../../common/constants/uptime_alerts'; const { defaultActionMessage, defaultRecoveryMessage, description } = MonitorStatusTranslations; diff --git a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls.tsx b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls.tsx index f9d510243393b..c44949f930ae6 100644 --- a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls.tsx +++ b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls.tsx @@ -12,7 +12,7 @@ import type { RuleTypeParamsExpressionProps } from '@kbn/triggers-actions-ui-plu import { ValidationResult } from '@kbn/triggers-actions-ui-plugin/public'; import { TLSParams } from '../../../../common/runtime_types/alerts/tls'; import { CLIENT_ALERT_TYPES } from '../../../../common/constants/uptime_alerts'; -import { TlsTranslations } from '../../../../common/translations'; +import { TlsTranslations } from '../../../../common/rules/legacy_uptime/translations'; import { AlertTypeInitializer } from '.'; import { CERTIFICATES_ROUTE } from '../../../../common/constants/ui'; diff --git a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls_legacy.tsx b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls_legacy.tsx index ed67a50ee08b7..38106cd6ce2f8 100644 --- a/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls_legacy.tsx +++ b/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/tls_legacy.tsx @@ -8,7 +8,7 @@ import React from 'react'; import { RuleTypeModel } from '@kbn/triggers-actions-ui-plugin/public'; import { CLIENT_ALERT_TYPES } from '../../../../common/constants/uptime_alerts'; -import { TlsTranslationsLegacy } from '../../../../common/translations'; +import { TlsTranslationsLegacy } from '../../../../common/rules/legacy_uptime/translations'; import { AlertTypeInitializer } from '.'; const { defaultActionMessage, description } = TlsTranslationsLegacy; diff --git a/x-pack/plugins/synthetics/public/legacy_uptime/state/api/alerts.ts b/x-pack/plugins/synthetics/public/legacy_uptime/state/api/alerts.ts index db335a1ef458b..aac00a0e8ed0e 100644 --- a/x-pack/plugins/synthetics/public/legacy_uptime/state/api/alerts.ts +++ b/x-pack/plugins/synthetics/public/legacy_uptime/state/api/alerts.ts @@ -7,7 +7,7 @@ import type { ActionType, AsApiContract, Rule } from '@kbn/triggers-actions-ui-plugin/public'; import { RuleTypeParams } from '@kbn/alerting-plugin/common'; -import { MonitorStatusTranslations } from '../../../../common/translations'; +import { MonitorStatusTranslations } from '../../../../common/rules/legacy_uptime/translations'; import { ActionConnector } from '../../../../common/rules/types'; import { CLIENT_ALERT_TYPES, MONITOR_STATUS } from '../../../../common/constants/uptime_alerts'; import { apiService } from './utils'; @@ -87,6 +87,7 @@ export const createAlert = async ({ defaultActionMessage: MonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: MonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: MonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: MonitorStatusTranslations.defaultRecoverySubjectMessage, }, isLegacy: true, }); diff --git a/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/duration_anomaly.ts b/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/duration_anomaly.ts index f70e3a96d1fb8..42d81f6e0d0d6 100644 --- a/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/duration_anomaly.ts +++ b/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/duration_anomaly.ts @@ -30,7 +30,7 @@ import { UptimeAlertTypeFactory } from './types'; import { Ping } from '../../../../common/runtime_types/ping'; import { getMLJobId } from '../../../../common/lib'; -import { DurationAnomalyTranslations as CommonDurationAnomalyTranslations } from '../../../../common/translations'; +import { DurationAnomalyTranslations as CommonDurationAnomalyTranslations } from '../../../../common/rules/legacy_uptime/translations'; import { getMonitorRouteFromMonitorId } from '../../../../common/utils/get_monitor_url'; import { ALERT_REASON_MSG, ACTION_VARIABLES, VIEW_IN_APP_URL } from './action_variables'; diff --git a/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/tls.ts b/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/tls.ts index 6b23d90db0a7e..8bf4fc9de413e 100644 --- a/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/tls.ts +++ b/x-pack/plugins/synthetics/server/legacy_uptime/lib/alerts/tls.ts @@ -22,7 +22,7 @@ import { CLIENT_ALERT_TYPES, TLS } from '../../../../common/constants/uptime_ale import { DYNAMIC_SETTINGS_DEFAULTS } from '../../../../common/constants'; import { Cert, CertResult } from '../../../../common/runtime_types'; import { commonStateTranslations, tlsTranslations } from './translations'; -import { TlsTranslations } from '../../../../common/translations'; +import { TlsTranslations } from '../../../../common/rules/legacy_uptime/translations'; import { savedObjectsAdapter } from '../saved_objects/saved_objects'; import { UptimeEsClient } from '../lib'; diff --git a/x-pack/plugins/synthetics/server/routes/default_alerts/status_alert_service.ts b/x-pack/plugins/synthetics/server/routes/default_alerts/status_alert_service.ts index 1de80b1a27c08..e175325d51f4c 100644 --- a/x-pack/plugins/synthetics/server/routes/default_alerts/status_alert_service.ts +++ b/x-pack/plugins/synthetics/server/routes/default_alerts/status_alert_service.ts @@ -114,6 +114,8 @@ export class StatusAlertService { defaultActionMessage: SyntheticsMonitorStatusTranslations.defaultActionMessage, defaultRecoveryMessage: SyntheticsMonitorStatusTranslations.defaultRecoveryMessage, defaultSubjectMessage: SyntheticsMonitorStatusTranslations.defaultSubjectMessage, + defaultRecoverySubjectMessage: + SyntheticsMonitorStatusTranslations.defaultRecoverySubjectMessage, }, }); } diff --git a/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/uptime/simple_down_alert.ts b/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/uptime/simple_down_alert.ts index 4064a8a6b7ae2..81a0a9b438af7 100644 --- a/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/uptime/simple_down_alert.ts +++ b/x-pack/test/functional_with_es_ssl/apps/discover_ml_uptime/uptime/simple_down_alert.ts @@ -6,7 +6,7 @@ */ import expect from '@kbn/expect'; -import { MonitorStatusTranslations } from '@kbn/synthetics-plugin/common/translations'; +import { MonitorStatusTranslations } from '@kbn/synthetics-plugin/common/rules/legacy_uptime/translations'; import { FtrProviderContext } from '../../../ftr_provider_context'; import { deleteUptimeSettingsObject } from '../../../../functional/apps/uptime'; From 783d1c0092aea86e944f1b7110f94ea7eba8d8dd Mon Sep 17 00:00:00 2001 From: Elastic Machine Date: Fri, 21 Apr 2023 00:25:49 +0930 Subject: [PATCH 135/144] [main] Sync bundled packages with Package Storage (#155404) Automated by https://internal-ci.elastic.co/job/package_storage/job/sync-bundled-packages-job/job/main/3241/ Co-authored-by: apmmachine --- fleet_packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fleet_packages.json b/fleet_packages.json index e78e1fbe6451f..f9734cdd91380 100644 --- a/fleet_packages.json +++ b/fleet_packages.json @@ -38,7 +38,7 @@ }, { "name": "fleet_server", - "version": "1.2.0" + "version": "1.3.0" }, { "name": "synthetics", From 4c79ef40095dac039f2da3fded26bdbdc09f8097 Mon Sep 17 00:00:00 2001 From: Melissa Alvarez Date: Thu, 20 Apr 2023 09:02:52 -0600 Subject: [PATCH 136/144] [ML] Add search links for AIOps Labs pages (#155202) ## Summary Related meta issue: https://github.com/elastic/kibana/issues/146065 Added deep search links into the top search bar for the AIOps Labs pages - change point detection, log pattern analysis, and explain log rate spikes image Created deep link for 'Notifications'. image Moved 'Memory Usage' deep link out of model management into its own link. image image ### Checklist Delete any items that are not applicable to this PR. - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --- .../search_deep_links.ts | 68 +++++++++++++++---- 1 file changed, 56 insertions(+), 12 deletions(-) diff --git a/x-pack/plugins/ml/public/register_helper/register_search_links/search_deep_links.ts b/x-pack/plugins/ml/public/register_helper/register_search_links/search_deep_links.ts index ab8b15c94e260..2b1cc16f131b6 100644 --- a/x-pack/plugins/ml/public/register_helper/register_search_links/search_deep_links.ts +++ b/x-pack/plugins/ml/public/register_helper/register_search_links/search_deep_links.ts @@ -34,30 +34,63 @@ const DATA_FRAME_ANALYTICS_DEEP_LINK: AppDeepLink = { path: `/${ML_PAGES.DATA_FRAME_ANALYTICS_JOBS_MANAGE}`, }; +const AIOPS_DEEP_LINK: AppDeepLink = { + id: 'aiOpsDeepLink', + title: i18n.translate('xpack.ml.deepLink.aiOps', { + defaultMessage: 'AIOps', + }), + // Default to the index select page for the explain log rate spikes since we don't have an AIops overview page + path: `/${ML_PAGES.AIOPS_EXPLAIN_LOG_RATE_SPIKES_INDEX_SELECT}`, + deepLinks: [ + { + id: 'explainLogRateSpikesDeepLink', + title: i18n.translate('xpack.ml.deepLink.explainLogRateSpikes', { + defaultMessage: 'Explain Log Rate Spikes', + }), + path: `/${ML_PAGES.AIOPS_EXPLAIN_LOG_RATE_SPIKES_INDEX_SELECT}`, + }, + { + id: 'logPatternAnalysisDeepLink', + title: i18n.translate('xpack.ml.deepLink.logPatternAnalysis', { + defaultMessage: 'Log Pattern Analysis', + }), + path: `/${ML_PAGES.AIOPS_LOG_CATEGORIZATION_INDEX_SELECT}`, + }, + { + id: 'changePointDetectionsDeepLink', + title: i18n.translate('xpack.ml.deepLink.changePointDetection', { + defaultMessage: 'Change Point Detection', + }), + path: `/${ML_PAGES.AIOPS_CHANGE_POINT_DETECTION_INDEX_SELECT}`, + }, + ], +}; + const MODEL_MANAGEMENT_DEEP_LINK: AppDeepLink = { id: 'mlModelManagementDeepLink', - title: i18n.translate('xpack.ml.deepLink.trainedModels', { - defaultMessage: 'Trained Models', + title: i18n.translate('xpack.ml.deepLink.modelManagement', { + defaultMessage: 'Model Management', }), path: `/${ML_PAGES.TRAINED_MODELS_MANAGE}`, deepLinks: [ { id: 'mlNodesOverviewDeepLink', - title: i18n.translate('xpack.ml.deepLink.modelManagement', { - defaultMessage: 'Model Management', + title: i18n.translate('xpack.ml.deepLink.trainedModels', { + defaultMessage: 'Trained Models', }), path: `/${ML_PAGES.TRAINED_MODELS_MANAGE}`, }, - { - id: 'mlMemoryUsageDeepLink', - title: i18n.translate('xpack.ml.deepLink.memoryUsage', { - defaultMessage: 'Memory usage', - }), - path: `/${ML_PAGES.MEMORY_USAGE}`, - }, ], }; +const MEMORY_USAGE_DEEP_LINK: AppDeepLink = { + id: 'mlMemoryUsageDeepLink', + title: i18n.translate('xpack.ml.deepLink.memoryUsage', { + defaultMessage: 'Memory Usage', + }), + path: `/${ML_PAGES.MEMORY_USAGE}`, +}; + const DATA_VISUALIZER_DEEP_LINK: AppDeepLink = { id: 'dataVisualizerDeepLink', title: i18n.translate('xpack.ml.deepLink.dataVisualizer', { @@ -107,6 +140,14 @@ const SETTINGS_DEEP_LINK: AppDeepLink = { ], }; +const NOTIFICATIONS_DEEP_LINK: AppDeepLink = { + id: 'mlNotificationsDeepLink', + title: i18n.translate('xpack.ml.deepLink.notifications', { + defaultMessage: 'Notifications', + }), + path: `/${ML_PAGES.NOTIFICATIONS}`, +}; + export function getDeepLinks(isFullLicense: boolean) { const deepLinks: AppDeepLink[] = [ DATA_VISUALIZER_DEEP_LINK, @@ -120,7 +161,10 @@ export function getDeepLinks(isFullLicense: boolean) { ANOMALY_DETECTION_DEEP_LINK, DATA_FRAME_ANALYTICS_DEEP_LINK, MODEL_MANAGEMENT_DEEP_LINK, - SETTINGS_DEEP_LINK + MEMORY_USAGE_DEEP_LINK, + SETTINGS_DEEP_LINK, + AIOPS_DEEP_LINK, + NOTIFICATIONS_DEEP_LINK ); } From 031bc369bdbdd073d35379575c6b51765326a134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Fern=C3=A1ndez=20Haro?= Date: Thu, 20 Apr 2023 17:22:31 +0200 Subject: [PATCH 137/144] [Cloud] Add `deploymentId` to the EBT context (#155182) --- ...rse_deployment_id_from_deployment_url.test.ts} | 2 +- .../parse_deployment_id_from_deployment_url.ts} | 0 ..._cloud_deployment_id_analytics_context.test.ts | 13 +++++++++++++ ...ister_cloud_deployment_id_analytics_context.ts | 15 +++++++++++++-- x-pack/plugins/cloud/server/plugin.ts | 2 +- 5 files changed, 28 insertions(+), 4 deletions(-) rename x-pack/plugins/cloud/{server/utils.test.ts => common/parse_deployment_id_from_deployment_url.test.ts} (87%) rename x-pack/plugins/cloud/{server/utils.ts => common/parse_deployment_id_from_deployment_url.ts} (100%) diff --git a/x-pack/plugins/cloud/server/utils.test.ts b/x-pack/plugins/cloud/common/parse_deployment_id_from_deployment_url.test.ts similarity index 87% rename from x-pack/plugins/cloud/server/utils.test.ts rename to x-pack/plugins/cloud/common/parse_deployment_id_from_deployment_url.test.ts index 00e7de7336c7a..de54561783285 100644 --- a/x-pack/plugins/cloud/server/utils.test.ts +++ b/x-pack/plugins/cloud/common/parse_deployment_id_from_deployment_url.test.ts @@ -5,7 +5,7 @@ * 2.0. */ -import { parseDeploymentIdFromDeploymentUrl } from './utils'; +import { parseDeploymentIdFromDeploymentUrl } from './parse_deployment_id_from_deployment_url'; describe('parseDeploymentIdFromDeploymentUrl', () => { it('should return undefined if there is no deploymentUrl configured', () => { diff --git a/x-pack/plugins/cloud/server/utils.ts b/x-pack/plugins/cloud/common/parse_deployment_id_from_deployment_url.ts similarity index 100% rename from x-pack/plugins/cloud/server/utils.ts rename to x-pack/plugins/cloud/common/parse_deployment_id_from_deployment_url.ts diff --git a/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.test.ts b/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.test.ts index 4793bb1ac6af9..26f4acb9ae576 100644 --- a/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.test.ts +++ b/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.test.ts @@ -29,4 +29,17 @@ describe('registerCloudDeploymentIdAnalyticsContext', () => { cloudId: 'cloud_id', }); }); + + test('it registers the context provider and emits the cloudId and deploymentId', async () => { + registerCloudDeploymentMetadataAnalyticsContext(analytics, { + id: 'cloud_id', + deployment_url: 'deployments/uuid-of-my-deployment', + }); + expect(analytics.registerContextProvider).toHaveBeenCalledTimes(1); + const [{ context$ }] = analytics.registerContextProvider.mock.calls[0]; + await expect(firstValueFrom(context$)).resolves.toEqual({ + cloudId: 'cloud_id', + deploymentId: 'uuid-of-my-deployment', + }); + }); }); diff --git a/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts b/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts index 68130cdcda799..d3c8d0df8e553 100644 --- a/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts +++ b/x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts @@ -7,11 +7,13 @@ import type { AnalyticsClient } from '@kbn/analytics-client'; import { of } from 'rxjs'; +import { parseDeploymentIdFromDeploymentUrl } from './parse_deployment_id_from_deployment_url'; export interface CloudDeploymentMetadata { id?: string; trial_end_date?: string; is_elastic_staff_owned?: boolean; + deployment_url?: string; } export function registerCloudDeploymentMetadataAnalyticsContext( @@ -29,11 +31,20 @@ export function registerCloudDeploymentMetadataAnalyticsContext( analytics.registerContextProvider({ name: 'Cloud Deployment Metadata', - context$: of({ cloudId, cloudTrialEndDate, cloudIsElasticStaffOwned }), + context$: of({ + cloudId, + deploymentId: parseDeploymentIdFromDeploymentUrl(cloudMetadata.deployment_url), + cloudTrialEndDate, + cloudIsElasticStaffOwned, + }), schema: { cloudId: { type: 'keyword', - _meta: { description: 'The Cloud Deployment ID' }, + _meta: { description: 'The Cloud ID' }, + }, + deploymentId: { + type: 'keyword', + _meta: { description: 'The Deployment ID', optional: true }, }, cloudTrialEndDate: { type: 'date', diff --git a/x-pack/plugins/cloud/server/plugin.ts b/x-pack/plugins/cloud/server/plugin.ts index c0f52645521fe..7d33ac99629b8 100644 --- a/x-pack/plugins/cloud/server/plugin.ts +++ b/x-pack/plugins/cloud/server/plugin.ts @@ -11,7 +11,7 @@ import { registerCloudDeploymentMetadataAnalyticsContext } from '../common/regis import type { CloudConfigType } from './config'; import { registerCloudUsageCollector } from './collectors'; import { getIsCloudEnabled } from '../common/is_cloud_enabled'; -import { parseDeploymentIdFromDeploymentUrl } from './utils'; +import { parseDeploymentIdFromDeploymentUrl } from '../common/parse_deployment_id_from_deployment_url'; import { readInstanceSizeMb } from './env'; interface PluginsSetup { From df8c29e64d319a2abc637aa52f84f2de38a58cfb Mon Sep 17 00:00:00 2001 From: Pablo Machado Date: Thu, 20 Apr 2023 17:30:41 +0200 Subject: [PATCH 138/144] [Security Solutions] Add EBT telemetry to ML jobs status updates (#155233) EPIC issue: https://github.com/elastic/kibana/issues/145276 ## Summary [Dashboard with events](https://telemetry-v2-staging.elastic.dev/s/securitysolution/app/dashboards#/view/d47a90f0-a6e4-11ed-a6e6-d32d2209b7b7?_g=(filters%3A!()%2CrefreshInterval%3A(pause%3A!t%2Cvalue%3A0)%2Ctime%3A(from%3Anow-90d%2Fd%2Cto%3Anow))) Add ML Job Update telemetry events. Jobs can be updated from the Entity analytics page, ML widget, and rules pages. ![Screenshot 2023-04-19 at 11 25 51](https://user-images.githubusercontent.com/1490444/233032320-be24b4a8-39a7-458e-8f32-89e639708b15.png) ![Screenshot 2023-04-19 at 11 26 15](https://user-images.githubusercontent.com/1490444/233032326-40c99750-ed86-4b80-a0b6-e0ac1944e340.png) Screenshot 2023-04-19 at 11 26 37 Screenshot 2023-04-19 at 11 26 55 Event: ```json { "timestamp": "2023-03-20T14:23:53.452Z", "event_type": "ML Job Update", "context": { ... }, "properties": { "jobId": "auth_rare_source_ip_for_a_user", "isElasticJob": true, "moduleId": "security_auth", "status": "module_installed" } } ``` The status could be one of the following options: ` | 'module_installed' | 'installation_error' | 'started' | 'start_error' | 'stopped' | 'stop_error' ` ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --- .../hooks/use_enable_data_feed.test.tsx | 118 +++++++++++++++++- .../ml_popover/hooks/use_enable_data_feed.ts | 48 ++++++- .../lib/telemetry/telemetry_client.mock.ts | 1 + .../common/lib/telemetry/telemetry_client.ts | 5 + .../common/lib/telemetry/telemetry_events.ts | 42 +++++++ .../public/common/lib/telemetry/types.ts | 26 +++- 6 files changed, 236 insertions(+), 4 deletions(-) diff --git a/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.test.tsx b/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.test.tsx index 4afa7e1796de4..b4c8265d23242 100644 --- a/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.test.tsx +++ b/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.test.tsx @@ -18,6 +18,8 @@ import { createStore } from '../../../store'; import type { State } from '../../../store'; import type { SecurityJob } from '../types'; +import { createTelemetryServiceMock } from '../../../lib/telemetry/telemetry_service.mock'; +import { ML_JOB_TELEMETRY_STATUS } from '../../../lib/telemetry'; const state: State = mockGlobalState; const { storage } = createSecuritySolutionStorageMock(); @@ -27,9 +29,15 @@ const wrapper = ({ children }: { children: React.ReactNode }) => ( {children} ); +const moduleId = 'test_module_id'; +const jobId = 'test_job_id'; + const TIMESTAMP = 99999999; const JOB = { + id: jobId, isInstalled: false, + isElasticJob: true, + moduleId, datafeedState: 'failed', jobState: 'failed', isCompatible: true, @@ -45,11 +53,26 @@ jest.mock('../api', () => ({ stopDatafeeds: () => mockStopDatafeeds(), })); +const mockedTelemetry = createTelemetryServiceMock(); +jest.mock('../../../lib/kibana', () => { + const original = jest.requireActual('../../../lib/kibana'); + + return { + ...original, + useKibana: () => ({ + services: { + telemetry: mockedTelemetry, + }, + }), + }; +}); + describe('useSecurityJobsHelpers', () => { afterEach(() => { mockSetupMlJob.mockReset(); mockStartDatafeeds.mockReset(); mockStopDatafeeds.mockReset(); + mockSetupMlJob.mockReset(); }); it('renders isLoading=true when installing job', async () => { @@ -132,8 +155,101 @@ describe('useSecurityJobsHelpers', () => { await result.current.enableDatafeed(JOB, TIMESTAMP, true); }); expect(mockStartDatafeeds).toBeCalledWith({ - datafeedIds: [`datafeed-undefined`], + datafeedIds: [`datafeed-test_job_id`], start: new Date('1989-02-21').getTime(), }); }); + + describe('telemetry', () => { + it('reports telemetry when installing and enabling a job', async () => { + mockSetupMlJob.mockReturnValue(new Promise((resolve) => resolve({}))); + const { result } = renderHook(() => useEnableDataFeed(), { + wrapper, + }); + + await act(async () => { + await result.current.enableDatafeed(JOB, TIMESTAMP, true); + }); + + expect(mockedTelemetry.reportMLJobUpdate).toHaveBeenCalledWith({ + status: ML_JOB_TELEMETRY_STATUS.moduleInstalled, + isElasticJob: true, + jobId, + moduleId, + }); + + expect(mockedTelemetry.reportMLJobUpdate).toHaveBeenCalledWith({ + status: ML_JOB_TELEMETRY_STATUS.started, + isElasticJob: true, + jobId, + }); + }); + + it('reports telemetry when stopping a job', async () => { + const { result } = renderHook(() => useEnableDataFeed(), { + wrapper, + }); + await act(async () => { + await result.current.enableDatafeed({ ...JOB, isInstalled: true }, TIMESTAMP, false); + }); + + expect(mockedTelemetry.reportMLJobUpdate).toHaveBeenCalledWith({ + status: ML_JOB_TELEMETRY_STATUS.stopped, + isElasticJob: true, + jobId, + }); + }); + + it('reports telemetry when stopping a job fails', async () => { + mockStopDatafeeds.mockReturnValue(Promise.reject(new Error('test_error'))); + const { result } = renderHook(() => useEnableDataFeed(), { + wrapper, + }); + await act(async () => { + await result.current.enableDatafeed({ ...JOB, isInstalled: true }, TIMESTAMP, false); + }); + + expect(mockedTelemetry.reportMLJobUpdate).toHaveBeenCalledWith({ + status: ML_JOB_TELEMETRY_STATUS.stopError, + errorMessage: 'Stop job failure - test_error', + isElasticJob: true, + jobId, + }); + }); + + it('reports telemetry when starting a job fails', async () => { + mockStartDatafeeds.mockReturnValue(Promise.reject(new Error('test_error'))); + const { result } = renderHook(() => useEnableDataFeed(), { + wrapper, + }); + await act(async () => { + await result.current.enableDatafeed({ ...JOB, isInstalled: true }, TIMESTAMP, true); + }); + + expect(mockedTelemetry.reportMLJobUpdate).toHaveBeenCalledWith({ + status: ML_JOB_TELEMETRY_STATUS.startError, + errorMessage: 'Start job failure - test_error', + isElasticJob: true, + jobId, + }); + }); + + it('reports telemetry when installing a module fails', async () => { + mockSetupMlJob.mockReturnValue(Promise.reject(new Error('test_error'))); + const { result } = renderHook(() => useEnableDataFeed(), { + wrapper, + }); + await act(async () => { + await result.current.enableDatafeed(JOB, TIMESTAMP, true); + }); + + expect(mockedTelemetry.reportMLJobUpdate).toHaveBeenCalledWith({ + status: ML_JOB_TELEMETRY_STATUS.installationError, + errorMessage: 'Create job failure - test_error', + isElasticJob: true, + jobId, + moduleId, + }); + }); + }); }); diff --git a/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.ts b/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.ts index 2d73d07c1787c..48b7a918af26c 100644 --- a/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.ts +++ b/x-pack/plugins/security_solution/public/common/components/ml_popover/hooks/use_enable_data_feed.ts @@ -7,13 +7,22 @@ import { useCallback, useState } from 'react'; import { useAppToasts } from '../../../hooks/use_app_toasts'; -import { METRIC_TYPE, TELEMETRY_EVENT, track } from '../../../lib/telemetry'; +import { useKibana } from '../../../lib/kibana'; +import { + METRIC_TYPE, + ML_JOB_TELEMETRY_STATUS, + TELEMETRY_EVENT, + track, +} from '../../../lib/telemetry'; + import { setupMlJob, startDatafeeds, stopDatafeeds } from '../api'; import type { SecurityJob } from '../types'; import * as i18n from './translations'; // Enable/Disable Job & Datafeed -- passed to JobsTable for use as callback on JobSwitch export const useEnableDataFeed = () => { + const { telemetry } = useKibana().services; + const { addError } = useAppToasts(); const [isLoading, setIsLoading] = useState(false); @@ -31,9 +40,22 @@ export const useEnableDataFeed = () => { groups: job.groups, }); setIsLoading(false); + telemetry.reportMLJobUpdate({ + jobId: job.id, + isElasticJob: job.isElasticJob, + moduleId: job.moduleId, + status: ML_JOB_TELEMETRY_STATUS.moduleInstalled, + }); } catch (error) { addError(error, { title: i18n.CREATE_JOB_FAILURE }); setIsLoading(false); + telemetry.reportMLJobUpdate({ + jobId: job.id, + isElasticJob: job.isElasticJob, + moduleId: job.moduleId, + status: ML_JOB_TELEMETRY_STATUS.installationError, + errorMessage: `${i18n.CREATE_JOB_FAILURE} - ${error.message}`, + }); return; } } @@ -47,21 +69,43 @@ export const useEnableDataFeed = () => { const startTime = Math.max(latestTimestampMs, maxStartTime); try { await startDatafeeds({ datafeedIds: [`datafeed-${job.id}`], start: startTime }); + telemetry.reportMLJobUpdate({ + jobId: job.id, + isElasticJob: job.isElasticJob, + status: ML_JOB_TELEMETRY_STATUS.started, + }); } catch (error) { track(METRIC_TYPE.COUNT, TELEMETRY_EVENT.JOB_ENABLE_FAILURE); addError(error, { title: i18n.START_JOB_FAILURE }); + telemetry.reportMLJobUpdate({ + jobId: job.id, + isElasticJob: job.isElasticJob, + status: ML_JOB_TELEMETRY_STATUS.startError, + errorMessage: `${i18n.START_JOB_FAILURE} - ${error.message}`, + }); } } else { try { await stopDatafeeds({ datafeedIds: [`datafeed-${job.id}`] }); + telemetry.reportMLJobUpdate({ + jobId: job.id, + isElasticJob: job.isElasticJob, + status: ML_JOB_TELEMETRY_STATUS.stopped, + }); } catch (error) { track(METRIC_TYPE.COUNT, TELEMETRY_EVENT.JOB_DISABLE_FAILURE); addError(error, { title: i18n.STOP_JOB_FAILURE }); + telemetry.reportMLJobUpdate({ + jobId: job.id, + isElasticJob: job.isElasticJob, + status: ML_JOB_TELEMETRY_STATUS.stopError, + errorMessage: `${i18n.STOP_JOB_FAILURE} - ${error.message}`, + }); } } setIsLoading(false); }, - [addError] + [addError, telemetry] ); return { enableDatafeed, isLoading }; diff --git a/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.mock.ts b/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.mock.ts index a79f9c662ae23..4f2b2bdafe96f 100644 --- a/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.mock.ts +++ b/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.mock.ts @@ -14,4 +14,5 @@ export const createTelemetryClientMock = (): jest.Mocked = reportEntityDetailsClicked: jest.fn(), reportEntityAlertsClicked: jest.fn(), reportEntityRiskFiltered: jest.fn(), + reportMLJobUpdate: jest.fn(), }); diff --git a/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts b/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts index e356b47f29c38..c95c8153261e1 100644 --- a/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts +++ b/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts @@ -14,6 +14,7 @@ import type { ReportEntityDetailsClickedParams, ReportEntityAlertsClickedParams, ReportEntityRiskFilteredParams, + ReportMLJobUpdateParams, } from './types'; import { TelemetryEventTypes } from './types'; @@ -83,4 +84,8 @@ export class TelemetryClient implements TelemetryClientStart { selectedSeverity, }); }; + + public reportMLJobUpdate = (params: ReportMLJobUpdateParams) => { + this.analytics.reportEvent(TelemetryEventTypes.MLJobUpdate, params); + }; } diff --git a/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_events.ts b/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_events.ts index 4087d8df7b5d4..cb82b16658224 100644 --- a/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_events.ts +++ b/x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_events.ts @@ -141,6 +141,47 @@ const entityRiskFilteredEvent: TelemetryEvent = { }, }; +const mlJobUpdateEvent: TelemetryEvent = { + eventType: TelemetryEventTypes.MLJobUpdate, + schema: { + jobId: { + type: 'keyword', + _meta: { + description: 'Job id', + optional: false, + }, + }, + isElasticJob: { + type: 'boolean', + _meta: { + description: 'If true the job is one of the pre-configure security solution modules', + optional: false, + }, + }, + moduleId: { + type: 'keyword', + _meta: { + description: 'Module id', + optional: true, + }, + }, + status: { + type: 'keyword', + _meta: { + description: 'It describes what has changed in the job.', + optional: false, + }, + }, + errorMessage: { + type: 'text', + _meta: { + description: 'Error message', + optional: true, + }, + }, + }, +}; + export const telemetryEvents = [ alertsGroupingToggledEvent, alertsGroupingChangedEvent, @@ -148,4 +189,5 @@ export const telemetryEvents = [ entityClickedEvent, entityAlertsClickedEvent, entityRiskFilteredEvent, + mlJobUpdateEvent, ]; diff --git a/x-pack/plugins/security_solution/public/common/lib/telemetry/types.ts b/x-pack/plugins/security_solution/public/common/lib/telemetry/types.ts index 78ed0ee9d3fd3..ba084c49cc033 100644 --- a/x-pack/plugins/security_solution/public/common/lib/telemetry/types.ts +++ b/x-pack/plugins/security_solution/public/common/lib/telemetry/types.ts @@ -20,6 +20,7 @@ export enum TelemetryEventTypes { EntityDetailsClicked = 'Entity Details Clicked', EntityAlertsClicked = 'Entity Alerts Clicked', EntityRiskFiltered = 'Entity Risk Filtered', + MLJobUpdate = 'ML Job Update', } export interface ReportAlertsGroupingChangedParams { @@ -51,13 +52,31 @@ export interface ReportEntityRiskFilteredParams extends EntityParam { selectedSeverity: RiskSeverity; } +export enum ML_JOB_TELEMETRY_STATUS { + started = 'started', + startError = 'start_error', + stopped = 'stopped', + stopError = 'stop_error', + moduleInstalled = 'module_installed', + installationError = 'installationError', +} + +export interface ReportMLJobUpdateParams { + jobId: string; + isElasticJob: boolean; + status: ML_JOB_TELEMETRY_STATUS; + moduleId?: string; + errorMessage?: string; +} + export type TelemetryEventParams = | ReportAlertsGroupingChangedParams | ReportAlertsGroupingToggledParams | ReportAlertsTakeActionParams | ReportEntityDetailsClickedParams | ReportEntityAlertsClickedParams - | ReportEntityRiskFilteredParams; + | ReportEntityRiskFilteredParams + | ReportMLJobUpdateParams; export interface TelemetryClientStart { reportAlertsGroupingChanged(params: ReportAlertsGroupingChangedParams): void; @@ -67,6 +86,7 @@ export interface TelemetryClientStart { reportEntityDetailsClicked(params: ReportEntityDetailsClickedParams): void; reportEntityAlertsClicked(params: ReportEntityAlertsClickedParams): void; reportEntityRiskFiltered(params: ReportEntityRiskFilteredParams): void; + reportMLJobUpdate(params: ReportMLJobUpdateParams): void; } export type TelemetryEvent = @@ -93,4 +113,8 @@ export type TelemetryEvent = | { eventType: TelemetryEventTypes.EntityRiskFiltered; schema: RootSchema; + } + | { + eventType: TelemetryEventTypes.MLJobUpdate; + schema: RootSchema; }; From fd20b84ff17d100fb56972bae565672293eab775 Mon Sep 17 00:00:00 2001 From: Lisa Cawley Date: Thu, 20 Apr 2023 08:37:13 -0700 Subject: [PATCH 139/144] [ResponseOps][Window Maintenance] Edit button text (#155335) --- .../alerting/public/pages/maintenance_windows/translations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts index 7da8ad80a5932..ee02c5c2a9528 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts @@ -23,7 +23,7 @@ export const MAINTENANCE_WINDOWS_DESCRIPTION = i18n.translate( export const CREATE_NEW_BUTTON = i18n.translate( 'xpack.alerting.maintenanceWindows.createNewButton', { - defaultMessage: 'Create new', + defaultMessage: 'Create window', } ); From 92ce25d7c838ca5ac9dd21ebfebe57ac87fb7886 Mon Sep 17 00:00:00 2001 From: Kfir Peled <61654899+kfirpeled@users.noreply.github.com> Date: Thu, 20 Apr 2023 09:51:10 -0600 Subject: [PATCH 140/144] [Cloud Security] [CNVM] Showing the same prompt when not deployed and not installed (#155211) --- .../public/components/no_vulnerabilities_states.tsx | 4 ++-- .../public/pages/vulnerabilities/vulnerabilties.test.tsx | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/cloud_security_posture/public/components/no_vulnerabilities_states.tsx b/x-pack/plugins/cloud_security_posture/public/components/no_vulnerabilities_states.tsx index 48f790bf4c332..a34b23b46bd64 100644 --- a/x-pack/plugins/cloud_security_posture/public/components/no_vulnerabilities_states.tsx +++ b/x-pack/plugins/cloud_security_posture/public/components/no_vulnerabilities_states.tsx @@ -206,10 +206,10 @@ export const NoVulnerabilitiesStates = () => { .sort((a, b) => a.localeCompare(b)); const render = () => { - if (status === 'not-deployed' || status === 'indexing' || status === 'waiting_for_results') + if (status === 'indexing' || status === 'waiting_for_results') return ; // integration installed, but no agents added if (status === 'index-timeout') return ; // agent added, index timeout has passed - if (status === 'not-installed') + if (status === 'not-deployed' || status === 'not-installed') return ( ', () => { renderVulnerabilitiesPage(); expectIdsInDoc({ - be: [NO_VULNERABILITIES_STATUS_TEST_SUBJ.SCANNING_VULNERABILITIES], + be: [VULN_MGMT_INTEGRATION_NOT_INSTALLED_TEST_SUBJECT], notToBe: [ VULNERABILITIES_CONTAINER_TEST_SUBJ, + NO_VULNERABILITIES_STATUS_TEST_SUBJ.SCANNING_VULNERABILITIES, NO_VULNERABILITIES_STATUS_TEST_SUBJ.INDEX_TIMEOUT, NO_VULNERABILITIES_STATUS_TEST_SUBJ.UNPRIVILEGED, ], From 241f71b346b4c3d81407622a212d66b2e74ded7e Mon Sep 17 00:00:00 2001 From: Ashokaditya <1849116+ashokaditya@users.noreply.github.com> Date: Thu, 20 Apr 2023 17:56:31 +0200 Subject: [PATCH 141/144] [Security Solution][Endpoint][Response Actions] Add automated tests for execute response action test cases (#155128) --- .../common/endpoint/schema/actions.test.ts | 3 +- .../integration_tests/status_action.test.tsx | 148 ++++++++++++++++++ .../response_actions_log.test.tsx | 126 +++++++++------ 3 files changed, 228 insertions(+), 49 deletions(-) create mode 100644 x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/status_action.test.tsx diff --git a/x-pack/plugins/security_solution/common/endpoint/schema/actions.test.ts b/x-pack/plugins/security_solution/common/endpoint/schema/actions.test.ts index 5dc5059d21262..c22dd615a5d89 100644 --- a/x-pack/plugins/security_solution/common/endpoint/schema/actions.test.ts +++ b/x-pack/plugins/security_solution/common/endpoint/schema/actions.test.ts @@ -7,6 +7,7 @@ import { v4 as uuidv4 } from 'uuid'; +import { RESPONSE_ACTION_API_COMMANDS_NAMES } from '../service/response_actions/constants'; import { EndpointActionListRequestSchema, NoParametersRequestSchema, @@ -185,7 +186,7 @@ describe('actions schemas', () => { }).not.toThrow(); }); - it.each(['isolate', 'unisolate', 'kill-process', 'suspend-process', 'running-processes'])( + it.each(RESPONSE_ACTION_API_COMMANDS_NAMES)( 'should work with commands query params with %s action', (command) => { expect(() => { diff --git a/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/status_action.test.tsx b/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/status_action.test.tsx new file mode 100644 index 0000000000000..d229b297f239f --- /dev/null +++ b/x-pack/plugins/security_solution/public/management/components/endpoint_responder/command_render_components/integration_tests/status_action.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 type { AppContextTestRender } from '../../../../../common/mock/endpoint'; +import { createAppRootMockRenderer } from '../../../../../common/mock/endpoint'; +import { + ConsoleManagerTestComponent, + getConsoleManagerMockRenderResultQueriesAndActions, +} from '../../../console/components/console_manager/mocks'; +import React from 'react'; +import { getEndpointConsoleCommands } from '../../lib/console_commands_definition'; +import { enterConsoleCommand } from '../../../console/mocks'; +import { getEndpointAuthzInitialState } from '../../../../../../common/endpoint/service/authz'; +import type { EndpointCapabilities } from '../../../../../../common/endpoint/service/response_actions/constants'; +import { ENDPOINT_CAPABILITIES } from '../../../../../../common/endpoint/service/response_actions/constants'; +import { useGetEndpointPendingActionsSummary } from '../../../../hooks/response_actions/use_get_endpoint_pending_actions_summary'; +import { useGetEndpointDetails } from '../../../../hooks'; +import { EndpointActionGenerator } from '../../../../../../common/endpoint/data_generators/endpoint_action_generator'; +import { EndpointMetadataGenerator } from '../../../../../../common/endpoint/data_generators/endpoint_metadata_generator'; + +jest.mock('../../../../hooks/response_actions/use_get_endpoint_pending_actions_summary'); +jest.mock('../../../../hooks'); + +const useGetEndpointPendingActionsSummaryMock = useGetEndpointPendingActionsSummary as jest.Mock; +const useGetEndpointDetailsMock = useGetEndpointDetails as jest.Mock; + +describe('When using processes action from response actions console', () => { + let render: ( + capabilities?: EndpointCapabilities[] + ) => Promise>; + let renderResult: ReturnType; + let consoleManagerMockAccess: ReturnType< + typeof getConsoleManagerMockRenderResultQueriesAndActions + >; + const agentId = 'a.b.c'; + + const pendingActionsMock = () => { + useGetEndpointPendingActionsSummaryMock.mockReturnValue({ + data: { + data: [ + new EndpointActionGenerator('seed').generateAgentPendingActionsSummary({ + agent_id: agentId, + pending_actions: { + isolate: 0, + }, + }), + ], + }, + }); + }; + + const endpointDetailsMock = () => { + const endpointMetadata = new EndpointMetadataGenerator('seed').generateHostInfo({ + metadata: { + '@timestamp': new Date('2023-04-20T09:37:40.309Z').getTime(), + agent: { + id: agentId, + version: '8.8.0', + }, + elastic: { + agent: { id: agentId }, + }, + Endpoint: { + state: { + isolation: false, + }, + }, + }, + }); + useGetEndpointDetailsMock.mockReturnValue({ + data: endpointMetadata, + isFetching: false, + isFetched: true, + }); + }; + + beforeEach(() => { + const mockedContext = createAppRootMockRenderer(); + + render = async (capabilities: EndpointCapabilities[] = [...ENDPOINT_CAPABILITIES]) => { + renderResult = mockedContext.render( + { + return { + consoleProps: { + 'data-test-subj': 'test', + commands: getEndpointConsoleCommands({ + endpointAgentId: 'a.b.c', + endpointCapabilities: [...capabilities], + endpointPrivileges: { + ...getEndpointAuthzInitialState(), + loading: false, + }, + }), + }, + }; + }} + /> + ); + + consoleManagerMockAccess = getConsoleManagerMockRenderResultQueriesAndActions(renderResult); + + await consoleManagerMockAccess.clickOnRegisterNewConsole(); + await consoleManagerMockAccess.openRunningConsole(); + + return renderResult; + }; + }); + + afterEach(() => { + jest.clearAllMocks(); + }); + + it('should show expected status output', async () => { + pendingActionsMock(); + endpointDetailsMock(); + await render(); + enterConsoleCommand(renderResult, 'status'); + const statusResults = renderResult.getByTestId('agent-status-console-output'); + + expect( + Array.from(statusResults.querySelectorAll('dt')).map((term) => term.textContent) + ).toEqual([ + 'Agent status', + 'Platform', + 'Version', + 'Policy status', + 'Policy version', + 'Policy name', + 'Last active', + ]); + + expect( + Array.from(statusResults.querySelectorAll('dd')).map((detail) => detail.textContent) + ).toEqual([ + 'Healthy', + 'Windows Server 2012R2', + '8.8.0', + 'Success', + 'v3', + 'With Eventing', + 'Apr 20, 2023 @ 09:37:40.309', + ]); + }); +}); diff --git a/x-pack/plugins/security_solution/public/management/components/endpoint_response_actions_list/integration_tests/response_actions_log.test.tsx b/x-pack/plugins/security_solution/public/management/components/endpoint_response_actions_list/integration_tests/response_actions_log.test.tsx index 2ea008296b12e..6360b55b1c06f 100644 --- a/x-pack/plugins/security_solution/public/management/components/endpoint_response_actions_list/integration_tests/response_actions_log.test.tsx +++ b/x-pack/plugins/security_solution/public/management/components/endpoint_response_actions_list/integration_tests/response_actions_log.test.tsx @@ -796,6 +796,10 @@ describe('Response actions history', () => { }); describe('Action status ', () => { + beforeEach(() => { + apiMocks = responseActionsHttpMocks(mockedContext.coreStart.http); + }); + const expandRows = () => { const { getAllByTestId } = renderResult; @@ -805,58 +809,84 @@ describe('Response actions history', () => { return outputs; }; - it('shows completed status badge for successfully completed actions', async () => { - useGetEndpointActionListMock.mockReturnValue({ - ...getBaseMockedActionList(), - data: await getActionListMock({ actionCount: 2 }), - }); - render(); - - const outputs = expandRows(); - expect(outputs.map((n) => n.textContent)).toEqual([ - 'isolate completed successfully', - 'isolate completed successfully', - ]); - expect( - renderResult.getAllByTestId(`${testPrefix}-column-status`).map((n) => n.textContent) - ).toEqual(['Successful', 'Successful']); - }); + it.each(RESPONSE_ACTION_API_COMMANDS_NAMES)( + 'shows completed status badge for successfully completed %s actions', + async (command) => { + useGetEndpointActionListMock.mockReturnValue({ + ...getBaseMockedActionList(), + data: await getActionListMock({ actionCount: 2, commands: [command] }), + }); + if (command === 'get-file' || command === 'execute') { + mockUseGetFileInfo = { + isFetching: false, + error: null, + data: apiMocks.responseProvider.fileInfo(), + }; + } - it('shows Failed status badge for failed actions', async () => { - useGetEndpointActionListMock.mockReturnValue({ - ...getBaseMockedActionList(), - data: await getActionListMock({ actionCount: 2, wasSuccessful: false, status: 'failed' }), - }); - render(); + render(); - const outputs = expandRows(); - expect(outputs.map((n) => n.textContent)).toEqual(['isolate failed', 'isolate failed']); - expect( - renderResult.getAllByTestId(`${testPrefix}-column-status`).map((n) => n.textContent) - ).toEqual(['Failed', 'Failed']); - }); + const outputs = expandRows(); + expect(outputs.map((n) => n.textContent)).toEqual([ + expect.stringContaining(`${command} completed successfully`), + expect.stringContaining(`${command} completed successfully`), + ]); + expect( + renderResult.getAllByTestId(`${testPrefix}-column-status`).map((n) => n.textContent) + ).toEqual(['Successful', 'Successful']); + } + ); + + it.each(RESPONSE_ACTION_API_COMMANDS_NAMES)( + 'shows Failed status badge for failed %s actions', + async (command) => { + useGetEndpointActionListMock.mockReturnValue({ + ...getBaseMockedActionList(), + data: await getActionListMock({ + actionCount: 2, + commands: [command], + wasSuccessful: false, + status: 'failed', + }), + }); + render(); - it('shows Failed status badge for expired actions', async () => { - useGetEndpointActionListMock.mockReturnValue({ - ...getBaseMockedActionList(), - data: await getActionListMock({ - actionCount: 2, - isCompleted: false, - isExpired: true, - status: 'failed', - }), - }); - render(); + const outputs = expandRows(); + expect(outputs.map((n) => n.textContent)).toEqual([ + `${command} failed`, + `${command} failed`, + ]); + expect( + renderResult.getAllByTestId(`${testPrefix}-column-status`).map((n) => n.textContent) + ).toEqual(['Failed', 'Failed']); + } + ); + + it.each(RESPONSE_ACTION_API_COMMANDS_NAMES)( + 'shows Failed status badge for expired %s actions', + async (command) => { + useGetEndpointActionListMock.mockReturnValue({ + ...getBaseMockedActionList(), + data: await getActionListMock({ + actionCount: 2, + commands: [command], + isCompleted: false, + isExpired: true, + status: 'failed', + }), + }); + render(); - const outputs = expandRows(); - expect(outputs.map((n) => n.textContent)).toEqual([ - 'isolate failed: action expired', - 'isolate failed: action expired', - ]); - expect( - renderResult.getAllByTestId(`${testPrefix}-column-status`).map((n) => n.textContent) - ).toEqual(['Failed', 'Failed']); - }); + const outputs = expandRows(); + expect(outputs.map((n) => n.textContent)).toEqual([ + `${command} failed: action expired`, + `${command} failed: action expired`, + ]); + expect( + renderResult.getAllByTestId(`${testPrefix}-column-status`).map((n) => n.textContent) + ).toEqual(['Failed', 'Failed']); + } + ); it('shows Pending status badge for pending actions', async () => { useGetEndpointActionListMock.mockReturnValue({ From 5120d692c8c6a1545fbc40acff7b691523eb32d9 Mon Sep 17 00:00:00 2001 From: Lisa Cawley Date: Thu, 20 Apr 2023 09:12:09 -0700 Subject: [PATCH 142/144] [DOCS] Remove or move book-scoped attributes (#155210) --- .../development-functional-tests.asciidoc | 32 +++++++++---------- .../external-plugin-functional-tests.asciidoc | 2 +- .../external-plugin-localization.asciidoc | 4 +-- docs/gs-index.asciidoc | 4 --- docs/index.asciidoc | 14 -------- docs/maps/connect-to-ems.asciidoc | 4 ++- docs/maps/index.asciidoc | 4 --- docs/setup/docker.asciidoc | 5 +++ 8 files changed, 27 insertions(+), 42 deletions(-) diff --git a/docs/developer/contributing/development-functional-tests.asciidoc b/docs/developer/contributing/development-functional-tests.asciidoc index 95c6171aaecf5..55bc6f6b8c398 100644 --- a/docs/developer/contributing/development-functional-tests.asciidoc +++ b/docs/developer/contributing/development-functional-tests.asciidoc @@ -81,7 +81,7 @@ export TEST_BROWSER_HEADLESS=1 export TEST_THROTTLE_NETWORK=1 ---------- -** When running against a Cloud deployment, some tests are not applicable. To skip tests that do not apply, use --exclude-tag. An example shell file can be found at: {blob}test/scripts/jenkins_cloud.sh[test/scripts/jenkins_cloud.sh] +** When running against a Cloud deployment, some tests are not applicable. To skip tests that do not apply, use --exclude-tag. An example shell file can be found at: {kibana-blob}test/scripts/jenkins_cloud.sh[test/scripts/jenkins_cloud.sh] + ["source", "shell"] ---------- @@ -118,7 +118,7 @@ The tests are written in https://mochajs.org[mocha] using https://github.com/ela We use https://www.w3.org/TR/webdriver1/[WebDriver Protocol] to run tests in both Chrome and Firefox with the help of https://sites.google.com/a/chromium.org/chromedriver/[chromedriver] and https://firefox-source-docs.mozilla.org/testing/geckodriver/[geckodriver]. When the `FunctionalTestRunner` launches, remote service creates a new webdriver session, which starts the driver and a stripped-down browser instance. We use `browser` service and `webElementWrapper` class to wrap up https://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/[Webdriver API]. -The `FunctionalTestRunner` automatically transpiles functional tests using babel, so that tests can use the same ECMAScript features that {kib} source code uses. See {blob}style_guides/js_style_guide.md[style_guides/js_style_guide.md]. +The `FunctionalTestRunner` automatically transpiles functional tests using babel, so that tests can use the same ECMAScript features that {kib} source code uses. See {kibana-blob}style_guides/js_style_guide.md[style_guides/js_style_guide.md]. [discrete] ==== Definitions @@ -270,7 +270,7 @@ The first and only argument to all providers is a Provider API Object. This obje Within config files the API has the following properties [horizontal] -`log`::: An instance of the {blob}packages/kbn-dev-utils/src/tooling_log/tooling_log.js[`ToolingLog`] that is ready for use +`log`::: An instance of the {kibana-blob}packages/kbn-dev-utils/src/tooling_log/tooling_log.js[`ToolingLog`] that is ready for use `readConfigFile(path)`::: Returns a promise that will resolve to a Config instance that provides the values from the config file at `path` Within service and PageObject Providers the API is: @@ -293,17 +293,17 @@ Within a test Provider the API is exactly the same as the service providers API The `FunctionalTestRunner` comes with three built-in services: **config:**::: -* Source: {blob}src/functional_test_runner/lib/config/config.ts[src/functional_test_runner/lib/config/config.ts] -* Schema: {blob}src/functional_test_runner/lib/config/schema.ts[src/functional_test_runner/lib/config/schema.ts] +* Source: {kibana-blob}src/functional_test_runner/lib/config/config.ts[src/functional_test_runner/lib/config/config.ts] +* Schema: {kibana-blob}src/functional_test_runner/lib/config/schema.ts[src/functional_test_runner/lib/config/schema.ts] * Use `config.get(path)` to read any value from the config file **log:**::: -* Source: {blob}packages/kbn-dev-utils/src/tooling_log/tooling_log.js[packages/kbn-dev-utils/src/tooling_log/tooling_log.js] +* Source: {kibana-blob}packages/kbn-dev-utils/src/tooling_log/tooling_log.js[packages/kbn-dev-utils/src/tooling_log/tooling_log.js] * `ToolingLog` instances are readable streams. The instance provided by this service is automatically piped to stdout by the `FunctionalTestRunner` CLI * `log.verbose()`, `log.debug()`, `log.info()`, `log.warning()` all work just like console.log but produce more organized output **lifecycle:**::: -* Source: {blob}src/functional_test_runner/lib/lifecycle.ts[src/functional_test_runner/lib/lifecycle.ts] +* Source: {kibana-blob}src/functional_test_runner/lib/lifecycle.ts[src/functional_test_runner/lib/lifecycle.ts] * Designed primary for use in services * Exposes lifecycle events for basic coordination. Handlers can return a promise and resolve/fail asynchronously * Phases include: `beforeLoadTests`, `beforeTests`, `beforeEachTest`, `cleanup` @@ -314,14 +314,14 @@ The `FunctionalTestRunner` comes with three built-in services: The {kib} functional tests define the vast majority of the actual functionality used by tests. **browser**::: -* Source: {blob}test/functional/services/browser.ts[test/functional/services/browser.ts] +* Source: {kibana-blob}test/functional/services/browser.ts[test/functional/services/browser.ts] * Higher level wrapper for `remote` service, which exposes available browser actions * Popular methods: ** `browser.getWindowSize()` ** `browser.refresh()` **testSubjects:**::: -* Source: {blob}test/functional/services/test_subjects.ts[test/functional/services/test_subjects.ts] +* Source: {kibana-blob}test/functional/services/test_subjects.ts[test/functional/services/test_subjects.ts] * Test subjects are elements that are tagged specifically for selecting from tests * Use `testSubjects` over CSS selectors when possible * Usage: @@ -346,21 +346,21 @@ await testSubjects.click(‘containerButton’); ** `testSubjects.click(testSubjectSelector)` - Click a test subject in the page; throw if it can't be found after some time **find:**::: -* Source: {blob}test/functional/services/find.ts[test/functional/services/find.ts] +* Source: {kibana-blob}test/functional/services/find.ts[test/functional/services/find.ts] * Helpers for `remote.findBy*` methods that log and manage timeouts * Popular methods: ** `find.byCssSelector()` ** `find.allByCssSelector()` **retry:**::: -* Source: {blob}test/common/services/retry/retry.ts[test/common/services/retry/retry.ts] +* Source: {kibana-blob}test/common/services/retry/retry.ts[test/common/services/retry/retry.ts] * Helpers for retrying operations * Popular methods: ** `retry.try(fn, onFailureBlock)` - Execute `fn` in a loop until it succeeds or the default timeout elapses. The optional `onFailureBlock` is executed before each retry attempt. ** `retry.tryForTime(ms, fn, onFailureBlock)` - Execute `fn` in a loop until it succeeds or `ms` milliseconds elapses. The optional `onFailureBlock` is executed before each retry attempt. **kibanaServer:**::: -* Source: {blob}test/common/services/kibana_server/kibana_server.js[test/common/services/kibana_server/kibana_server.js] +* Source: {kibana-blob}test/common/services/kibana_server/kibana_server.js[test/common/services/kibana_server/kibana_server.js] * Helpers for interacting with {kib}'s server * Commonly used methods: ** `kibanaServer.uiSettings.update()` @@ -368,23 +368,23 @@ await testSubjects.click(‘containerButton’); ** `kibanaServer.status.getOverallState()` **esArchiver:**::: -* Source: {blob}test/common/services/es_archiver.ts[test/common/services/es_archiver.ts] +* Source: {kibana-blob}test/common/services/es_archiver.ts[test/common/services/es_archiver.ts] * Load/unload archives created with the `esArchiver` * Popular methods: ** `esArchiver.load(path)` ** `esArchiver.loadIfNeeded(path)` ** `esArchiver.unload(path)` -Full list of services that are used in functional tests can be found here: {blob}test/functional/services[test/functional/services] +Full list of services that are used in functional tests can be found here: {kibana-blob}test/functional/services[test/functional/services] **Low-level utilities:**::: * es -** Source: {blob}test/common/services/es.ts[test/common/services/es.ts] +** Source: {kibana-blob}test/common/services/es.ts[test/common/services/es.ts] ** {es} client ** Higher level options: `kibanaServer.uiSettings` or `esArchiver` * remote -** Source: {blob}test/functional/services/remote/remote.ts[test/functional/services/remote/remote.ts] +** Source: {kibana-blob}test/functional/services/remote/remote.ts[test/functional/services/remote/remote.ts] ** Instance of https://seleniumhq.github.io/selenium/docs/api/javascript/module/selenium-webdriver/index_exports_WebDriver.html[WebDriver] class ** Responsible for all communication with the browser ** To perform browser actions, use `remote` service diff --git a/docs/developer/plugin/external-plugin-functional-tests.asciidoc b/docs/developer/plugin/external-plugin-functional-tests.asciidoc index 4a98ffcc5d08c..349602bb4f276 100644 --- a/docs/developer/plugin/external-plugin-functional-tests.asciidoc +++ b/docs/developer/plugin/external-plugin-functional-tests.asciidoc @@ -64,7 +64,7 @@ export default async function ({ readConfigFile }) { } // more settings, like timeouts, mochaOpts, etc are - // defined in the config schema. See {blob}src/functional_test_runner/lib/config/schema.js[src/functional_test_runner/lib/config/schema.js] + // defined in the config schema. See {kibana-blob}src/functional_test_runner/lib/config/schema.js[src/functional_test_runner/lib/config/schema.js] }; } diff --git a/docs/developer/plugin/external-plugin-localization.asciidoc b/docs/developer/plugin/external-plugin-localization.asciidoc index 1eb56a6787a62..cc43acc6ca4b3 100644 --- a/docs/developer/plugin/external-plugin-localization.asciidoc +++ b/docs/developer/plugin/external-plugin-localization.asciidoc @@ -47,9 +47,9 @@ To use {kib} i18n tooling, create a `.i18nrc.json` file with the following confi } ----------- -An example {kib} `.i18nrc.json` is {blob}.i18nrc.json[here]. +An example {kib} `.i18nrc.json` is {kibana-blob}.i18nrc.json[here]. -Full documentation about i18n tooling is {blob}src/dev/i18n/README.md[here]. +Full documentation about i18n tooling is {kibana-blob}src/dev/i18n/README.md[here]. [discrete] === Extracting default messages diff --git a/docs/gs-index.asciidoc b/docs/gs-index.asciidoc index 06996d382d90f..d4e6a102dddf0 100644 --- a/docs/gs-index.asciidoc +++ b/docs/gs-index.asciidoc @@ -9,10 +9,6 @@ release-state can be: released | prerelease | unreleased :major-version: 5.4 :branch: 5.4 -:docker-image: docker.elastic.co/kibana/kibana:{version} -:es-ref: https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/ -:security: https://www.elastic.co/community/security/ - include::{docs-root}/shared/attributes.asciidoc[] include::introduction.asciidoc[] diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 2823529df18d3..6de80b6e845de 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -1,26 +1,12 @@ [[kibana-guide]] = Kibana Guide -:include-xpack: true -:lang: en :kib-repo-dir: {kibana-root}/docs include::{docs-root}/shared/versions/stack/{source_branch}.asciidoc[] -:docker-repo: docker.elastic.co/kibana/kibana -:docker-image: {docker-repo}:{version} -:es-docker-repo: docker.elastic.co/elasticsearch/elasticsearch -:es-docker-image: {es-docker-repo}:{version} -:security-ref: https://www.elastic.co/community/security/ -:Data-source: Data view -:data-source: data view -:data-sources: data views -:a-data-source: a data view - include::{docs-root}/shared/attributes.asciidoc[] -:blob: {kib-repo}blob/{branch}/ - include::user/index.asciidoc[] include::accessibility.asciidoc[] diff --git a/docs/maps/connect-to-ems.asciidoc b/docs/maps/connect-to-ems.asciidoc index 5616e8755a881..8db34ee3f61bf 100644 --- a/docs/maps/connect-to-ems.asciidoc +++ b/docs/maps/connect-to-ems.asciidoc @@ -1,7 +1,9 @@ -[role="xpack"] [[maps-connect-to-ems]] == Connect to Elastic Maps Service +:ems-docker-repo: docker.elastic.co/elastic-maps-service/elastic-maps-server-ubi8 +:ems-docker-image: {ems-docker-repo}:{version} + https://www.elastic.co/elastic-maps-service[Elastic Maps Service (EMS)] is a service that hosts tile layers and vector shapes of administrative boundaries. If you are using Kibana's out-of-the-box settings, Maps is already configured to use EMS. diff --git a/docs/maps/index.asciidoc b/docs/maps/index.asciidoc index f1fdb48c248ab..e6446a2a30075 100644 --- a/docs/maps/index.asciidoc +++ b/docs/maps/index.asciidoc @@ -1,7 +1,3 @@ -:ems-docker-repo: docker.elastic.co/elastic-maps-service/elastic-maps-server-ubi8 -:ems-docker-image: {ems-docker-repo}:{version} - -[role="xpack"] [[maps]] = Maps diff --git a/docs/setup/docker.asciidoc b/docs/setup/docker.asciidoc index 3128ff98269fa..3f9cc2bca309f 100644 --- a/docs/setup/docker.asciidoc +++ b/docs/setup/docker.asciidoc @@ -4,6 +4,11 @@ Install with Docker ++++ +:docker-repo: docker.elastic.co/kibana/kibana +:docker-image: {docker-repo}:{version} +:es-docker-repo: docker.elastic.co/elasticsearch/elasticsearch +:es-docker-image: {es-docker-repo}:{version} + Docker images for {kib} are available from the Elastic Docker registry. The base image is https://hub.docker.com/_/ubuntu[ubuntu:20.04]. From 08a68dbe730d63a0f77c63e46da5581bbb842d41 Mon Sep 17 00:00:00 2001 From: Shahzad Date: Thu, 20 Apr 2023 18:23:36 +0200 Subject: [PATCH 143/144] [Synthetics] Fix performance breakdown link from error details page (#155393) --- .../common/components/stderr_logs.tsx | 9 +++++++++ .../common/components/use_std_error_logs.ts | 4 ++-- .../error_details/error_details_page.tsx | 6 +++++- .../test_run_details/components/step_info.tsx | 2 +- .../components/test_run_error_info.tsx | 17 +++++++++-------- 5 files changed, 26 insertions(+), 12 deletions(-) diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/stderr_logs.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/stderr_logs.tsx index 6c5e80c9f28e4..cbe375774ef50 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/stderr_logs.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/stderr_logs.tsx @@ -53,6 +53,11 @@ export const StdErrorLogs = ({ sortable: true, render: (date: string) => formatDate(date, 'dateTime'), }, + { + field: 'synthetics.type', + name: TYPE_LABEL, + sortable: true, + }, { field: 'synthetics.payload.message', name: 'Message', @@ -146,6 +151,10 @@ export const TIMESTAMP_LABEL = i18n.translate('xpack.synthetics.monitorList.time defaultMessage: 'Timestamp', }); +export const TYPE_LABEL = i18n.translate('xpack.synthetics.monitorList.type', { + defaultMessage: 'Type', +}); + export const ERROR_SUMMARY_LABEL = i18n.translate('xpack.synthetics.monitorList.errorSummary', { defaultMessage: 'Error summary', }); diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/use_std_error_logs.ts b/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/use_std_error_logs.ts index a1317da94ccd2..ac26d594af5e1 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/use_std_error_logs.ts +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/use_std_error_logs.ts @@ -25,8 +25,8 @@ export const useStdErrorLogs = ({ bool: { filter: [ { - term: { - 'synthetics.type': 'stderr', + terms: { + 'synthetics.type': ['stderr', 'stdout'], }, }, ...(monitorId diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/error_details/error_details_page.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/error_details/error_details_page.tsx index 4a6ea2d3f34e1..a759273546005 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/error_details/error_details_page.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/error_details/error_details_page.tsx @@ -67,7 +67,11 @@ export function ErrorDetailsPage() { /> - + diff --git a/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/step_info.tsx b/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/step_info.tsx index 0e13c7efa251d..beda3ed42ead3 100644 --- a/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/step_info.tsx +++ b/x-pack/plugins/synthetics/public/apps/synthetics/components/test_run_details/components/step_info.tsx @@ -69,7 +69,7 @@ export const StepMetaInfo = ({ { const isDownMonitor = journeyDetails?.journey?.monitor?.status === 'down'; @@ -40,14 +42,13 @@ export const TestRunErrorInfo = ({ )} - {(hasNoSteps || isDownMonitor) && - errorMessage?.includes('journey did not finish executing') && ( - - )} + {isDownMonitor && (showErrorLogs || hasNoSteps) && ( + + )} ); }; From 00dfae43129cb9692c9151c3140f3177d347a6cd Mon Sep 17 00:00:00 2001 From: Ersin Erdal <92688503+ersin-erdal@users.noreply.github.com> Date: Thu, 20 Apr 2023 19:23:47 +0200 Subject: [PATCH 144/144] Make rule type param validation required (#154257) Resolves: #153755 This PR intends to make rule type param validation function required. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../server/alert_types/always_firing.ts | 13 ++++ .../server/alert_types/astros.ts | 8 +++ .../legacy_alerts_client.test.ts | 4 ++ .../alerting_authorization.test.ts | 4 ++ .../alerting_event_logger.test.ts | 4 ++ ...eate_alert_event_log_record_object.test.ts | 4 ++ .../alerting/server/lib/license_state.test.ts | 6 ++ .../server/lib/validate_rule_type_params.ts | 2 +- x-pack/plugins/alerting/server/plugin.test.ts | 3 + .../server/rule_type_registry.test.ts | 72 +++++++++++++++++++ .../migrate_legacy_actions.test.ts | 3 + .../rules_client/lib/validate_actions.test.ts | 3 + .../server/rules_client/methods/bulk_edit.ts | 4 +- .../server/rules_client/methods/create.ts | 2 +- .../server/rules_client/methods/update.ts | 2 +- .../rules_client/tests/bulk_delete.test.ts | 4 ++ .../rules_client/tests/bulk_edit.test.ts | 6 ++ .../server/rules_client/tests/create.test.ts | 33 +++++++++ .../server/rules_client/tests/find.test.ts | 13 ++++ .../server/rules_client/tests/get.test.ts | 6 ++ .../alerting/server/rules_client/tests/lib.ts | 3 + .../server/rules_client/tests/resolve.test.ts | 6 ++ .../server/rules_client/tests/update.test.ts | 9 +++ .../rules_client_conflict_retries.test.ts | 6 ++ .../saved_objects/is_rule_exportable.test.ts | 9 +++ .../task_runner/execution_handler.test.ts | 4 ++ .../alerting/server/task_runner/fixtures.ts | 3 + .../server/task_runner/task_runner.ts | 4 +- .../task_runner/task_runner_factory.test.ts | 4 ++ x-pack/plugins/alerting/server/types.ts | 6 +- .../monitoring/server/alerts/base_rule.ts | 7 ++ .../rule_types/es_query/rule_type.test.ts | 8 +-- .../index_threshold/rule_type.test.ts | 4 +- .../plugins/alerts/server/alert_types.ts | 43 +++++++++++ .../alerts_restricted/server/alert_types.ts | 7 ++ .../plugins/alerts/server/plugin.ts | 3 + .../plugins/alerts/server/plugin.ts | 21 +++++- 37 files changed, 325 insertions(+), 18 deletions(-) diff --git a/x-pack/examples/alerting_example/server/alert_types/always_firing.ts b/x-pack/examples/alerting_example/server/alert_types/always_firing.ts index 9b653fc08576e..3c048702e4723 100644 --- a/x-pack/examples/alerting_example/server/alert_types/always_firing.ts +++ b/x-pack/examples/alerting_example/server/alert_types/always_firing.ts @@ -8,6 +8,7 @@ import { v4 as uuidv4 } from 'uuid'; import { range } from 'lodash'; import { RuleType } from '@kbn/alerting-plugin/server'; +import { schema } from '@kbn/config-schema'; import { DEFAULT_INSTANCES_TO_GENERATE, ALERTING_EXAMPLE_APP_ID, @@ -78,4 +79,16 @@ export const alertType: RuleType< }; }, producer: ALERTING_EXAMPLE_APP_ID, + validate: { + params: schema.object({ + instances: schema.maybe(schema.number()), + thresholds: schema.maybe( + schema.object({ + small: schema.maybe(schema.number()), + medium: schema.maybe(schema.number()), + large: schema.maybe(schema.number()), + }) + ), + }), + }, }; diff --git a/x-pack/examples/alerting_example/server/alert_types/astros.ts b/x-pack/examples/alerting_example/server/alert_types/astros.ts index c73ec8ecbc8bf..39cf751702dd7 100644 --- a/x-pack/examples/alerting_example/server/alert_types/astros.ts +++ b/x-pack/examples/alerting_example/server/alert_types/astros.ts @@ -7,6 +7,7 @@ import axios from 'axios'; import { RuleType } from '@kbn/alerting-plugin/server'; +import { schema } from '@kbn/config-schema'; import { Operator, Craft, ALERTING_EXAMPLE_APP_ID } from '../../common/constants'; interface PeopleInSpace { @@ -84,4 +85,11 @@ export const alertType: RuleType< getViewInAppRelativeUrl({ rule }) { return `/app/${ALERTING_EXAMPLE_APP_ID}/astros/${rule.id}`; }, + validate: { + params: schema.object({ + outerSpaceCapacity: schema.number(), + craft: schema.string(), + op: schema.string(), + }), + }, }; diff --git a/x-pack/plugins/alerting/server/alerts_client/legacy_alerts_client.test.ts b/x-pack/plugins/alerting/server/alerts_client/legacy_alerts_client.test.ts index 59668072632b4..e17a13e0b78d6 100644 --- a/x-pack/plugins/alerting/server/alerts_client/legacy_alerts_client.test.ts +++ b/x-pack/plugins/alerting/server/alerts_client/legacy_alerts_client.test.ts @@ -15,6 +15,7 @@ import { ruleRunMetricsStoreMock } from '../lib/rule_run_metrics_store.mock'; import { getAlertsForNotification, processAlerts } from '../lib'; import { logAlerts } from '../task_runner/log_alerts'; import { DEFAULT_FLAPPING_SETTINGS } from '../../common/rules_settings'; +import { schema } from '@kbn/config-schema'; const scheduleActions = jest.fn(); const replaceState = jest.fn(() => ({ scheduleActions })); @@ -86,6 +87,9 @@ const ruleType: jest.Mocked = { producer: 'alerts', cancelAlertsOnRuleTimeout: true, ruleTaskTimeout: '5m', + validate: { + params: schema.any(), + }, }; const testAlert1 = { diff --git a/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts b/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts index 4949d958ce4f0..333623588aa64 100644 --- a/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts +++ b/x-pack/plugins/alerting/server/authorization/alerting_authorization.test.ts @@ -24,6 +24,7 @@ import { v4 as uuidv4 } from 'uuid'; import { RecoveredActionGroup } from '../../common'; import { RegistryRuleType } from '../rule_type_registry'; import { AlertingAuthorizationFilterType } from './alerting_authorization_kuery'; +import { schema } from '@kbn/config-schema'; const ruleTypeRegistry = ruleTypeRegistryMock.create(); const features: jest.Mocked = featuresPluginMock.createStart(); @@ -196,6 +197,9 @@ beforeEach(() => { return { state: {} }; }, producer: 'myApp', + validate: { + params: schema.any(), + }, })); features.getKibanaFeatures.mockReturnValue([ myAppFeature, diff --git a/x-pack/plugins/alerting/server/lib/alerting_event_logger/alerting_event_logger.test.ts b/x-pack/plugins/alerting/server/lib/alerting_event_logger/alerting_event_logger.test.ts index 0eba6610754f3..2711f921e81ec 100644 --- a/x-pack/plugins/alerting/server/lib/alerting_event_logger/alerting_event_logger.test.ts +++ b/x-pack/plugins/alerting/server/lib/alerting_event_logger/alerting_event_logger.test.ts @@ -27,6 +27,7 @@ import { import { RuleRunMetrics } from '../rule_run_metrics_store'; import { EVENT_LOG_ACTIONS } from '../../plugin'; import { TaskRunnerTimerSpan } from '../../task_runner/task_runner_timer'; +import { schema } from '@kbn/config-schema'; const mockNow = '2020-01-01T02:00:00.000Z'; const eventLogger = eventLoggerMock.create(); @@ -42,6 +43,9 @@ const ruleType: jest.Mocked = { executor: jest.fn(), producer: 'alerts', ruleTaskTimeout: '1m', + validate: { + params: schema.any(), + }, }; const context: RuleContextOpts = { diff --git a/x-pack/plugins/alerting/server/lib/create_alert_event_log_record_object.test.ts b/x-pack/plugins/alerting/server/lib/create_alert_event_log_record_object.test.ts index e7d77e55b9e4a..e62ec213cba0f 100644 --- a/x-pack/plugins/alerting/server/lib/create_alert_event_log_record_object.test.ts +++ b/x-pack/plugins/alerting/server/lib/create_alert_event_log_record_object.test.ts @@ -8,6 +8,7 @@ import { createAlertEventLogRecordObject } from './create_alert_event_log_record_object'; import { UntypedNormalizedRuleType } from '../rule_type_registry'; import { RecoveredActionGroup } from '../types'; +import { schema } from '@kbn/config-schema'; const MAINTENANCE_WINDOW_IDS = ['test-1', 'test-2']; @@ -22,6 +23,9 @@ describe('createAlertEventLogRecordObject', () => { recoveryActionGroup: RecoveredActionGroup, executor: jest.fn(), producer: 'alerts', + validate: { + params: schema.any(), + }, }; test('created alert event "execute-start"', async () => { diff --git a/x-pack/plugins/alerting/server/lib/license_state.test.ts b/x-pack/plugins/alerting/server/lib/license_state.test.ts index 535033851b3e0..02b01bbd54f2d 100644 --- a/x-pack/plugins/alerting/server/lib/license_state.test.ts +++ b/x-pack/plugins/alerting/server/lib/license_state.test.ts @@ -72,6 +72,9 @@ describe('getLicenseCheckForRuleType', () => { minimumLicenseRequired: 'gold', isExportable: true, recoveryActionGroup: { id: 'recovered', name: 'Recovered' }, + validate: { + params: { validate: (params) => params }, + }, }; beforeEach(() => { @@ -207,6 +210,9 @@ describe('ensureLicenseForRuleType()', () => { minimumLicenseRequired: 'gold', isExportable: true, recoveryActionGroup: { id: 'recovered', name: 'Recovered' }, + validate: { + params: { validate: (params) => params }, + }, }; beforeEach(() => { diff --git a/x-pack/plugins/alerting/server/lib/validate_rule_type_params.ts b/x-pack/plugins/alerting/server/lib/validate_rule_type_params.ts index b791b05499263..0f152bb6f641b 100644 --- a/x-pack/plugins/alerting/server/lib/validate_rule_type_params.ts +++ b/x-pack/plugins/alerting/server/lib/validate_rule_type_params.ts @@ -17,7 +17,7 @@ export function validateRuleTypeParams( } try { - return validator.validate(params); + return validator.validate(params as Params); } catch (err) { throw Boom.badRequest(`params invalid: ${err.message}`); } diff --git a/x-pack/plugins/alerting/server/plugin.test.ts b/x-pack/plugins/alerting/server/plugin.test.ts index ed4b8575b9810..5101ec8609108 100644 --- a/x-pack/plugins/alerting/server/plugin.test.ts +++ b/x-pack/plugins/alerting/server/plugin.test.ts @@ -71,6 +71,9 @@ const sampleRuleType: RuleType = { async executor() { return { state: {} }; }, + validate: { + params: { validate: (params) => params }, + }, }; describe('Alerting Plugin', () => { diff --git a/x-pack/plugins/alerting/server/rule_type_registry.test.ts b/x-pack/plugins/alerting/server/rule_type_registry.test.ts index c30fd1d5a8ae4..428600f561ff7 100644 --- a/x-pack/plugins/alerting/server/rule_type_registry.test.ts +++ b/x-pack/plugins/alerting/server/rule_type_registry.test.ts @@ -15,6 +15,7 @@ import { licensingMock } from '@kbn/licensing-plugin/server/mocks'; import { loggingSystemMock } from '@kbn/core/server/mocks'; import { inMemoryMetricsMock } from './monitoring/in_memory_metrics.mock'; import { alertsServiceMock } from './alerts_service/alerts_service.mock'; +import { schema } from '@kbn/config-schema'; const logger = loggingSystemMock.create().get(); let mockedLicenseState: jest.Mocked; @@ -62,6 +63,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: schema.any(), + }, }); expect(registry.has('foo')).toEqual(true); }); @@ -83,6 +87,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); @@ -116,6 +123,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); @@ -140,6 +150,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); @@ -167,6 +180,9 @@ describe('Create Lifecycle', () => { executor: jest.fn(), producer: 'alerts', defaultScheduleInterval: 'foobar', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); @@ -193,6 +209,9 @@ describe('Create Lifecycle', () => { executor: jest.fn(), producer: 'alerts', defaultScheduleInterval: '10s', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); registry.register(ruleType); @@ -219,6 +238,9 @@ describe('Create Lifecycle', () => { executor: jest.fn(), producer: 'alerts', defaultScheduleInterval: '10s', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry({ ...ruleTypeRegistryParams, @@ -255,6 +277,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); @@ -284,6 +309,9 @@ describe('Create Lifecycle', () => { producer: 'alerts', minimumLicenseRequired: 'basic', isExportable: true, + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); registry.register(ruleType); @@ -317,6 +345,9 @@ describe('Create Lifecycle', () => { producer: 'alerts', minimumLicenseRequired: 'basic', isExportable: true, + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); registry.register(ruleType); @@ -354,6 +385,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); @@ -380,6 +414,9 @@ describe('Create Lifecycle', () => { executor: jest.fn(), producer: 'alerts', ruleTaskTimeout: '20m', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); registry.register(ruleType); @@ -412,6 +449,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; const registry = new RuleTypeRegistry(ruleTypeRegistryParams); registry.register(ruleType); @@ -435,6 +475,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); expect(() => registry.register({ @@ -451,6 +494,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }) ).toThrowErrorMatchingInlineSnapshot(`"Rule type \\"test\\" is already registered."`); }); @@ -475,6 +521,9 @@ describe('Create Lifecycle', () => { context: 'test', mappings: { fieldMap: { field: { type: 'keyword', required: false } } }, }, + validate: { + params: { validate: (params) => params }, + }, }); expect(alertsService.register).toHaveBeenCalledWith({ @@ -499,6 +548,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: schema.any(), + }, }); expect(alertsService.register).not.toHaveBeenCalled(); @@ -522,6 +574,9 @@ describe('Create Lifecycle', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); const ruleType = registry.get('test'); expect(ruleType).toMatchInlineSnapshot(` @@ -552,6 +607,11 @@ describe('Create Lifecycle', () => { "id": "recovered", "name": "Recovered", }, + "validate": Object { + "params": Object { + "validate": [Function], + }, + }, } `); }); @@ -589,6 +649,9 @@ describe('Create Lifecycle', () => { minimumLicenseRequired: 'basic', executor: jest.fn(), producer: 'alerts', + validate: { + params: schema.any(), + }, }); const result = registry.list(); expect(result).toMatchInlineSnapshot(` @@ -689,6 +752,9 @@ describe('Create Lifecycle', () => { minimumLicenseRequired: 'basic', executor: jest.fn(), producer: 'alerts', + validate: { + params: schema.any(), + }, }); const result = registry.getAllTypes(); expect(result).toEqual(['test']); @@ -715,6 +781,9 @@ describe('Create Lifecycle', () => { isExportable: true, minimumLicenseRequired: 'basic', recoveryActionGroup: { id: 'recovered', name: 'Recovered' }, + validate: { + params: schema.any(), + }, }); }); @@ -750,6 +819,9 @@ function ruleTypeWithVariables( return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; if (!context && !state) return baseAlert; diff --git a/x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/migrate_legacy_actions.test.ts b/x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/migrate_legacy_actions.test.ts index bf67bb5a97191..50848be43a73f 100644 --- a/x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/migrate_legacy_actions.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/lib/siem_legacy_actions/migrate_legacy_actions.test.ts @@ -44,6 +44,9 @@ const ruleType: jest.Mocked = { cancelAlertsOnRuleTimeout: true, ruleTaskTimeout: '5m', getSummarizedAlerts: jest.fn(), + validate: { + params: { validate: (params) => params }, + }, }; const context = { diff --git a/x-pack/plugins/alerting/server/rules_client/lib/validate_actions.test.ts b/x-pack/plugins/alerting/server/rules_client/lib/validate_actions.test.ts index fbf59b2953d9d..679f79d477c86 100644 --- a/x-pack/plugins/alerting/server/rules_client/lib/validate_actions.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/lib/validate_actions.test.ts @@ -26,6 +26,9 @@ describe('validateActions', () => { cancelAlertsOnRuleTimeout: true, ruleTaskTimeout: '5m', getSummarizedAlerts: jest.fn(), + validate: { + params: { validate: (params) => params }, + }, }; const data = { diff --git a/x-pack/plugins/alerting/server/rules_client/methods/bulk_edit.ts b/x-pack/plugins/alerting/server/rules_client/methods/bulk_edit.ts index dfe4ecc952bf6..ce11a0cc017e3 100644 --- a/x-pack/plugins/alerting/server/rules_client/methods/bulk_edit.ts +++ b/x-pack/plugins/alerting/server/rules_client/methods/bulk_edit.ts @@ -503,11 +503,11 @@ async function updateRuleAttributesAndParamsInMemory( // Throws an error if alert type isn't registered const ruleType = context.ruleTypeRegistry.get(data.alertTypeId); - const validatedAlertTypeParams = validateRuleTypeParams(data.params, ruleType.validate?.params); + const validatedAlertTypeParams = validateRuleTypeParams(data.params, ruleType.validate.params); const username = await context.getUserName(); let createdAPIKey = null; diff --git a/x-pack/plugins/alerting/server/rules_client/methods/update.ts b/x-pack/plugins/alerting/server/rules_client/methods/update.ts index 4703cd5b92b28..7c1fbedff37ce 100644 --- a/x-pack/plugins/alerting/server/rules_client/methods/update.ts +++ b/x-pack/plugins/alerting/server/rules_client/methods/update.ts @@ -198,7 +198,7 @@ async function updateAlert( } // Validate - const validatedAlertTypeParams = validateRuleTypeParams(data.params, ruleType.validate?.params); + const validatedAlertTypeParams = validateRuleTypeParams(data.params, ruleType.validate.params); await validateActions(context, ruleType, data, allowMissingConnectorSecrets); // Throw error if schedule interval is less than the minimum and we are enforcing it diff --git a/x-pack/plugins/alerting/server/rules_client/tests/bulk_delete.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/bulk_delete.test.ts index 74808613f869d..dbe04ec420000 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/bulk_delete.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/bulk_delete.test.ts @@ -27,6 +27,7 @@ import { returnedRule2, siemRule1, } from './test_helpers'; +import { schema } from '@kbn/config-schema'; import { migrateLegacyActions } from '../lib'; jest.mock('../lib/siem_legacy_actions/migrate_legacy_actions', () => { @@ -174,6 +175,9 @@ describe('bulkDelete', () => { return { state: {} }; }, producer: 'alerts', + validate: { + params: schema.any(), + }, }); }); diff --git a/x-pack/plugins/alerting/server/rules_client/tests/bulk_edit.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/bulk_edit.test.ts index c9e9302fb0146..47b38cce094ba 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/bulk_edit.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/bulk_edit.test.ts @@ -210,6 +210,9 @@ describe('bulkEdit()', () => { return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); (migrateLegacyActions as jest.Mock).mockResolvedValue(migrateLegacyActionsMock); @@ -686,6 +689,9 @@ describe('bulkEdit()', () => { }, producer: 'alerts', getSummarizedAlerts: jest.fn().mockResolvedValue({}), + validate: { + params: { validate: (params) => params }, + }, }); const existingAction = { frequency: { diff --git a/x-pack/plugins/alerting/server/rules_client/tests/create.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/create.test.ts index 2be00b0fc5352..d44d69a6e64bf 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/create.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/create.test.ts @@ -1233,6 +1233,9 @@ describe('create()', () => { extractReferences: extractReferencesFn, injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ params: ruleParams, @@ -1414,6 +1417,9 @@ describe('create()', () => { extractReferences: extractReferencesFn, injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ params: ruleParams, @@ -2679,6 +2685,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const createdAttributes = { ...data, @@ -2747,6 +2756,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ schedule: { interval: '1s' } }); @@ -2781,6 +2793,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ @@ -2870,6 +2885,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ @@ -2916,6 +2934,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ @@ -2975,6 +2996,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ @@ -3052,6 +3076,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ @@ -3243,6 +3270,9 @@ describe('create()', () => { injectReferences: jest.fn(), }, getSummarizedAlerts: jest.fn().mockResolvedValue({}), + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ @@ -3292,6 +3322,9 @@ describe('create()', () => { extractReferences: jest.fn(), injectReferences: jest.fn(), }, + validate: { + params: { validate: (params) => params }, + }, })); const data = getMockData({ diff --git a/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts index 3573508d891cd..dadfd3204204a 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/find.test.ts @@ -19,6 +19,7 @@ import { auditLoggerMock } from '@kbn/security-plugin/server/audit/mocks'; import { getBeforeSetup, setGlobalDate } from './lib'; import { RecoveredActionGroup } from '../../../common'; import { RegistryRuleType } from '../../rule_type_registry'; +import { schema } from '@kbn/config-schema'; import { enabledRule1, enabledRule2, siemRule1, siemRule2 } from './test_helpers'; import { formatLegacyActions } from '../lib'; @@ -370,6 +371,9 @@ describe('find()', () => { return { state: {} }; }, producer: 'myApp', + validate: { + params: schema.any(), + }, })); ruleTypeRegistry.get.mockImplementationOnce(() => ({ id: '123', @@ -387,6 +391,9 @@ describe('find()', () => { extractReferences: jest.fn(), injectReferences: injectReferencesFn, }, + validate: { + params: schema.any(), + }, })); unsecuredSavedObjectsClient.find.mockResolvedValue({ total: 2, @@ -570,6 +577,9 @@ describe('find()', () => { return { state: {} }; }, producer: 'myApp', + validate: { + params: schema.any(), + }, })); ruleTypeRegistry.get.mockImplementationOnce(() => ({ id: '123', @@ -587,6 +597,9 @@ describe('find()', () => { extractReferences: jest.fn(), injectReferences: injectReferencesFn, }, + validate: { + params: schema.any(), + }, })); unsecuredSavedObjectsClient.find.mockResolvedValue({ total: 2, diff --git a/x-pack/plugins/alerting/server/rules_client/tests/get.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/get.test.ts index 1ca6e664fc359..eb9a8a22523ee 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/get.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/get.test.ts @@ -232,6 +232,9 @@ describe('get()', () => { extractReferences: jest.fn(), injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); const rulesClient = new RulesClient(rulesClientParams); unsecuredSavedObjectsClient.get.mockResolvedValueOnce({ @@ -355,6 +358,9 @@ describe('get()', () => { extractReferences: jest.fn(), injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); const rulesClient = new RulesClient(rulesClientParams); unsecuredSavedObjectsClient.get.mockResolvedValueOnce({ diff --git a/x-pack/plugins/alerting/server/rules_client/tests/lib.ts b/x-pack/plugins/alerting/server/rules_client/tests/lib.ts index f036e2cb02298..337c09e087243 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/lib.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/lib.ts @@ -116,6 +116,9 @@ export function getBeforeSetup( return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, })); rulesClientParams.getEventLogClient.mockResolvedValue( eventLogClient ?? eventLogClientMock.create() diff --git a/x-pack/plugins/alerting/server/rules_client/tests/resolve.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/resolve.test.ts index bb22b5f6d0d53..37372752d53a3 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/resolve.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/resolve.test.ts @@ -284,6 +284,9 @@ describe('resolve()', () => { extractReferences: jest.fn(), injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); const rulesClient = new RulesClient(rulesClientParams); unsecuredSavedObjectsClient.resolve.mockResolvedValueOnce({ @@ -417,6 +420,9 @@ describe('resolve()', () => { extractReferences: jest.fn(), injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); const rulesClient = new RulesClient(rulesClientParams); unsecuredSavedObjectsClient.resolve.mockResolvedValueOnce({ diff --git a/x-pack/plugins/alerting/server/rules_client/tests/update.test.ts b/x-pack/plugins/alerting/server/rules_client/tests/update.test.ts index b76d0607f22a8..775df48e8fc02 100644 --- a/x-pack/plugins/alerting/server/rules_client/tests/update.test.ts +++ b/x-pack/plugins/alerting/server/rules_client/tests/update.test.ts @@ -171,6 +171,9 @@ describe('update()', () => { return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); (migrateLegacyActions as jest.Mock).mockResolvedValue({ hasLegacyActions: false, @@ -749,6 +752,9 @@ describe('update()', () => { extractReferences: extractReferencesFn, injectReferences: injectReferencesFn, }, + validate: { + params: { validate: (params) => params }, + }, })); unsecuredSavedObjectsClient.create.mockResolvedValueOnce({ id: '1', @@ -1643,6 +1649,9 @@ describe('update()', () => { return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); encryptedSavedObjects.getDecryptedAsInternalUser.mockResolvedValueOnce({ id: alertId, diff --git a/x-pack/plugins/alerting/server/rules_client_conflict_retries.test.ts b/x-pack/plugins/alerting/server/rules_client_conflict_retries.test.ts index 7f1a26b0e4940..fcde2f6e4f444 100644 --- a/x-pack/plugins/alerting/server/rules_client_conflict_retries.test.ts +++ b/x-pack/plugins/alerting/server/rules_client_conflict_retries.test.ts @@ -359,6 +359,9 @@ beforeEach(() => { return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, })); ruleTypeRegistry.get.mockReturnValue({ @@ -373,6 +376,9 @@ beforeEach(() => { return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); rulesClient = new RulesClient(rulesClientParams); diff --git a/x-pack/plugins/alerting/server/saved_objects/is_rule_exportable.test.ts b/x-pack/plugins/alerting/server/saved_objects/is_rule_exportable.test.ts index af57c644dd0aa..e517d37739337 100644 --- a/x-pack/plugins/alerting/server/saved_objects/is_rule_exportable.test.ts +++ b/x-pack/plugins/alerting/server/saved_objects/is_rule_exportable.test.ts @@ -55,6 +55,9 @@ describe('isRuleExportable', () => { isExportable: true, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); expect( isRuleExportable( @@ -111,6 +114,9 @@ describe('isRuleExportable', () => { isExportable: false, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); expect( isRuleExportable( @@ -170,6 +176,9 @@ describe('isRuleExportable', () => { isExportable: false, executor: jest.fn(), producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }); expect( isRuleExportable( diff --git a/x-pack/plugins/alerting/server/task_runner/execution_handler.test.ts b/x-pack/plugins/alerting/server/task_runner/execution_handler.test.ts index a83211aa9d040..3aba014226042 100644 --- a/x-pack/plugins/alerting/server/task_runner/execution_handler.test.ts +++ b/x-pack/plugins/alerting/server/task_runner/execution_handler.test.ts @@ -32,6 +32,7 @@ import { AlertInstanceState, AlertInstanceContext } from '../../common'; import { asSavedObjectExecutionSource } from '@kbn/actions-plugin/server'; import sinon from 'sinon'; import { mockAAD } from './fixtures'; +import { schema } from '@kbn/config-schema'; jest.mock('./inject_action_params', () => ({ injectActionParams: jest.fn(), @@ -70,6 +71,9 @@ const ruleType: NormalizedRuleType< executor: jest.fn(), producer: 'alerts', getSummarizedAlerts: getSummarizedAlertsMock, + validate: { + params: schema.any(), + }, }; const rule = { id: '1', diff --git a/x-pack/plugins/alerting/server/task_runner/fixtures.ts b/x-pack/plugins/alerting/server/task_runner/fixtures.ts index 64db706d824f7..0b5cd235185d0 100644 --- a/x-pack/plugins/alerting/server/task_runner/fixtures.ts +++ b/x-pack/plugins/alerting/server/task_runner/fixtures.ts @@ -156,6 +156,9 @@ export const ruleType: jest.Mocked = { cancelAlertsOnRuleTimeout: true, ruleTaskTimeout: '5m', autoRecoverAlerts: true, + validate: { + params: { validate: (params) => params }, + }, }; export const mockRunNowResponse = { diff --git a/x-pack/plugins/alerting/server/task_runner/task_runner.ts b/x-pack/plugins/alerting/server/task_runner/task_runner.ts index febe4a2eeacb7..41426724187e1 100644 --- a/x-pack/plugins/alerting/server/task_runner/task_runner.ts +++ b/x-pack/plugins/alerting/server/task_runner/task_runner.ts @@ -571,7 +571,7 @@ export class TaskRunner< this.alertingEventLogger.start(); return await loadRule({ - paramValidator: this.ruleType.validate?.params, + paramValidator: this.ruleType.validate.params, ruleId, spaceId, context: this.context, @@ -715,7 +715,7 @@ export class TaskRunner< schedule = asOk( ( await loadRule({ - paramValidator: this.ruleType.validate?.params, + paramValidator: this.ruleType.validate.params, ruleId, spaceId, context: this.context, diff --git a/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts b/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts index e9c9f244118ab..69480563c355e 100644 --- a/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts +++ b/x-pack/plugins/alerting/server/task_runner/task_runner_factory.test.ts @@ -32,6 +32,7 @@ import { dataViewPluginMocks } from '@kbn/data-views-plugin/public/mocks'; import { rulesSettingsClientMock } from '../rules_settings_client.mock'; import { maintenanceWindowClientMock } from '../maintenance_window_client.mock'; import { alertsServiceMock } from '../alerts_service/alerts_service.mock'; +import { schema } from '@kbn/config-schema'; const inMemoryMetrics = inMemoryMetricsMock.create(); const executionContext = executionContextServiceMock.createSetupContract(); @@ -58,6 +59,9 @@ const ruleType: UntypedNormalizedRuleType = { }, executor: jest.fn(), producer: 'alerts', + validate: { + params: schema.any(), + }, }; let fakeTimer: sinon.SinonFakeTimers; diff --git a/x-pack/plugins/alerting/server/types.ts b/x-pack/plugins/alerting/server/types.ts index ee9bf42e5716b..21ba86dc0f25f 100644 --- a/x-pack/plugins/alerting/server/types.ts +++ b/x-pack/plugins/alerting/server/types.ts @@ -137,7 +137,7 @@ export type ExecutorType< ) => Promise<{ state: State }>; export interface RuleTypeParamsValidator { - validate: (object: unknown) => Params; + validate: (object: Partial) => Params; validateMutatedParams?: (mutatedOject: Params, origObject?: Params) => Params; } @@ -235,8 +235,8 @@ export interface RuleType< > { id: string; name: string; - validate?: { - params?: RuleTypeParamsValidator; + validate: { + params: RuleTypeParamsValidator; }; actionGroups: Array>; defaultActionGroupId: ActionGroup['id']; diff --git a/x-pack/plugins/monitoring/server/alerts/base_rule.ts b/x-pack/plugins/monitoring/server/alerts/base_rule.ts index 3e08d370af56b..17491ffc760cb 100644 --- a/x-pack/plugins/monitoring/server/alerts/base_rule.ts +++ b/x-pack/plugins/monitoring/server/alerts/base_rule.ts @@ -103,6 +103,13 @@ export class BaseRule { actionVariables: { context: actionVariables, }, + // As there is "[key: string]: unknown;" in CommonAlertParams, + // we couldn't figure out a schema for validation and created a follow on issue: + // https://github.com/elastic/kibana/issues/153754 + // Below validate function should be overwritten in each monitoring rule type + validate: { + params: { validate: (params) => params }, + }, }; } diff --git a/x-pack/plugins/stack_alerts/server/rule_types/es_query/rule_type.test.ts b/x-pack/plugins/stack_alerts/server/rule_types/es_query/rule_type.test.ts index 66d96c36d2eb9..8b1679241d9c9 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/es_query/rule_type.test.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/es_query/rule_type.test.ts @@ -116,11 +116,11 @@ describe('ruleType', () => { groupBy: 'all', }; - expect(ruleType.validate?.params?.validate(params)).toBeTruthy(); + expect(ruleType.validate.params.validate(params)).toBeTruthy(); }); it('validator fails with invalid es query params - threshold', async () => { - const paramsSchema = ruleType.validate?.params; + const paramsSchema = ruleType.validate.params; if (!paramsSchema) throw new Error('params validator not set'); const params: Partial> = { @@ -556,11 +556,11 @@ describe('ruleType', () => { }); it('validator succeeds with valid search source params', async () => { - expect(ruleType.validate?.params?.validate(defaultParams)).toBeTruthy(); + expect(ruleType.validate.params.validate(defaultParams)).toBeTruthy(); }); it('validator fails with invalid search source params - esQuery provided', async () => { - const paramsSchema = ruleType.validate?.params!; + const paramsSchema = ruleType.validate.params; const params: Partial> = { size: 100, timeWindowSize: 5, diff --git a/x-pack/plugins/stack_alerts/server/rule_types/index_threshold/rule_type.test.ts b/x-pack/plugins/stack_alerts/server/rule_types/index_threshold/rule_type.test.ts index 11a02beddc96d..92664d05ff9ab 100644 --- a/x-pack/plugins/stack_alerts/server/rule_types/index_threshold/rule_type.test.ts +++ b/x-pack/plugins/stack_alerts/server/rule_types/index_threshold/rule_type.test.ts @@ -138,11 +138,11 @@ describe('ruleType', () => { threshold: [0], }; - expect(ruleType.validate?.params?.validate(params)).toBeTruthy(); + expect(ruleType.validate.params.validate(params)).toBeTruthy(); }); it('validator fails with invalid params', async () => { - const paramsSchema = ruleType.validate?.params; + const paramsSchema = ruleType.validate.params; if (!paramsSchema) throw new Error('params validator not set'); const params: Partial> = { diff --git a/x-pack/test/alerting_api_integration/common/plugins/alerts/server/alert_types.ts b/x-pack/test/alerting_api_integration/common/plugins/alerts/server/alert_types.ts index c2f6b5ca17d21..60e7e82966864 100644 --- a/x-pack/test/alerting_api_integration/common/plugins/alerts/server/alert_types.ts +++ b/x-pack/test/alerting_api_integration/common/plugins/alerts/server/alert_types.ts @@ -195,6 +195,9 @@ function getCumulativeFiringAlertType() { }, }; }, + validate: { + params: schema.any(), + }, }; return result; } @@ -531,6 +534,9 @@ function getPatternFiringAlertType() { }, }; }, + validate: { + params: paramsSchema, + }, }; return result; } @@ -572,6 +578,9 @@ function getPatternSuccessOrFailureAlertType() { }, }; }, + validate: { + params: paramsSchema, + }, }; return result; } @@ -646,6 +655,9 @@ function getPatternFiringAutoRecoverFalseAlertType() { }, }; }, + validate: { + params: paramsSchema, + }, }; return result; } @@ -692,6 +704,9 @@ function getLongRunningPatternRuleType(cancelAlertsOnRuleTimeout: boolean = true } return { state: {} }; }, + validate: { + params: paramsSchema, + }, }; return result; } @@ -752,6 +767,9 @@ function getCancellableRuleType() { return { state: {} }; }, + validate: { + params: paramsSchema, + }, }; return result; } @@ -851,6 +869,9 @@ export function defineAlertTypes( async executor() { return { state: {} }; }, + validate: { + params: schema.any(), + }, }; const goldNoopAlertType: RuleType<{}, {}, {}, {}, {}, 'default'> = { id: 'test.gold.noop', @@ -863,6 +884,9 @@ export function defineAlertTypes( async executor() { return { state: {} }; }, + validate: { + params: schema.any(), + }, }; const onlyContextVariablesAlertType: RuleType<{}, {}, {}, {}, {}, 'default'> = { id: 'test.onlyContextVariables', @@ -878,6 +902,9 @@ export function defineAlertTypes( async executor() { return { state: {} }; }, + validate: { + params: schema.any(), + }, }; const onlyStateVariablesAlertType: RuleType<{}, {}, {}, {}, {}, 'default'> = { id: 'test.onlyStateVariables', @@ -893,6 +920,9 @@ export function defineAlertTypes( async executor() { return { state: {} }; }, + validate: { + params: schema.any(), + }, }; const throwAlertType: RuleType<{}, {}, {}, {}, {}, 'default'> = { id: 'test.throw', @@ -910,6 +940,9 @@ export function defineAlertTypes( async executor() { throw new Error('this alert is intended to fail'); }, + validate: { + params: schema.any(), + }, }; function getLongRunningRuleType() { const paramsSchema = schema.object({ @@ -935,6 +968,9 @@ export function defineAlertTypes( await new Promise((resolve) => setTimeout(resolve, params.delay ?? 5000)); return { state: {} }; }, + validate: { + params: schema.any(), + }, }; return result; } @@ -953,7 +989,11 @@ export function defineAlertTypes( return { state: {} }; }, producer: 'alertsFixture', + validate: { + params: schema.any(), + }, }; + const multipleSearchesRuleType: RuleType< { numSearches: number; delay: string }, {}, @@ -1006,6 +1046,9 @@ export function defineAlertTypes( return { state: {} }; }, + validate: { + params: schema.object({ numSearches: schema.number(), delay: schema.string() }), + }, }; alerting.registerType(getAlwaysFiringAlertType()); diff --git a/x-pack/test/alerting_api_integration/common/plugins/alerts_restricted/server/alert_types.ts b/x-pack/test/alerting_api_integration/common/plugins/alerts_restricted/server/alert_types.ts index b4ac8a9fb259a..fd4dabf9c8cab 100644 --- a/x-pack/test/alerting_api_integration/common/plugins/alerts_restricted/server/alert_types.ts +++ b/x-pack/test/alerting_api_integration/common/plugins/alerts_restricted/server/alert_types.ts @@ -7,6 +7,7 @@ import { CoreSetup } from '@kbn/core/server'; import { RuleType } from '@kbn/alerting-plugin/server'; +import { schema } from '@kbn/config-schema'; import { FixtureStartDeps, FixtureSetupDeps } from './plugin'; export function defineAlertTypes( @@ -25,6 +26,9 @@ export function defineAlertTypes( async executor() { return { state: {} }; }, + validate: { + params: schema.any(), + }, }; const noopUnrestrictedAlertType: RuleType<{}, {}, {}, {}, {}, 'default'> = { id: 'test.unrestricted-noop', @@ -37,6 +41,9 @@ export function defineAlertTypes( async executor() { return { state: {} }; }, + validate: { + params: schema.any(), + }, }; alerting.registerType(noopRestrictedAlertType); alerting.registerType(noopUnrestrictedAlertType); diff --git a/x-pack/test/functional_execution_context/plugins/alerts/server/plugin.ts b/x-pack/test/functional_execution_context/plugins/alerts/server/plugin.ts index 068fd2356b360..436452c1fdbaf 100644 --- a/x-pack/test/functional_execution_context/plugins/alerts/server/plugin.ts +++ b/x-pack/test/functional_execution_context/plugins/alerts/server/plugin.ts @@ -82,6 +82,9 @@ export class FixturePlugin implements Plugin params }, + }, }); const router = core.http.createRouter(); diff --git a/x-pack/test/functional_with_es_ssl/plugins/alerts/server/plugin.ts b/x-pack/test/functional_with_es_ssl/plugins/alerts/server/plugin.ts index bbb52e6d98221..66a8890b3da0c 100644 --- a/x-pack/test/functional_with_es_ssl/plugins/alerts/server/plugin.ts +++ b/x-pack/test/functional_with_es_ssl/plugins/alerts/server/plugin.ts @@ -6,7 +6,11 @@ */ import { Plugin, CoreSetup } from '@kbn/core/server'; -import { PluginSetupContract as AlertingSetup, RuleType } from '@kbn/alerting-plugin/server'; +import { + PluginSetupContract as AlertingSetup, + RuleType, + RuleTypeParams, +} from '@kbn/alerting-plugin/server'; import { PluginSetupContract as FeaturesPluginSetup } from '@kbn/features-plugin/server'; // this plugin's dependendencies @@ -26,10 +30,17 @@ export const noopAlertType: RuleType<{}, {}, {}, {}, {}, 'default'> = { return { state: {} }; }, producer: 'alerts', + validate: { + params: { validate: (params) => params }, + }, }; +interface AlwaysFiringParams extends RuleTypeParams { + instances: Array<{ id: string; state: any }>; +} + export const alwaysFiringAlertType: RuleType< - { instances: Array<{ id: string; state: any }> }, + AlwaysFiringParams, never, // Only use if defining useSavedObjectReferences hook { globalStateValue: boolean; @@ -66,6 +77,9 @@ export const alwaysFiringAlertType: RuleType< }, }; }, + validate: { + params: { validate: (params) => params as AlwaysFiringParams }, + }, }; export const failingAlertType: RuleType = { @@ -84,6 +98,9 @@ export const failingAlertType: RuleType params }, + }, }; export class AlertingFixturePlugin implements Plugin {