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 01/60] [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 02/60] [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 03/60] 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 04/60] [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 05/60] [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 06/60] 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 07/60] 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 08/60] [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 09/60] [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 10/60] 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 11/60] 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 12/60] [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 13/60] [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 14/60] [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 15/60] [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 16/60] [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 17/60] [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 18/60] [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 19/60] [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 20/60] 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 21/60] [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 22/60] [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 23/60] [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 24/60] [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 25/60] [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 26/60] [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 27/60] [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 28/60] [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 29/60] [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 30/60] [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 31/60] [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 32/60] 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 { From f315e808a40ac68d9d89007ea55aaf82261a6536 Mon Sep 17 00:00:00 2001 From: Alexi Doak <109488926+doakalexi@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:54:05 -0400 Subject: [PATCH 33/60] [ResponseOps][Window Maintenance] Add technical preview (#155403) Resolves https://github.com/elastic/kibana/issues/153976 ## Summary Adds the technical preview pill and popover to the headings of the maintenance windows pages. Screen Shot 2023-04-20 at 9 29 51 AM Screen Shot 2023-04-20 at 9 30 04 AM ### 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) --- .../components/page_header.tsx | 24 +++++++-- .../pages/maintenance_windows/index.tsx | 51 +++++++++++++------ .../pages/maintenance_windows/translations.ts | 15 ++++++ 3 files changed, 71 insertions(+), 19 deletions(-) diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/page_header.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/page_header.tsx index 6c2d85afecd71..97602e9f6c972 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/page_header.tsx +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/page_header.tsx @@ -6,7 +6,7 @@ */ import React, { useCallback } from 'react'; -import { EuiFlexGroup, EuiFlexItem, EuiSpacer, EuiTitle } from '@elastic/eui'; +import { EuiBetaBadge, EuiFlexGroup, EuiFlexItem, EuiSpacer, EuiTitle } from '@elastic/eui'; import { euiThemeVars } from '@kbn/ui-theme'; import { css } from '@emotion/react'; @@ -23,6 +23,15 @@ export const styles = { `, }; +export const ExperimentalBadge = React.memo(() => ( + +)); +ExperimentalBadge.displayName = 'ExperimentalBadge'; + interface TitleProps { title: string; description?: string; @@ -31,9 +40,16 @@ const Title = React.memo(({ title, description }) => { return ( - -

    {}

    -
    + + + +

    {}

    +
    +
    + + + +
    {description ? ( <> diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/index.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/index.tsx index 486c0538db8b5..ab5828f0dffa3 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/index.tsx +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/index.tsx @@ -6,7 +6,16 @@ */ import React, { useCallback } from 'react'; -import { EuiButton, EuiPageHeader, EuiSpacer } from '@elastic/eui'; +import { + EuiButton, + EuiFlexGroup, + EuiFlexItem, + EuiPageHeader, + EuiPageHeaderSection, + EuiSpacer, + EuiText, + EuiTitle, +} from '@elastic/eui'; import { useKibana } from '../../utils/kibana_react'; import { useBreadcrumbs } from '../../hooks/use_breadcrumbs'; import { EmptyPrompt } from './components/empty_prompt'; @@ -16,6 +25,7 @@ import { AlertingDeepLinkId } from '../../config'; import { MaintenanceWindowsList } from './components/maintenance_windows_list'; import { useFindMaintenanceWindows } from '../../hooks/use_find_maintenance_windows'; import { CenterJustifiedSpinner } from './components/center_justified_spinner'; +import { ExperimentalBadge } from './components/page_header'; export const MaintenanceWindowsPage = React.memo(() => { const { docLinks } = useKibana().services; @@ -37,20 +47,31 @@ export const MaintenanceWindowsPage = React.memo(() => { return ( <> - - {i18n.CREATE_NEW_BUTTON} - , - ] - : [] - } - /> + + + + + +

    {i18n.MAINTENANCE_WINDOWS}

    +
    +
    + + + +
    + + +

    {i18n.MAINTENANCE_WINDOWS_DESCRIPTION}

    +
    +
    + {!showEmptyPrompt ? ( + + + {i18n.CREATE_NEW_BUTTON} + + + ) : null} +
    {showEmptyPrompt ? ( ) : ( 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 ee02c5c2a9528..7dcb388f84967 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts @@ -446,3 +446,18 @@ export const SAVE_MAINTENANCE_WINDOW = i18n.translate( defaultMessage: 'Save maintenance window', } ); + +export const EXPERIMENTAL_LABEL = i18n.translate( + 'xpack.alerting.maintenanceWindows.badge.experimentalLabel', + { + defaultMessage: 'Technical preview', + } +); + +export const EXPERIMENTAL_DESCRIPTION = i18n.translate( + 'xpack.alerting.maintenanceWindows.badge.experimentalDescription', + { + defaultMessage: + 'This functionality is in technical preview and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.', + } +); From a33b6d07319201e25c0485c1468a805d24894ac6 Mon Sep 17 00:00:00 2001 From: Jordan <51442161+JordanSh@users.noreply.github.com> Date: Thu, 20 Apr 2023 20:59:33 +0300 Subject: [PATCH 34/60] [Cloud Security] Fix broken dashboard UI and ComplianceScoreBar (#155428) --- .../components/compliance_score_bar.tsx | 17 +++++--- .../compliance_charts/risks_table.tsx | 4 +- .../dashboard_sections/benchmarks_section.tsx | 42 +++++++++++-------- .../findings_by_resource_table.tsx | 18 ++------ 4 files changed, 42 insertions(+), 39 deletions(-) diff --git a/x-pack/plugins/cloud_security_posture/public/components/compliance_score_bar.tsx b/x-pack/plugins/cloud_security_posture/public/components/compliance_score_bar.tsx index c598faf19ba78..d70b43f810d8a 100644 --- a/x-pack/plugins/cloud_security_posture/public/components/compliance_score_bar.tsx +++ b/x-pack/plugins/cloud_security_posture/public/components/compliance_score_bar.tsx @@ -6,11 +6,15 @@ */ import { EuiFlexGroup, EuiFlexItem, EuiText, EuiToolTip, useEuiTheme } from '@elastic/eui'; +import { css } from '@emotion/react'; import { i18n } from '@kbn/i18n'; import React from 'react'; import { calculatePostureScore } from '../../common/utils/helpers'; import { statusColors } from '../common/constants'; +/** + * This component will take 100% of the width set by the parent + * */ export const ComplianceScoreBar = ({ totalPassed, totalFailed, @@ -23,7 +27,12 @@ export const ComplianceScoreBar = ({ return ( - - navToFailedFindingsByClusterAndSection(cluster, resourceTypeName) - } - viewAllButtonTitle={i18n.translate( - 'xpack.csp.dashboard.risksTable.clusterCardViewAllButtonTitle', - { - defaultMessage: 'View all failed findings for this {postureAsset}', - values: { - postureAsset: - dashboardType === CSPM_POLICY_TEMPLATE ? 'cloud account' : 'cluster', - }, +
    + + navToFailedFindingsByClusterAndSection(cluster, resourceTypeName) } - )} - onViewAllClick={() => navToFailedFindingsByCluster(cluster)} - /> + viewAllButtonTitle={i18n.translate( + 'xpack.csp.dashboard.risksTable.clusterCardViewAllButtonTitle', + { + defaultMessage: 'View all failed findings for this {postureAsset}', + values: { + postureAsset: + dashboardType === CSPM_POLICY_TEMPLATE ? 'cloud account' : 'cluster', + }, + } + )} + onViewAllClick={() => navToFailedFindingsByCluster(cluster)} + /> +
    ))} diff --git a/x-pack/plugins/cloud_security_posture/public/pages/configurations/latest_findings_by_resource/findings_by_resource_table.tsx b/x-pack/plugins/cloud_security_posture/public/pages/configurations/latest_findings_by_resource/findings_by_resource_table.tsx index 2d11624317e47..ce3f55e03417d 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/configurations/latest_findings_by_resource/findings_by_resource_table.tsx +++ b/x-pack/plugins/cloud_security_posture/public/pages/configurations/latest_findings_by_resource/findings_by_resource_table.tsx @@ -17,7 +17,6 @@ import { FormattedMessage } from '@kbn/i18n-react'; import numeral from '@elastic/numeral'; import { generatePath, Link } from 'react-router-dom'; import { i18n } from '@kbn/i18n'; -import { css } from '@emotion/react'; import { ColumnNameWithTooltip } from '../../../components/column_name_with_tooltip'; import { ComplianceScoreBar } from '../../../components/compliance_score_bar'; import * as TEST_SUBJECTS from '../test_subjects'; @@ -179,19 +178,10 @@ const baseColumns: Array> = /> ), render: (complianceScore: FindingsByResourcePage['compliance_score'], data) => ( -
    - -
    + ), dataType: 'number', }, From 1fe26f3fba1c73405c642399ffa4a57b5e9bc233 Mon Sep 17 00:00:00 2001 From: "Quynh Nguyen (Quinn)" <43350163+qn895@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:07:42 -0500 Subject: [PATCH 35/60] [ML] Adds secondary authorization header to Transforms in Fleet (#154665) ## Summary The PR updates how credentials are created and managed for packages including Transforms. Previously, everything will be installed as `kibana_system` user, which has limited permissions to a specific set of indices defined internally. This PR changes so that a secondary authorization is passed to the creation of Transforms, making the permissions/privileges dependent on the logged-in user. ### Installing a package containing transforms - If the package has transforms assets to be installed, it will show warning/info call out message indicating that the transforms will be created and started with the current user's credentials/roles. Screen Shot 2023-04-11 at 17 45 58 Screen Shot 2023-04-11 at 17 46 03 -It will parse the authorization header (schema and credentials) from the Kibana request to the package handlers. - If the package contains transforms, and if **run_as_kibana_system: false in the any of the transform yml config** , then generate an API key from the above credential (as that Kibana user with the roles and permissions at the time of generation), and use it in `transform/_put` requests. - If user has **sufficient permissions**: - Transforms will be successfully created and started. They will be marked in the saved object reference with `deferred: false` - Transform `_meta` will have `installed_by: {username}` Screen Shot 2023-04-11 at 14 11 43 - Package will be successfully installed - If user has **insufficient permissions**: - Transforms will be successfully created, but fail to start. They will be marked in the saved object reference with `deferred: true` - Package will still be successfully installed. It will show warning that the package has some deferred installations. ### Deferred installations If a package has deferred installations (a.k.a assets that were included in the package, but require additional permissions to operate correctly), it will: - Show a warning on the `Installed integrations` page: Screen Shot 2023-04-06 at 15 59 46 - Show a warning badge with explanation on the tab: Screen Shot 2023-04-10 at 12 17 26 - Show a new `Deferred installations` section as well as call out message to prompt user to re-authorize inside the `Assets` tab: Screen Shot 2023-04-06 at 15 59 09 If the currently logged-in user has sufficient permissions (`manage_transform` ES cluster privilege/`transform_admin` Kibana role), the Reauthorize buttons will be enabled: Screen Shot 2023-04-10 at 12 24 18 ### Reauthorizing installations - For transforms: - Clicking the `Reauthorize` button will send an `_transform/_update` API request with a `headers: {es-secondary-authorization: 'ApiKey {encoded_api}'` and then a `_transform/_start` to start operations. - Transform `_meta` will be updated with addition of `last_authorized_by: {username}` Screen Shot 2023-04-11 at 14 12 38 - If `order` is specified in `_meta` of the transform, they will be updated and started sequentially. Else, they will be executed concurrently. ## Reviewers note: -For **kibana-core**: saved object for Fleet's EsAsset was extended with `deferred: boolean`, thus changing the hash. ### 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: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../group2/check_registered_types.test.ts | 2 +- x-pack/plugins/fleet/common/authz.test.ts | 29 ++ x-pack/plugins/fleet/common/authz.ts | 51 +++ .../plugins/fleet/common/constants/plugin.ts | 1 + .../plugins/fleet/common/constants/routes.ts | 2 + .../fleet/common/http_authorization_header.ts | 58 ++++ x-pack/plugins/fleet/common/mocks.ts | 8 + .../plugins/fleet/common/services/routes.ts | 6 + .../plugins/fleet/common/types/models/epm.ts | 2 + .../common/types/models/transform_api_key.ts | 19 ++ .../single_page_layout/index.test.tsx | 9 + .../single_page_layout/index.tsx | 16 + .../sections/epm/components/package_card.tsx | 30 +- .../epm/screens/detail/assets/assets.tsx | 80 +++-- .../detail/assets/assets_accordion.tsx | 24 +- .../epm/screens/detail/assets/constants.ts | 3 +- .../assets/deferred_assets_accordion.tsx | 66 ++++ .../detail/assets/deferred_assets_warning.tsx | 79 +++++ .../assets/deferred_transforms_accordion.tsx | 278 ++++++++++++++++ .../epm/screens/detail/assets/types.ts | 4 +- .../sections/epm/screens/detail/index.tsx | 23 +- .../epm/screens/detail/settings/settings.tsx | 22 +- .../sections/epm/screens/home/index.tsx | 5 + .../components/custom_assets_accordion.tsx | 6 +- ...nsform_install_as_current_user_callout.tsx | 37 +++ .../fleet/public/hooks/use_kibana_link.ts | 2 +- .../fleet/public/hooks/use_request/epm.ts | 12 + .../has_deferred_installations.test.ts | 99 ++++++ .../services/has_deferred_installations.ts | 17 + .../server/routes/agent_policy/handlers.ts | 5 + .../fleet/server/routes/epm/handlers.ts | 77 ++++- .../plugins/fleet/server/routes/epm/index.ts | 24 ++ .../server/routes/package_policy/handlers.ts | 6 + .../fleet/server/saved_objects/index.ts | 1 + .../fleet/server/services/agent_policy.ts | 16 +- .../server/services/agent_policy_create.ts | 15 +- .../services/api_keys/transform_api_keys.ts | 124 +++++++ .../elasticsearch/index/update_settings.ts | 7 +- .../epm/elasticsearch/transform/install.ts | 305 ++++++++++-------- .../elasticsearch/transform/reauthorize.ts | 174 ++++++++++ .../epm/elasticsearch/transform/remove.ts | 6 +- .../transform/transform_utils.test.ts | 54 ++++ .../transform/transform_utils.ts | 45 +++ .../transform/transforms.test.ts | 255 +++++++++------ .../services/epm/package_service.test.ts | 12 +- .../server/services/epm/package_service.ts | 24 +- .../services/epm/packages/_install_package.ts | 14 +- .../epm/packages/bulk_install_packages.ts | 5 + .../server/services/epm/packages/install.ts | 23 ++ .../fleet/server/services/package_policy.ts | 13 +- .../server/services/package_policy_service.ts | 4 + .../fleet/server/services/preconfiguration.ts | 1 - .../server/services/security/security.ts | 11 +- .../fleet/server/types/rest_spec/epm.ts | 13 + x-pack/plugins/fleet/tsconfig.json | 1 + 55 files changed, 1936 insertions(+), 289 deletions(-) create mode 100644 x-pack/plugins/fleet/common/http_authorization_header.ts create mode 100644 x-pack/plugins/fleet/common/types/models/transform_api_key.ts create mode 100644 x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_accordion.tsx create mode 100644 x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_warning.tsx create mode 100644 x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_transforms_accordion.tsx create mode 100644 x-pack/plugins/fleet/public/components/transform_install_as_current_user_callout.tsx create mode 100644 x-pack/plugins/fleet/public/services/has_deferred_installations.test.ts create mode 100644 x-pack/plugins/fleet/public/services/has_deferred_installations.ts create mode 100644 x-pack/plugins/fleet/server/services/api_keys/transform_api_keys.ts create mode 100644 x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/reauthorize.ts create mode 100644 x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.test.ts create mode 100644 x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.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 1da0a3c83c9bb..0adc6e5f084fd 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 @@ -84,7 +84,7 @@ describe('checking migration metadata changes on all registered SO types', () => "endpoint:user-artifact": "a5b154962fb6cdf5d9e7452e58690054c95cc72a", "endpoint:user-artifact-manifest": "5989989c0f84dd2d02da1eb46b6254e334bd2ccd", "enterprise_search_telemetry": "4b41830e3b28a16eb92dee0736b44ae6276ced9b", - "epm-packages": "83235af7c95fd9bfb1d70996a5511e05b3fcc9ef", + "epm-packages": "8755f947a00613f994b1bc5d5580e104043e27f6", "epm-packages-assets": "00c8b5e5bf059627ffc9fbde920e1ac75926c5f6", "event_loop_delays_daily": "ef49e7f15649b551b458c7ea170f3ed17f89abd0", "exception-list": "38181294f64fc406c15f20d85ca306c8a4feb3c0", diff --git a/x-pack/plugins/fleet/common/authz.test.ts b/x-pack/plugins/fleet/common/authz.test.ts index 9602fabdce7c1..22bfeb6c04cef 100644 --- a/x-pack/plugins/fleet/common/authz.test.ts +++ b/x-pack/plugins/fleet/common/authz.test.ts @@ -7,6 +7,8 @@ import { DEFAULT_APP_CATEGORIES } from '@kbn/core-application-common'; +import { TRANSFORM_PLUGIN_ID } from './constants/plugin'; + import { calculatePackagePrivilegesFromCapabilities, calculatePackagePrivilegesFromKibanaPrivileges, @@ -39,16 +41,33 @@ describe('fleet authz', () => { writeHostIsolationExceptions: true, writeHostIsolation: false, }; + + const transformCapabilities = { + canCreateTransform: false, + canDeleteTransform: false, + canGetTransform: true, + canStartStopTransform: false, + }; + const expected = { endpoint: { actions: generateActions(ENDPOINT_PRIVILEGES, endpointCapabilities), }, + transform: { + actions: { + canCreateTransform: { executePackageAction: false }, + canDeleteTransform: { executePackageAction: false }, + canGetTransform: { executePackageAction: true }, + canStartStopTransform: { executePackageAction: false }, + }, + }, }; const actual = calculatePackagePrivilegesFromCapabilities({ navLinks: {}, management: {}, catalogue: {}, siem: endpointCapabilities, + transform: transformCapabilities, }); expect(actual).toEqual(expected); @@ -65,6 +84,8 @@ describe('fleet authz', () => { { privilege: `${SECURITY_SOLUTION_ID}-writeHostIsolationExceptions`, authorized: true }, { privilege: `${SECURITY_SOLUTION_ID}-writeHostIsolation`, authorized: false }, { privilege: `${SECURITY_SOLUTION_ID}-ignoreMe`, authorized: true }, + { privilege: `${TRANSFORM_PLUGIN_ID}-admin`, authorized: true }, + { privilege: `${TRANSFORM_PLUGIN_ID}-read`, authorized: true }, ]; const expected = { endpoint: { @@ -77,6 +98,14 @@ describe('fleet authz', () => { writeHostIsolation: false, }), }, + transform: { + actions: { + canCreateTransform: { executePackageAction: true }, + canDeleteTransform: { executePackageAction: true }, + canGetTransform: { executePackageAction: true }, + canStartStopTransform: { executePackageAction: true }, + }, + }, }; const actual = calculatePackagePrivilegesFromKibanaPrivileges(endpointPrivileges); expect(actual).toEqual(expected); diff --git a/x-pack/plugins/fleet/common/authz.ts b/x-pack/plugins/fleet/common/authz.ts index fa30f2b8f7f33..83d337c00368b 100644 --- a/x-pack/plugins/fleet/common/authz.ts +++ b/x-pack/plugins/fleet/common/authz.ts @@ -7,8 +7,16 @@ import type { Capabilities } from '@kbn/core-capabilities-common'; +import { TRANSFORM_PLUGIN_ID } from './constants/plugin'; + import { ENDPOINT_PRIVILEGES } from './constants'; +export type TransformPrivilege = + | 'canGetTransform' + | 'canCreateTransform' + | 'canDeleteTransform' + | 'canStartStopTransform'; + export interface FleetAuthz { fleet: { all: boolean; @@ -106,10 +114,22 @@ export function calculatePackagePrivilegesFromCapabilities( {} ); + const transformActions = Object.keys(capabilities.transform).reduce((acc, privilegeName) => { + return { + ...acc, + [privilegeName]: { + executePackageAction: capabilities.transform[privilegeName] || false, + }, + }; + }, {}); + return { endpoint: { actions: endpointActions, }, + transform: { + actions: transformActions, + }, }; } @@ -158,9 +178,40 @@ export function calculatePackagePrivilegesFromKibanaPrivileges( {} ); + const hasTransformAdmin = getAuthorizationFromPrivileges( + kibanaPrivileges, + `${TRANSFORM_PLUGIN_ID}-`, + `admin` + ); + const transformActions: { + [key in TransformPrivilege]: { + executePackageAction: boolean; + }; + } = { + canCreateTransform: { + executePackageAction: hasTransformAdmin, + }, + canDeleteTransform: { + executePackageAction: hasTransformAdmin, + }, + canStartStopTransform: { + executePackageAction: hasTransformAdmin, + }, + canGetTransform: { + executePackageAction: getAuthorizationFromPrivileges( + kibanaPrivileges, + `${TRANSFORM_PLUGIN_ID}-`, + `read` + ), + }, + }; + return { endpoint: { actions: endpointActions, }, + transform: { + actions: transformActions, + }, }; } diff --git a/x-pack/plugins/fleet/common/constants/plugin.ts b/x-pack/plugins/fleet/common/constants/plugin.ts index 86211ba3727eb..f9f71fb1608fa 100644 --- a/x-pack/plugins/fleet/common/constants/plugin.ts +++ b/x-pack/plugins/fleet/common/constants/plugin.ts @@ -7,3 +7,4 @@ export const PLUGIN_ID = 'fleet' as const; export const INTEGRATIONS_PLUGIN_ID = 'integrations' as const; +export const TRANSFORM_PLUGIN_ID = 'transform' as const; diff --git a/x-pack/plugins/fleet/common/constants/routes.ts b/x-pack/plugins/fleet/common/constants/routes.ts index 7eb00dd89ab0c..30e0862184a9f 100644 --- a/x-pack/plugins/fleet/common/constants/routes.ts +++ b/x-pack/plugins/fleet/common/constants/routes.ts @@ -40,6 +40,8 @@ export const EPM_API_ROUTES = { INFO_PATTERN_DEPRECATED: EPM_PACKAGES_ONE_DEPRECATED, INSTALL_FROM_REGISTRY_PATTERN_DEPRECATED: EPM_PACKAGES_ONE_DEPRECATED, DELETE_PATTERN_DEPRECATED: EPM_PACKAGES_ONE_DEPRECATED, + + REAUTHORIZE_TRANSFORMS: `${EPM_PACKAGES_ONE}/transforms/authorize`, }; // Data stream API routes diff --git a/x-pack/plugins/fleet/common/http_authorization_header.ts b/x-pack/plugins/fleet/common/http_authorization_header.ts new file mode 100644 index 0000000000000..0a209f5bc4eba --- /dev/null +++ b/x-pack/plugins/fleet/common/http_authorization_header.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 type { KibanaRequest } from '@kbn/core/server'; + +// Extended version of x-pack/plugins/security/server/authentication/http_authentication/http_authorization_header.ts +// to prevent bundle being required in security_solution +export class HTTPAuthorizationHeader { + /** + * The authentication scheme. Should be consumed in a case-insensitive manner. + * https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml#authschemes + */ + readonly scheme: string; + + /** + * The authentication credentials for the scheme. + */ + readonly credentials: string; + + /** + * The authentication credentials for the scheme. + */ + readonly username: string | undefined; + + constructor(scheme: string, credentials: string, username?: string) { + this.scheme = scheme; + this.credentials = credentials; + this.username = username; + } + + /** + * Parses request's `Authorization` HTTP header if present. + * @param request Request instance to extract the authorization header from. + */ + static parseFromRequest(request: KibanaRequest, username?: string) { + const authorizationHeaderValue = request.headers.authorization; + if (!authorizationHeaderValue || typeof authorizationHeaderValue !== 'string') { + return null; + } + + const [scheme] = authorizationHeaderValue.split(/\s+/); + const credentials = authorizationHeaderValue.substring(scheme.length + 1); + + return new HTTPAuthorizationHeader(scheme, credentials, username); + } + + toString() { + return `${this.scheme} ${this.credentials}`; + } + + getUsername() { + return this.username; + } +} diff --git a/x-pack/plugins/fleet/common/mocks.ts b/x-pack/plugins/fleet/common/mocks.ts index eb45689a73bb6..0784a5a0b36e8 100644 --- a/x-pack/plugins/fleet/common/mocks.ts +++ b/x-pack/plugins/fleet/common/mocks.ts @@ -94,6 +94,14 @@ export const createFleetAuthzMock = (): FleetAuthz => { endpoint: { actions: endpointActions, }, + transform: { + actions: { + canCreateTransform: { executePackageAction: true }, + canDeleteTransform: { executePackageAction: true }, + canGetTransform: { executePackageAction: true }, + canStartStopTransform: { executePackageAction: true }, + }, + }, }, }; }; diff --git a/x-pack/plugins/fleet/common/services/routes.ts b/x-pack/plugins/fleet/common/services/routes.ts index 310e53b616d50..70d98abdfac91 100644 --- a/x-pack/plugins/fleet/common/services/routes.ts +++ b/x-pack/plugins/fleet/common/services/routes.ts @@ -83,6 +83,12 @@ export const epmRouteService = { pkgVersion ); }, + + getReauthorizeTransformsPath: (pkgName: string, pkgVersion: string) => { + return EPM_API_ROUTES.REAUTHORIZE_TRANSFORMS.replace('{pkgName}', pkgName) + .replace('{pkgVersion}', pkgVersion) + .replace(/\/$/, ''); // trim trailing slash + }, }; export const packagePolicyRouteService = { diff --git a/x-pack/plugins/fleet/common/types/models/epm.ts b/x-pack/plugins/fleet/common/types/models/epm.ts index 86dc732e9648e..b425eb11d9918 100644 --- a/x-pack/plugins/fleet/common/types/models/epm.ts +++ b/x-pack/plugins/fleet/common/types/models/epm.ts @@ -453,6 +453,7 @@ export interface IntegrationCardItem { id: string; categories: string[]; fromIntegrations?: string; + isReauthorizationRequired?: boolean; isUnverified?: boolean; isUpdateAvailable?: boolean; showLabels?: boolean; @@ -539,6 +540,7 @@ export type KibanaAssetReference = Pick & { }; export type EsAssetReference = Pick & { type: ElasticsearchAssetType; + deferred?: boolean; }; export type PackageAssetReference = Pick & { diff --git a/x-pack/plugins/fleet/common/types/models/transform_api_key.ts b/x-pack/plugins/fleet/common/types/models/transform_api_key.ts new file mode 100644 index 0000000000000..6a6a3635b4f68 --- /dev/null +++ b/x-pack/plugins/fleet/common/types/models/transform_api_key.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. + */ + +import type { GrantAPIKeyResult } from '@kbn/security-plugin/server'; + +export interface TransformAPIKey extends GrantAPIKeyResult { + /** + * Generated encoded API key used for headers + */ + encoded: string; +} + +export interface SecondaryAuthorizationHeader { + headers?: { 'es-secondary-authorization': string | string[] }; +} diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.test.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.test.tsx index 57154ecb6b00a..e2f2ec5e908f7 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.test.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.test.tsx @@ -308,6 +308,15 @@ describe('when on the package policy create page', () => { fireEvent.click(renderResult.getByText(/Save and continue/).closest('button')!); }); + await waitFor( + async () => { + expect( + await renderResult.findByText(/Add Elastic Agent to your hosts/) + ).toBeInTheDocument(); + }, + { timeout: 10000 } + ); + await act(async () => { fireEvent.click( renderResult.getByText(/Add Elastic Agent to your hosts/).closest('button')! diff --git a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx index 9940f17d11492..81c1c518ccd4f 100644 --- a/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx +++ b/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/single_page_layout/index.tsx @@ -22,6 +22,11 @@ import { } from '@elastic/eui'; import type { EuiStepProps } from '@elastic/eui/src/components/steps/step'; +import { + getNumTransformAssets, + TransformInstallWithCurrentUserPermissionCallout, +} from '../../../../../../components/transform_install_as_current_user_callout'; + import { useCancelAddPackagePolicy } from '../hooks'; import { splitPkgKey } from '../../../../../../../common/services'; @@ -266,6 +271,11 @@ export const CreatePackagePolicySinglePage: CreatePackagePolicyParams = ({ ] ); + const numTransformAssets = useMemo( + () => getNumTransformAssets(packageInfo?.assets), + [packageInfo?.assets] + ); + const extensionView = useUIExtension(packagePolicy.package?.name ?? '', 'package-policy-create'); const replaceDefineStepView = useUIExtension( packagePolicy.package?.name ?? '', @@ -406,6 +416,12 @@ export const CreatePackagePolicySinglePage: CreatePackagePolicyParams = ({ integration={integrationInfo?.name} /> )} + {numTransformAssets > 0 ? ( + <> + + + + ) : null} diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/components/package_card.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/components/package_card.tsx index bb5c99c9cb29b..d7db80f9b8c3f 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/components/package_card.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/components/package_card.tsx @@ -7,12 +7,17 @@ import React from 'react'; import styled from 'styled-components'; -import { EuiBadge, EuiCard, EuiFlexGroup, EuiFlexItem, EuiSpacer } from '@elastic/eui'; +import { EuiBadge, EuiCard, EuiFlexGroup, EuiFlexItem, EuiSpacer, EuiToolTip } from '@elastic/eui'; import { TrackApplicationView } from '@kbn/usage-collection-plugin/public'; import { FormattedMessage } from '@kbn/i18n-react'; +import { + DEFERRED_ASSETS_WARNING_LABEL, + DEFERRED_ASSETS_WARNING_MSG, +} from '../screens/detail/assets/deferred_assets_warning'; + import { CardIcon } from '../../../../../components/package_icon'; import type { IntegrationCardItem } from '../../../../../../common/types/models/epm'; @@ -39,6 +44,7 @@ export function PackageCard({ release, id, fromIntegrations, + isReauthorizationRequired, isUnverified, isUpdateAvailable, showLabels = true, @@ -74,6 +80,25 @@ export function PackageCard({ ); } + let hasDeferredInstallationsBadge: React.ReactNode | null = null; + + if (isReauthorizationRequired && showLabels) { + hasDeferredInstallationsBadge = ( + + + + + {DEFERRED_ASSETS_WARNING_LABEL} + + + + ); + } + let updateAvailableBadge: React.ReactNode | null = null; if (isUpdateAvailable && showLabels) { @@ -135,10 +160,11 @@ export function PackageCard({ } onClick={onCardClick} > - + {verifiedBadge} {updateAvailableBadge} {releaseBadge} + {hasDeferredInstallationsBadge} diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets.tsx index 8d130c04bac5d..7f852ec15a5da 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets.tsx @@ -5,18 +5,20 @@ * 2.0. */ -import React, { useEffect, useState } from 'react'; +import React, { Fragment, useEffect, useState } from 'react'; import { Redirect } from 'react-router-dom'; import { FormattedMessage } from '@kbn/i18n-react'; -import { EuiFlexGroup, EuiFlexItem, EuiTitle, EuiSpacer, EuiCallOut } from '@elastic/eui'; +import { EuiCallOut, EuiFlexGroup, EuiFlexItem, EuiSpacer, EuiTitle } from '@elastic/eui'; import { groupBy } from 'lodash'; import type { ResolvedSimpleSavedObject } from '@kbn/core/public'; -import { Loading, Error, ExtensionWrapper } from '../../../../../components'; +import type { EsAssetReference } from '../../../../../../../../common'; + +import { Error, ExtensionWrapper, Loading } from '../../../../../components'; import type { PackageInfo } from '../../../../../types'; -import { InstallStatus } from '../../../../../types'; +import { ElasticsearchAssetType, InstallStatus } from '../../../../../types'; import { useGetPackageInstallStatus, @@ -25,11 +27,14 @@ import { useUIExtension, } from '../../../../../hooks'; +import { DeferredAssetsSection } from './deferred_assets_accordion'; + import type { AssetSavedObject } from './types'; import { allowedAssetTypes } from './constants'; import { AssetsAccordion } from './assets_accordion'; const allowedAssetTypesLookup = new Set(allowedAssetTypes); + interface AssetsPanelProps { packageInfo: PackageInfo; } @@ -50,6 +55,8 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { // assume assets are installed in this space until we find otherwise const [assetsInstalledInCurrentSpace, setAssetsInstalledInCurrentSpace] = useState(true); const [assetSavedObjects, setAssetsSavedObjects] = useState(); + const [deferredInstallations, setDeferredInstallations] = useState(); + const [fetchError, setFetchError] = useState(); const [isLoading, setIsLoading] = useState(true); const [hasPermissionError, setHasPermissionError] = useState(false); @@ -73,19 +80,33 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { } = packageInfo; if ( - !packageAttributes.installed_kibana || - packageAttributes.installed_kibana.length === 0 + Array.isArray(packageAttributes.installed_es) && + packageAttributes.installed_es?.length > 0 + ) { + const deferredAssets = packageAttributes.installed_es.filter( + (asset) => asset.deferred === true + ); + setDeferredInstallations(deferredAssets); + } + + const authorizedTransforms = packageAttributes.installed_es.filter( + (asset) => asset.type === ElasticsearchAssetType.transform && !asset.deferred + ); + + if ( + authorizedTransforms.length === 0 && + (!packageAttributes.installed_kibana || packageAttributes.installed_kibana.length === 0) ) { setIsLoading(false); return; } - try { - const objectsToGet = packageAttributes.installed_kibana.map(({ id, type }) => ({ - id, - type, - })); - + const objectsToGet = [...authorizedTransforms, ...packageAttributes.installed_kibana].map( + ({ id, type }) => ({ + id, + type, + }) + ); // We don't have an API to know which SO types a user has access to, so instead we make a request for each // SO type and ignore the 403 errors const objectsByType = await Promise.all( @@ -118,7 +139,7 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { ) ) ); - setAssetsSavedObjects(objectsByType.flat()); + setAssetsSavedObjects([...objectsByType.flat()]); } catch (e) { setFetchError(e); } finally { @@ -137,7 +158,10 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { return ; } - let content: JSX.Element | Array; + const showDeferredInstallations = + Array.isArray(deferredInstallations) && deferredInstallations.length > 0; + + let content: JSX.Element | Array | null; if (isLoading) { content = ; } else if (fetchError) { @@ -190,7 +214,7 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { ); } else { - content = ( + content = !showDeferredInstallations ? (

    { />

    - ); + ) : null; } } else { content = [ @@ -211,10 +235,14 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { } return ( - <> - + + - + ); }), // Ensure we add any custom assets provided via UI extension to the end of the list of other assets @@ -225,11 +253,23 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => { ) : null, ]; } + const deferredInstallationsContent = showDeferredInstallations ? ( + <> + + + + ) : null; return ( - {content} + + {deferredInstallationsContent} + {content} + ); }; diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets_accordion.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets_accordion.tsx index 4a2d64fb84017..ade15c316d1fd 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets_accordion.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/assets_accordion.tsx @@ -5,26 +5,27 @@ * 2.0. */ -import React from 'react'; import type { FunctionComponent } from 'react'; +import { Fragment } from 'react'; +import React from 'react'; import { EuiAccordion, EuiFlexGroup, EuiFlexItem, - EuiSplitPanel, - EuiSpacer, - EuiText, - EuiLink, EuiHorizontalRule, + EuiLink, EuiNotificationBadge, + EuiSpacer, + EuiSplitPanel, + EuiText, } from '@elastic/eui'; import { AssetTitleMap } from '../../../constants'; import { getHrefToObjectInKibanaApp, useStartServices } from '../../../../../hooks'; -import { KibanaAssetType } from '../../../../../types'; +import { ElasticsearchAssetType, KibanaAssetType } from '../../../../../types'; import type { AllowedAssetType, AssetSavedObject } from './types'; @@ -60,8 +61,8 @@ export const AssetsAccordion: FunctionComponent = ({ savedObjects, type } <> - {savedObjects.map(({ id, attributes: { title, description } }, idx) => { - // Ignore custom asset views + {savedObjects.map(({ id, attributes: { title: soTitle, description } }, idx) => { + // Ignore custom asset views or if not a Kibana asset if (type === 'view') { return; } @@ -69,10 +70,11 @@ export const AssetsAccordion: FunctionComponent = ({ savedObjects, type } const pathToObjectInApp = getHrefToObjectInKibanaApp({ http, id, - type, + type: type === ElasticsearchAssetType.transform ? undefined : type, }); + const title = soTitle ?? id; return ( - <> +

    @@ -93,7 +95,7 @@ export const AssetsAccordion: FunctionComponent = ({ savedObjects, type } )} {idx + 1 < savedObjects.length && } - + ); })} diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/constants.ts b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/constants.ts index d6d88f7935eb4..e4c773b445baa 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/constants.ts +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/constants.ts @@ -5,7 +5,7 @@ * 2.0. */ -import { KibanaAssetType } from '../../../../../types'; +import { ElasticsearchAssetType, KibanaAssetType } from '../../../../../types'; import type { AllowedAssetTypes } from './types'; @@ -13,4 +13,5 @@ export const allowedAssetTypes: AllowedAssetTypes = [ KibanaAssetType.dashboard, KibanaAssetType.search, KibanaAssetType.visualization, + ElasticsearchAssetType.transform, ]; diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_accordion.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_accordion.tsx new file mode 100644 index 0000000000000..4a10a360f31de --- /dev/null +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_accordion.tsx @@ -0,0 +1,66 @@ +/* + * 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 { FunctionComponent } from 'react'; + +import { EuiSpacer, EuiCallOut, EuiTitle } from '@elastic/eui'; + +import { FormattedMessage } from '@kbn/i18n-react'; + +import { useAuthz } from '../../../../../../../hooks'; + +import type { EsAssetReference } from '../../../../../../../../common'; + +import type { PackageInfo } from '../../../../../types'; +import { ElasticsearchAssetType } from '../../../../../types'; + +import { getDeferredInstallationMsg } from './deferred_assets_warning'; + +import { DeferredTransformAccordion } from './deferred_transforms_accordion'; + +interface Props { + packageInfo: PackageInfo; + deferredInstallations: EsAssetReference[]; +} + +export const DeferredAssetsSection: FunctionComponent = ({ + deferredInstallations, + packageInfo, +}) => { + const authz = useAuthz(); + + const deferredTransforms = deferredInstallations.filter( + (asset) => asset.type === ElasticsearchAssetType.transform + ); + return ( + <> + +

    + +

    + + + + + + + + ); +}; diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_warning.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_warning.tsx new file mode 100644 index 0000000000000..30fcab820f9b7 --- /dev/null +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_assets_warning.tsx @@ -0,0 +1,79 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import React, { useMemo } from 'react'; +import { i18n } from '@kbn/i18n'; +import { EuiIcon, EuiToolTip } from '@elastic/eui'; + +import type { FleetAuthz } from '../../../../../../../../common'; + +import { useAuthz } from '../../../../../../../hooks'; + +export const DEFERRED_ASSETS_WARNING_LABEL = i18n.translate( + 'xpack.fleet.packageCard.reauthorizationRequiredLabel', + { + defaultMessage: 'Reauthorization required', + } +); + +export const DEFERRED_ASSETS_WARNING_MSG = i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.deferredInstallationsMsg', + { + defaultMessage: + 'This package has at least one deferred installation which requires additional permissions to install and operate correctly.', + } +); + +export const getDeferredInstallationMsg = ( + numOfDeferredInstallations: number | undefined | null, + { authz }: { authz: FleetAuthz } +) => { + const canReauthorizeTransforms = + authz?.packagePrivileges?.transform?.actions?.canStartStopTransform?.executePackageAction ?? + false; + + if (!numOfDeferredInstallations) return DEFERRED_ASSETS_WARNING_MSG; + + if (canReauthorizeTransforms) { + return i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.reauthorizeDeferredInstallationsMsg', + { + defaultMessage: + 'This package has {numOfDeferredInstallations, plural, one {one deferred installation} other {# deferred installations}}. Complete the installation to operate the package correctly.', + values: { numOfDeferredInstallations }, + } + ); + } + + return i18n.translate('xpack.fleet.epm.packageDetails.assets.deferredInstallationsWarning', { + defaultMessage: + 'This package has {numOfDeferredInstallations, plural, one {one deferred installation which requires} other {# deferred installations which require}} additional permissions to install and operate correctly.', + values: { numOfDeferredInstallations }, + }); +}; + +export const DeferredAssetsWarning = ({ + numOfDeferredInstallations, +}: { + numOfDeferredInstallations?: number; +}) => { + const authz = useAuthz(); + + const tooltipContent = useMemo( + () => getDeferredInstallationMsg(numOfDeferredInstallations, { authz }), + [numOfDeferredInstallations, authz] + ); + + return ( + + + + ); +}; diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_transforms_accordion.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_transforms_accordion.tsx new file mode 100644 index 0000000000000..42b39f966e836 --- /dev/null +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/deferred_transforms_accordion.tsx @@ -0,0 +1,278 @@ +/* + * 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, { Fragment, useCallback, useMemo, useState } from 'react'; +import type { FunctionComponent, MouseEvent } from 'react'; + +import { + EuiAccordion, + EuiFlexGroup, + EuiFlexItem, + EuiSplitPanel, + EuiSpacer, + EuiText, + EuiHorizontalRule, + EuiNotificationBadge, + EuiButton, + EuiToolTip, +} from '@elastic/eui'; + +import { i18n } from '@kbn/i18n'; + +import type { ElasticsearchErrorDetails } from '@kbn/es-errors'; + +import type { EsAssetReference } from '../../../../../../../../common'; + +import { + sendRequestReauthorizeTransforms, + useAuthz, + useStartServices, +} from '../../../../../../../hooks'; + +import { AssetTitleMap } from '../../../constants'; + +import type { PackageInfo } from '../../../../../types'; +import { ElasticsearchAssetType } from '../../../../../types'; + +interface Props { + packageInfo: PackageInfo; + type: ElasticsearchAssetType.transform; + deferredInstallations: EsAssetReference[]; +} + +export const getDeferredAssetDescription = ( + assetType: string, + assetCount: number, + permissions: { canReauthorizeTransforms: boolean } +) => { + switch (assetType) { + case ElasticsearchAssetType.transform: + if (permissions.canReauthorizeTransforms) { + return i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.deferredTransformReauthorizeDescription', + { + defaultMessage: + '{assetCount, plural, one {Transform was installed but requires} other {# transforms were installed but require}} additional permissions to run. Reauthorize the {assetCount, plural, one {transform} other {transforms}} to start operations.', + values: { assetCount: assetCount ?? 1 }, + } + ); + } + return i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.deferredTransformRequestPermissionDescription', + { + defaultMessage: + '{assetCount, plural, one {Transform was installed but requires} other {# transforms were installed but require}} additional permissions to run. Contact your administrator to request the required privileges.', + values: { assetCount: assetCount ?? 1 }, + } + ); + default: + return i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.deferredInstallationsDescription', + { + defaultMessage: 'Asset requires additional permissions.', + } + ); + } +}; + +export const DeferredTransformAccordion: FunctionComponent = ({ + packageInfo, + type, + deferredInstallations, +}) => { + const { notifications } = useStartServices(); + const [isLoading, setIsLoading] = useState(false); + const deferredTransforms = useMemo( + () => + deferredInstallations.map((i) => ({ + id: i.id, + attributes: { + title: i.id, + description: i.type, + }, + })), + [deferredInstallations] + ); + + const canReauthorizeTransforms = + useAuthz().packagePrivileges?.transform?.actions?.canStartStopTransform?.executePackageAction ?? + false; + + const authorizeTransforms = useCallback( + async (transformIds: Array<{ transformId: string }>) => { + setIsLoading(true); + notifications.toasts.addInfo( + i18n.translate('xpack.fleet.epm.packageDetails.assets.authorizeTransformsAcknowledged', { + defaultMessage: + 'Request to authorize {count, plural, one {# transform} other {# transforms}} acknowledged.', + values: { count: transformIds.length }, + }), + { toastLifeTimeMs: 500 } + ); + + try { + const reauthorizeTransformResp = await sendRequestReauthorizeTransforms( + packageInfo.name, + packageInfo.version, + transformIds + ); + if (reauthorizeTransformResp.error) { + throw reauthorizeTransformResp.error; + } + if (Array.isArray(reauthorizeTransformResp.data)) { + const error = reauthorizeTransformResp.data.find((d) => d.error)?.error; + + const cntAuthorized = reauthorizeTransformResp.data.filter((d) => d.success).length; + if (error) { + const errorBody = error.meta?.body as ElasticsearchErrorDetails; + const errorMsg = errorBody + ? `${errorBody.error?.type}: ${errorBody.error?.reason}` + : `${error.message}`; + + notifications.toasts.addError( + { name: errorMsg, message: errorMsg }, + { + title: i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.authorizeTransformsUnsuccessful', + { + defaultMessage: + 'Unable to authorize {cntUnauthorized, plural, one {# transform} other {# transforms}}.', + values: { cntUnauthorized: transformIds.length - cntAuthorized }, + } + ), + toastLifeTimeMs: 1000, + } + ); + } else { + notifications.toasts.addSuccess( + i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.authorizeTransformsSuccessful', + { + defaultMessage: + 'Successfully authorized {count, plural, one {# transform} other {# transforms}}.', + values: { count: cntAuthorized }, + } + ), + { toastLifeTimeMs: 1000 } + ); + } + } + } catch (e) { + if (e) { + notifications.toasts.addError(e, { + title: i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.unableToAuthorizeAllTransformsError', + { + defaultMessage: 'An error occurred authorizing and starting transforms.', + } + ), + }); + } + } + setIsLoading(false); + }, + [notifications.toasts, packageInfo.name, packageInfo.version] + ); + if (deferredTransforms.length === 0) return null; + return ( + + + +

    {AssetTitleMap[type]}

    +
    +
    + + +

    {deferredTransforms.length}

    +
    +
    +
    + } + id={type} + > + <> + + + + {getDeferredAssetDescription(type, deferredInstallations.length, { + canReauthorizeTransforms, + })}{' '} + + + + ) => { + e.preventDefault(); + authorizeTransforms(deferredTransforms.map((t) => ({ transformId: t.id }))); + }} + aria-label={getDeferredAssetDescription(type, deferredInstallations.length, { + canReauthorizeTransforms, + })} + > + {i18n.translate('xpack.fleet.epm.packageDetails.assets.reauthorizeAllButton', { + defaultMessage: 'Reauthorize all', + })} + + + + + + {deferredTransforms.map(({ id: transformId }, idx) => { + return ( + + + + + +

    {transformId}

    +
    +
    + + + ) => { + e.preventDefault(); + authorizeTransforms([{ transformId }]); + }} + > + {i18n.translate( + 'xpack.fleet.epm.packageDetails.assets.reauthorizeButton', + { + defaultMessage: 'Reauthorize', + } + )} + + + +
    +
    + {idx + 1 < deferredTransforms.length && } +
    + ); + })} +
    + + + ); +}; diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/types.ts b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/types.ts index 59ae6636aa8ff..03cf8be0b5c9b 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/types.ts +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/assets/types.ts @@ -8,13 +8,15 @@ import type { SimpleSavedObject } from '@kbn/core/public'; import type { KibanaAssetType } from '../../../../../types'; +import type { ElasticsearchAssetType } from '../../../../../types'; export type AssetSavedObject = SimpleSavedObject<{ title: string; description?: string }>; export type AllowedAssetTypes = [ KibanaAssetType.dashboard, KibanaAssetType.search, - KibanaAssetType.visualization + KibanaAssetType.visualization, + ElasticsearchAssetType.transform ]; export type AllowedAssetType = AllowedAssetTypes[number] | 'view'; diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.tsx index 98e4d2c9cce52..0a5a39789a1ec 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/index.tsx @@ -27,6 +27,8 @@ import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import semverLt from 'semver/functions/lt'; +import { getDeferredInstallationsCnt } from '../../../../../../services/has_deferred_installations'; + import { getPackageReleaseLabel, isPackagePrerelease, @@ -65,6 +67,7 @@ import { import type { WithHeaderLayoutProps } from '../../../../layouts'; import { WithHeaderLayout } from '../../../../layouts'; +import { DeferredAssetsWarning } from './assets/deferred_assets_warning'; import { useIsFirstTimeAgentUserQuery } from './hooks'; import { getInstallPkgRouteOptions } from './utils'; import { @@ -274,6 +277,11 @@ export function Detail() { ? getHref('integrations_installed') : getHref('integrations_all'); + const numOfDeferredInstallations = useMemo( + () => getDeferredInstallationsCnt(packageInfo), + [packageInfo] + ); + const headerLeftContent = useMemo( () => ( @@ -570,10 +578,16 @@ export function Detail() { tabs.push({ id: 'assets', name: ( - +
    + +   + {numOfDeferredInstallations > 0 ? ( + + ) : null} +
    ), isSelected: panel === 'assets', 'data-test-subj': `tab-assets`, @@ -645,6 +659,7 @@ export function Detail() { getHref, integration, canReadIntegrationPolicies, + numOfDeferredInstallations, isInstalled, CustomAssets, canReadPackageSettings, diff --git a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/settings/settings.tsx b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/settings/settings.tsx index f3a89b4e11038..b4eb7a035fe26 100644 --- a/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/settings/settings.tsx +++ b/x-pack/plugins/fleet/public/applications/integrations/sections/epm/screens/detail/settings/settings.tsx @@ -26,6 +26,11 @@ import { i18n } from '@kbn/i18n'; import type { Observable } from 'rxjs'; import type { CoreTheme } from '@kbn/core/public'; +import { + getNumTransformAssets, + TransformInstallWithCurrentUserPermissionCallout, +} from '../../../../../../../components/transform_install_as_current_user_callout'; + import type { PackageInfo } from '../../../../../types'; import { InstallStatus } from '../../../../../types'; import { @@ -227,9 +232,10 @@ export const SettingsPage: React.FC = memo(({ packageInfo, theme$ }: Prop const isUpdating = installationStatus === InstallStatus.installing && installedVersion; - const numOfAssets = useMemo( - () => - Object.entries(packageInfo.assets).reduce( + const { numOfAssets, numTransformAssets } = useMemo( + () => ({ + numTransformAssets: getNumTransformAssets(packageInfo.assets), + numOfAssets: Object.entries(packageInfo.assets).reduce( (acc, [serviceName, serviceNameValue]) => acc + Object.entries(serviceNameValue).reduce( @@ -238,6 +244,7 @@ export const SettingsPage: React.FC = memo(({ packageInfo, theme$ }: Prop ), 0 ), + }), [packageInfo.assets] ); @@ -351,6 +358,15 @@ export const SettingsPage: React.FC = memo(({ packageInfo, theme$ }: Prop + + {numTransformAssets > 0 ? ( + <> + + + + ) : null}

    !!c), + isReauthorizationRequired, isUnverified, isUpdateAvailable, }; diff --git a/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx b/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx index 1194cd496c1dc..7c8ac417e066d 100644 --- a/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx +++ b/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import React from 'react'; +import React, { Fragment } from 'react'; import type { FunctionComponent } from 'react'; import { EuiAccordion, @@ -62,7 +62,7 @@ export const CustomAssetsAccordion: FunctionComponent {views.map((view, index) => ( - <> +

    @@ -78,7 +78,7 @@ export const CustomAssetsAccordion: FunctionComponent {index + 1 < views.length && } - + ))} diff --git a/x-pack/plugins/fleet/public/components/transform_install_as_current_user_callout.tsx b/x-pack/plugins/fleet/public/components/transform_install_as_current_user_callout.tsx new file mode 100644 index 0000000000000..bc2af74ccbb96 --- /dev/null +++ b/x-pack/plugins/fleet/public/components/transform_install_as_current_user_callout.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 { EuiCallOut } from '@elastic/eui'; +import { FormattedMessage } from '@kbn/i18n-react'; +import React from 'react'; +import { uniqBy } from 'lodash'; + +import type { PackageInfo } from '../../common'; + +export const getNumTransformAssets = (assets?: PackageInfo['assets']) => { + if ( + !assets || + !(Array.isArray(assets.elasticsearch?.transform) && assets.elasticsearch?.transform?.length > 0) + ) { + return 0; + } + + return uniqBy(assets.elasticsearch?.transform, 'file').length; +}; +export const TransformInstallWithCurrentUserPermissionCallout: React.FunctionComponent<{ + count: number; +}> = ({ count }) => { + return ( + + + + ); +}; diff --git a/x-pack/plugins/fleet/public/hooks/use_kibana_link.ts b/x-pack/plugins/fleet/public/hooks/use_kibana_link.ts index 7ab1b17b77caa..739fd078fe4db 100644 --- a/x-pack/plugins/fleet/public/hooks/use_kibana_link.ts +++ b/x-pack/plugins/fleet/public/hooks/use_kibana_link.ts @@ -32,7 +32,7 @@ export const getHrefToObjectInKibanaApp = ({ id, http, }: { - type: KibanaAssetType; + type: KibanaAssetType | undefined; id: string; http: HttpStart; }): undefined | string => { diff --git a/x-pack/plugins/fleet/public/hooks/use_request/epm.ts b/x-pack/plugins/fleet/public/hooks/use_request/epm.ts index 1a50be67099a5..f050820508d98 100644 --- a/x-pack/plugins/fleet/public/hooks/use_request/epm.ts +++ b/x-pack/plugins/fleet/public/hooks/use_request/epm.ts @@ -224,6 +224,18 @@ export const sendRemovePackage = (pkgName: string, pkgVersion: string, force: bo }); }; +export const sendRequestReauthorizeTransforms = ( + pkgName: string, + pkgVersion: string, + transforms: Array<{ transformId: string }> +) => { + return sendRequest({ + path: epmRouteService.getReauthorizeTransformsPath(pkgName, pkgVersion), + method: 'post', + body: { transforms }, + }); +}; + interface UpdatePackageArgs { pkgName: string; pkgVersion: string; diff --git a/x-pack/plugins/fleet/public/services/has_deferred_installations.test.ts b/x-pack/plugins/fleet/public/services/has_deferred_installations.test.ts new file mode 100644 index 0000000000000..f4f39ed7115d1 --- /dev/null +++ b/x-pack/plugins/fleet/public/services/has_deferred_installations.test.ts @@ -0,0 +1,99 @@ +/* + * 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 { EsAssetReference } from '../../common/types'; +import type { PackageInfo } from '../types'; + +import { ElasticsearchAssetType } from '../../common/types'; + +import { hasDeferredInstallations } from './has_deferred_installations'; + +import { ExperimentalFeaturesService } from '.'; + +const mockGet = jest.spyOn(ExperimentalFeaturesService, 'get'); + +const createPackage = ({ + installedEs = [], +}: { + installedEs?: EsAssetReference[]; +} = {}): PackageInfo => ({ + name: 'test-package', + description: 'Test Package', + title: 'Test Package', + version: '0.0.1', + latestVersion: '0.0.1', + release: 'experimental', + format_version: '1.0.0', + owner: { github: 'elastic/fleet' }, + policy_templates: [], + // @ts-ignore + assets: {}, + savedObject: { + id: '1234', + type: 'epm-package', + references: [], + attributes: { + installed_kibana: [], + installed_es: installedEs ?? [], + es_index_patterns: {}, + name: 'test-package', + version: '0.0.1', + install_status: 'installed', + install_version: '0.0.1', + install_started_at: new Date().toString(), + install_source: 'registry', + verification_status: 'verified', + verification_key_id: '', + }, + }, +}); + +describe('isPackageUnverified', () => { + describe('When experimental feature is disabled', () => { + beforeEach(() => { + // @ts-ignore don't want to define all experimental features here + mockGet.mockReturnValue({ + packageVerification: false, + } as ReturnType); + }); + + it('Should return false for a package with no saved object', () => { + const noSoPkg = createPackage(); + // @ts-ignore we know pkg has savedObject but ts doesn't + delete noSoPkg.savedObject; + expect(hasDeferredInstallations(noSoPkg)).toEqual(false); + }); + + it('Should return true for a package with at least one asset deferred', () => { + const pkgWithDeferredInstallations = createPackage({ + installedEs: [ + { id: '', type: ElasticsearchAssetType.ingestPipeline }, + { id: '', type: ElasticsearchAssetType.transform, deferred: true }, + ], + }); + // @ts-ignore we know pkg has savedObject but ts doesn't + expect(hasDeferredInstallations(pkgWithDeferredInstallations)).toEqual(true); + }); + + it('Should return false for a package that has no asset deferred', () => { + const pkgWithoutDeferredInstallations = createPackage({ + installedEs: [ + { id: '', type: ElasticsearchAssetType.ingestPipeline }, + { id: '', type: ElasticsearchAssetType.transform, deferred: false }, + ], + }); + expect(hasDeferredInstallations(pkgWithoutDeferredInstallations)).toEqual(false); + }); + + it('Should return false for a package that has no asset', () => { + const pkgWithoutDeferredInstallations = createPackage({ + installedEs: [], + }); + expect(hasDeferredInstallations(pkgWithoutDeferredInstallations)).toEqual(false); + }); + }); +}); diff --git a/x-pack/plugins/fleet/public/services/has_deferred_installations.ts b/x-pack/plugins/fleet/public/services/has_deferred_installations.ts new file mode 100644 index 0000000000000..8026ca0ae39a0 --- /dev/null +++ b/x-pack/plugins/fleet/public/services/has_deferred_installations.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 type { PackageInfo, PackageListItem } from '../../common'; + +export const getDeferredInstallationsCnt = (pkg?: PackageInfo | PackageListItem | null): number => { + return pkg && 'savedObject' in pkg && pkg.savedObject + ? pkg.savedObject.attributes?.installed_es?.filter((d) => d.deferred).length + : 0; +}; + +export const hasDeferredInstallations = (pkg?: PackageInfo | PackageListItem | null): boolean => + getDeferredInstallationsCnt(pkg) > 0; diff --git a/x-pack/plugins/fleet/server/routes/agent_policy/handlers.ts b/x-pack/plugins/fleet/server/routes/agent_policy/handlers.ts index a31ba8fa5cb70..9601052fc415c 100644 --- a/x-pack/plugins/fleet/server/routes/agent_policy/handlers.ts +++ b/x-pack/plugins/fleet/server/routes/agent_policy/handlers.ts @@ -15,6 +15,8 @@ import type { import pMap from 'p-map'; import { safeDump } from 'js-yaml'; +import { HTTPAuthorizationHeader } from '../../../common/http_authorization_header'; + import { fullAgentPolicyToYaml } from '../../../common/services'; import { appContextService, agentPolicyService } from '../../services'; import { getAgentsByKuery } from '../../services/agents'; @@ -175,6 +177,8 @@ export const createAgentPolicyHandler: FleetRequestHandler< const monitoringEnabled = request.body.monitoring_enabled; const { has_fleet_server: hasFleetServer, ...newPolicy } = request.body; const spaceId = fleetContext.spaceId; + const authorizationHeader = HTTPAuthorizationHeader.parseFromRequest(request, user?.username); + try { const body: CreateAgentPolicyResponse = { item: await createAgentPolicyWithPackages({ @@ -186,6 +190,7 @@ export const createAgentPolicyHandler: FleetRequestHandler< monitoringEnabled, spaceId, user, + authorizationHeader, }), }; diff --git a/x-pack/plugins/fleet/server/routes/epm/handlers.ts b/x-pack/plugins/fleet/server/routes/epm/handlers.ts index 8bacf87284271..0f2232593fd5e 100644 --- a/x-pack/plugins/fleet/server/routes/epm/handlers.ts +++ b/x-pack/plugins/fleet/server/routes/epm/handlers.ts @@ -12,6 +12,11 @@ import mime from 'mime-types'; import semverValid from 'semver/functions/valid'; import type { ResponseHeaders, KnownHeaders, HttpResponseOptions } from '@kbn/core/server'; +import { HTTPAuthorizationHeader } from '../../../common/http_authorization_header'; + +import { generateTransformSecondaryAuthHeaders } from '../../services/api_keys/transform_api_keys'; +import { handleTransformReauthorizeAndStart } from '../../services/epm/elasticsearch/transform/reauthorize'; + import type { GetInfoResponse, InstallPackageResponse, @@ -54,12 +59,13 @@ import { } from '../../services/epm/packages'; import type { BulkInstallResponse } from '../../services/epm/packages'; import { defaultFleetErrorHandler, fleetErrorToResponseOptions, FleetError } from '../../errors'; -import { checkAllowedPackages, licenseService } from '../../services'; +import { appContextService, checkAllowedPackages, licenseService } from '../../services'; import { getArchiveEntry } from '../../services/epm/archive/cache'; import { getAsset } from '../../services/epm/archive/storage'; import { getPackageUsageStats } from '../../services/epm/packages/get'; import { updatePackage } from '../../services/epm/packages/update'; import { getGpgKeyIdOrUndefined } from '../../services/epm/packages/package_verification'; +import type { ReauthorizeTransformRequestSchema } from '../../types'; const CACHE_CONTROL_10_MINUTES_HEADER: HttpResponseOptions['headers'] = { 'cache-control': 'max-age=600', @@ -282,8 +288,12 @@ export const installPackageFromRegistryHandler: FleetRequestHandler< const fleetContext = await context.fleet; const savedObjectsClient = fleetContext.internalSoClient; const esClient = coreContext.elasticsearch.client.asInternalUser; + const user = (await appContextService.getSecurity()?.authc.getCurrentUser(request)) || undefined; + const { pkgName, pkgVersion } = request.params; + const authorizationHeader = HTTPAuthorizationHeader.parseFromRequest(request, user?.username); + const spaceId = fleetContext.spaceId; const res = await installPackage({ installSource: 'registry', @@ -294,6 +304,7 @@ export const installPackageFromRegistryHandler: FleetRequestHandler< force: request.body?.force, ignoreConstraints: request.body?.ignore_constraints, prerelease: request.query?.prerelease, + authorizationHeader, }); if (!res.error) { @@ -334,6 +345,7 @@ export const bulkInstallPackagesFromRegistryHandler: FleetRequestHandler< const savedObjectsClient = fleetContext.internalSoClient; const esClient = coreContext.elasticsearch.client.asInternalUser; const spaceId = fleetContext.spaceId; + const bulkInstalledResponses = await bulkInstallPackages({ savedObjectsClient, esClient, @@ -361,6 +373,7 @@ export const installPackageByUploadHandler: FleetRequestHandler< body: { message: 'Requires Enterprise license' }, }); } + const coreContext = await context.core; const fleetContext = await context.fleet; const savedObjectsClient = fleetContext.internalSoClient; @@ -368,6 +381,10 @@ export const installPackageByUploadHandler: FleetRequestHandler< const contentType = request.headers['content-type'] as string; // from types it could also be string[] or undefined but this is checked later const archiveBuffer = Buffer.from(request.body); const spaceId = fleetContext.spaceId; + const user = (await appContextService.getSecurity()?.authc.getCurrentUser(request)) || undefined; + + const authorizationHeader = HTTPAuthorizationHeader.parseFromRequest(request, user?.username); + const res = await installPackage({ installSource: 'upload', savedObjectsClient, @@ -375,6 +392,7 @@ export const installPackageByUploadHandler: FleetRequestHandler< archiveBuffer, spaceId, contentType, + authorizationHeader, }); if (!res.error) { const body: InstallPackageResponse = { @@ -432,3 +450,60 @@ export const getVerificationKeyIdHandler: FleetRequestHandler = async ( return defaultFleetErrorHandler({ error, response }); } }; + +/** + * Create transform and optionally start transform + * Note that we want to add the current user's roles/permissions to the es-secondary-auth with a API Key. + * If API Key has insufficient permissions, it should still create the transforms but not start it + * Instead of failing, we need to allow package to continue installing other assets + * and prompt for users to authorize the transforms with the appropriate permissions after package is done installing + */ +export const reauthorizeTransformsHandler: FleetRequestHandler< + TypeOf, + TypeOf, + TypeOf +> = async (context, request, response) => { + const coreContext = await context.core; + const savedObjectsClient = (await context.fleet).internalSoClient; + + const esClient = coreContext.elasticsearch.client.asInternalUser; + const { pkgName, pkgVersion } = request.params; + const { transforms } = request.body; + + let username; + try { + const user = await appContextService.getSecurity()?.authc.getCurrentUser(request); + if (user) { + username = user.username; + } + } catch (e) { + // User might not have permission to get username, or security is not enabled, and that's okay. + } + + try { + const logger = appContextService.getLogger(); + const authorizationHeader = HTTPAuthorizationHeader.parseFromRequest(request, username); + const secondaryAuth = await generateTransformSecondaryAuthHeaders({ + authorizationHeader, + logger, + username, + pkgName, + pkgVersion, + }); + + const resp = await handleTransformReauthorizeAndStart({ + esClient, + savedObjectsClient, + logger, + pkgName, + pkgVersion, + transforms, + secondaryAuth, + username, + }); + + return response.ok({ body: resp }); + } catch (error) { + return defaultFleetErrorHandler({ error, response }); + } +}; diff --git a/x-pack/plugins/fleet/server/routes/epm/index.ts b/x-pack/plugins/fleet/server/routes/epm/index.ts index 5c2a34cd90551..b707a8b80e582 100644 --- a/x-pack/plugins/fleet/server/routes/epm/index.ts +++ b/x-pack/plugins/fleet/server/routes/epm/index.ts @@ -39,6 +39,7 @@ import { GetStatsRequestSchema, UpdatePackageRequestSchema, UpdatePackageRequestSchemaDeprecated, + ReauthorizeTransformRequestSchema, } from '../../types'; import { @@ -54,6 +55,7 @@ import { getStatsHandler, updatePackageHandler, getVerificationKeyIdHandler, + reauthorizeTransformsHandler, } from './handlers'; const MAX_FILE_SIZE_BYTES = 104857600; // 100MB @@ -294,4 +296,26 @@ export const registerRoutes = (router: FleetAuthzRouter) => { return resp; } ); + + // Update transforms with es-secondary-authorization headers, + // append authorized_by to transform's _meta, and start transforms + router.post( + { + path: EPM_API_ROUTES.REAUTHORIZE_TRANSFORMS, + validate: ReauthorizeTransformRequestSchema, + fleetAuthz: { + integrations: { installPackages: true }, + packagePrivileges: { + transform: { + actions: { + canStartStopTransform: { + executePackageAction: true, + }, + }, + }, + }, + }, + }, + reauthorizeTransformsHandler + ); }; diff --git a/x-pack/plugins/fleet/server/routes/package_policy/handlers.ts b/x-pack/plugins/fleet/server/routes/package_policy/handlers.ts index 51b4056843d25..9edfad74b7c5b 100644 --- a/x-pack/plugins/fleet/server/routes/package_policy/handlers.ts +++ b/x-pack/plugins/fleet/server/routes/package_policy/handlers.ts @@ -13,6 +13,8 @@ import type { RequestHandler } from '@kbn/core/server'; import { groupBy, keyBy } from 'lodash'; +import { HTTPAuthorizationHeader } from '../../../common/http_authorization_header'; + import { populatePackagePolicyAssignedAgentsCount } from '../../services/package_policies/populate_package_policy_assigned_agents_count'; import { @@ -219,6 +221,8 @@ export const createPackagePolicyHandler: FleetRequestHandler< const esClient = coreContext.elasticsearch.client.asInternalUser; const user = appContextService.getSecurity()?.authc.getCurrentUser(request) || undefined; const { force, package: pkg, ...newPolicy } = request.body; + const authorizationHeader = HTTPAuthorizationHeader.parseFromRequest(request, user?.username); + if ('output_id' in newPolicy) { // TODO Remove deprecated APIs https://github.com/elastic/kibana/issues/121485 delete newPolicy.output_id; @@ -248,6 +252,7 @@ export const createPackagePolicyHandler: FleetRequestHandler< } // Create package policy + const packagePolicy = await fleetContext.packagePolicyService.asCurrentUser.create( soClient, esClient, @@ -256,6 +261,7 @@ export const createPackagePolicyHandler: FleetRequestHandler< user, force, spaceId, + authorizationHeader, }, context, request diff --git a/x-pack/plugins/fleet/server/saved_objects/index.ts b/x-pack/plugins/fleet/server/saved_objects/index.ts index 8f0db94d1d31c..763c6d6c69136 100644 --- a/x-pack/plugins/fleet/server/saved_objects/index.ts +++ b/x-pack/plugins/fleet/server/saved_objects/index.ts @@ -243,6 +243,7 @@ const getSavedObjectTypes = (): { [key: string]: SavedObjectsType } => ({ id: { type: 'keyword' }, type: { type: 'keyword' }, version: { type: 'keyword' }, + deferred: { type: 'boolean' }, }, }, installed_kibana: { diff --git a/x-pack/plugins/fleet/server/services/agent_policy.ts b/x-pack/plugins/fleet/server/services/agent_policy.ts index 96b8fd55e3b84..aade7b382a7d3 100644 --- a/x-pack/plugins/fleet/server/services/agent_policy.ts +++ b/x-pack/plugins/fleet/server/services/agent_policy.ts @@ -22,6 +22,8 @@ import type { BulkResponseItem } from '@elastic/elasticsearch/lib/api/typesWithB import { DEFAULT_SPACE_ID } from '@kbn/spaces-plugin/common/constants'; +import type { HTTPAuthorizationHeader } from '../../common/http_authorization_header'; + import { AGENT_POLICY_SAVED_OBJECT_TYPE, AGENTS_PREFIX, @@ -209,7 +211,11 @@ class AgentPolicyService { soClient: SavedObjectsClientContract, esClient: ElasticsearchClient, agentPolicy: NewAgentPolicy, - options: { id?: string; user?: AuthenticatedUser } = {} + options: { + id?: string; + user?: AuthenticatedUser; + authorizationHeader?: HTTPAuthorizationHeader | null; + } = {} ): Promise { // Ensure an ID is provided, so we can include it in the audit logs below if (!options.id) { @@ -444,7 +450,12 @@ class AgentPolicyService { esClient: ElasticsearchClient, id: string, agentPolicy: Partial, - options?: { user?: AuthenticatedUser; force?: boolean; spaceId?: string } + options?: { + user?: AuthenticatedUser; + force?: boolean; + spaceId?: string; + authorizationHeader?: HTTPAuthorizationHeader | null; + } ): Promise { if (agentPolicy.name) { await this.requireUniqueName(soClient, { @@ -479,6 +490,7 @@ class AgentPolicyService { esClient, packagesToInstall, spaceId: options?.spaceId || DEFAULT_SPACE_ID, + authorizationHeader: options?.authorizationHeader, }); } diff --git a/x-pack/plugins/fleet/server/services/agent_policy_create.ts b/x-pack/plugins/fleet/server/services/agent_policy_create.ts index 1f7aeb2bc985f..11cb82123a347 100644 --- a/x-pack/plugins/fleet/server/services/agent_policy_create.ts +++ b/x-pack/plugins/fleet/server/services/agent_policy_create.ts @@ -9,6 +9,8 @@ import type { ElasticsearchClient, SavedObjectsClientContract } from '@kbn/core/ import type { AuthenticatedUser } from '@kbn/security-plugin/common/model'; +import type { HTTPAuthorizationHeader } from '../../common/http_authorization_header'; + import { FLEET_ELASTIC_AGENT_PACKAGE, FLEET_SERVER_PACKAGE, @@ -48,7 +50,11 @@ async function createPackagePolicy( esClient: ElasticsearchClient, agentPolicy: AgentPolicy, packageToInstall: string, - options: { spaceId: string; user: AuthenticatedUser | undefined } + options: { + spaceId: string; + user: AuthenticatedUser | undefined; + authorizationHeader?: HTTPAuthorizationHeader | null; + } ) { const newPackagePolicy = await packagePolicyService .buildPackagePolicyFromPackage(soClient, packageToInstall) @@ -71,6 +77,7 @@ async function createPackagePolicy( spaceId: options.spaceId, user: options.user, bumpRevision: false, + authorizationHeader: options.authorizationHeader, }); } @@ -83,6 +90,7 @@ interface CreateAgentPolicyParams { monitoringEnabled?: string[]; spaceId: string; user?: AuthenticatedUser; + authorizationHeader?: HTTPAuthorizationHeader | null; } export async function createAgentPolicyWithPackages({ @@ -94,6 +102,7 @@ export async function createAgentPolicyWithPackages({ monitoringEnabled, spaceId, user, + authorizationHeader, }: CreateAgentPolicyParams) { let agentPolicyId = newPolicy.id; const packagesToInstall = []; @@ -118,6 +127,7 @@ export async function createAgentPolicyWithPackages({ esClient, packagesToInstall, spaceId, + authorizationHeader, }); } @@ -126,6 +136,7 @@ export async function createAgentPolicyWithPackages({ const agentPolicy = await agentPolicyService.create(soClient, esClient, policy, { user, id: agentPolicyId, + authorizationHeader, }); // Create the fleet server package policy and add it to agent policy. @@ -133,6 +144,7 @@ export async function createAgentPolicyWithPackages({ await createPackagePolicy(soClient, esClient, agentPolicy, FLEET_SERVER_PACKAGE, { spaceId, user, + authorizationHeader, }); } @@ -141,6 +153,7 @@ export async function createAgentPolicyWithPackages({ await createPackagePolicy(soClient, esClient, agentPolicy, FLEET_SYSTEM_PACKAGE, { spaceId, user, + authorizationHeader, }); } diff --git a/x-pack/plugins/fleet/server/services/api_keys/transform_api_keys.ts b/x-pack/plugins/fleet/server/services/api_keys/transform_api_keys.ts new file mode 100644 index 0000000000000..90d873289fa88 --- /dev/null +++ b/x-pack/plugins/fleet/server/services/api_keys/transform_api_keys.ts @@ -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 type { CreateAPIKeyParams } from '@kbn/security-plugin/server'; +import type { FakeRawRequest, Headers } from '@kbn/core-http-server'; +import { CoreKibanaRequest } from '@kbn/core-http-router-server-internal'; + +import type { Logger } from '@kbn/logging'; + +import { appContextService } from '..'; + +import type { HTTPAuthorizationHeader } from '../../../common/http_authorization_header'; + +import type { + TransformAPIKey, + SecondaryAuthorizationHeader, +} from '../../../common/types/models/transform_api_key'; + +export function isTransformApiKey(arg: any): arg is TransformAPIKey { + return ( + arg && + arg.hasOwnProperty('api_key') && + arg.hasOwnProperty('encoded') && + typeof arg.encoded === 'string' + ); +} + +function createKibanaRequestFromAuth(authorizationHeader: HTTPAuthorizationHeader) { + const requestHeaders: Headers = { + authorization: authorizationHeader.toString(), + }; + const fakeRawRequest: FakeRawRequest = { + headers: requestHeaders, + path: '/', + }; + + // Since we're using API keys and accessing elasticsearch can only be done + // via a request, we're faking one with the proper authorization headers. + const fakeRequest = CoreKibanaRequest.from(fakeRawRequest); + + return fakeRequest; +} + +/** This function generates a new API based on current Kibana's user request.headers.authorization + * then formats it into a es-secondary-authorization header object + * @param authorizationHeader: + * @param createParams + */ +export async function generateTransformSecondaryAuthHeaders({ + authorizationHeader, + createParams, + logger, + username, + pkgName, + pkgVersion, +}: { + authorizationHeader: HTTPAuthorizationHeader | null | undefined; + logger: Logger; + createParams?: CreateAPIKeyParams; + username?: string; + pkgName?: string; + pkgVersion?: string; +}): Promise { + if (!authorizationHeader) { + return; + } + + const fakeKibanaRequest = createKibanaRequestFromAuth(authorizationHeader); + + const user = username ?? authorizationHeader.getUsername(); + + const name = pkgName + ? `${pkgName}${pkgVersion ? '-' + pkgVersion : ''}-transform${user ? '-by-' + user : ''}` + : `fleet-transform-api-key`; + + const security = appContextService.getSecurity(); + + // If security is not enabled or available, we can't generate api key + // but that's ok, cause all the index and transform commands should work + if (!security) return; + + try { + const apiKeyWithCurrentUserPermission = await security?.authc.apiKeys.grantAsInternalUser( + fakeKibanaRequest, + createParams ?? { + name, + metadata: { + managed_by: 'fleet', + managed: true, + type: 'transform', + }, + role_descriptors: {}, + } + ); + + logger.debug(`Created api_key name: ${name}`); + let encodedApiKey: TransformAPIKey['encoded'] | null = null; + + // Property 'encoded' does exist in the resp coming back from request + // and is required to use in authentication headers + // It's just not defined in returned GrantAPIKeyResult type + if (isTransformApiKey(apiKeyWithCurrentUserPermission)) { + encodedApiKey = apiKeyWithCurrentUserPermission.encoded; + } + + const secondaryAuth = + encodedApiKey !== null + ? { + headers: { + 'es-secondary-authorization': `ApiKey ${encodedApiKey}`, + }, + } + : undefined; + + return secondaryAuth; + } catch (e) { + logger.debug(`Failed to create api_key: ${name} because ${e}`); + return undefined; + } +} diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/index/update_settings.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/index/update_settings.ts index a381f19a3d9fa..766d03f6a776c 100644 --- a/x-pack/plugins/fleet/server/services/epm/elasticsearch/index/update_settings.ts +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/index/update_settings.ts @@ -9,6 +9,8 @@ import type { ElasticsearchClient } from '@kbn/core-elasticsearch-server'; import type { IndicesIndexSettings } from '@elastic/elasticsearch/lib/api/typesWithBodyKey'; +import { appContextService } from '../../..'; + import { retryTransientEsErrors } from '../retry'; export async function updateIndexSettings( @@ -16,6 +18,8 @@ export async function updateIndexSettings( index: string, settings: IndicesIndexSettings ): Promise { + const logger = appContextService.getLogger(); + if (index) { try { await retryTransientEsErrors(() => @@ -25,7 +29,8 @@ export async function updateIndexSettings( }) ); } catch (err) { - throw new Error(`could not update index settings for ${index}`); + // No need to throw error and block installation process + logger.debug(`Could not update index settings for ${index} because ${err}`); } } } diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/install.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/install.ts index dc775d6f52e01..78469e7654504 100644 --- a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/install.ts +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/install.ts @@ -11,6 +11,12 @@ import { safeLoad } from 'js-yaml'; import { isPopulatedObject } from '@kbn/ml-is-populated-object'; import { uniqBy } from 'lodash'; +import type { HTTPAuthorizationHeader } from '../../../../../common/http_authorization_header'; + +import type { SecondaryAuthorizationHeader } from '../../../../../common/types/models/transform_api_key'; + +import { generateTransformSecondaryAuthHeaders } from '../../../api_keys/transform_api_keys'; + import { PACKAGE_TEMPLATE_SUFFIX, USER_SETTINGS_TEMPLATE_SUFFIX, @@ -36,7 +42,8 @@ import { getInstallation } from '../../packages'; import { retryTransientEsErrors } from '../retry'; import { deleteTransforms } from './remove'; -import { getAsset, TRANSFORM_DEST_IDX_ALIAS_LATEST_SFX } from './common'; +import { getAsset } from './common'; +import { getDestinationIndexAliases } from './transform_utils'; const DEFAULT_TRANSFORM_TEMPLATES_PRIORITY = 250; enum TRANSFORM_SPECS_TYPES { @@ -58,6 +65,7 @@ interface TransformInstallation extends TransformModuleBase { content: any; transformVersion?: string; installationOrder?: number; + runAsKibanaSystem?: boolean; } const installLegacyTransformsAssets = async ( @@ -137,7 +145,8 @@ const processTransformAssetsPerModule = ( installablePackage: InstallablePackage, installNameSuffix: string, transformPaths: string[], - previousInstalledTransformEsAssets: EsAssetReference[] = [] + previousInstalledTransformEsAssets: EsAssetReference[] = [], + username?: string ) => { const transformsSpecifications = new Map(); const destinationIndexTemplates: DestinationIndexTemplateInstallation[] = []; @@ -195,10 +204,6 @@ const processTransformAssetsPerModule = ( const installationOrder = isFinite(content._meta?.order) && content._meta?.order >= 0 ? content._meta?.order : 0; const transformVersion = content._meta?.fleet_transform_version ?? '0.1.0'; - // The “all” alias for the transform destination indices will be adjusted to include the new transform destination index as well as everything it previously included - const allIndexAliasName = `${content.dest.index}.all`; - // The “latest” alias for the transform destination indices will point solely to the new transform destination index - const latestIndexAliasName = `${content.dest.index}.latest`; transformsSpecifications .get(transformModuleId) @@ -206,24 +211,30 @@ const processTransformAssetsPerModule = ( // Create two aliases associated with the destination index // for better handling during upgrades - const alias = { - [allIndexAliasName]: {}, - [latestIndexAliasName]: {}, - }; + const aliases = getDestinationIndexAliases(content.dest.aliases); + const aliasNames = aliases.map((a) => a.alias); + // Override yml settings with alia format for transform's dest.aliases + content.dest.aliases = aliases; - const versionedIndexName = `${content.dest.index}-${installNameSuffix}`; - content.dest.index = versionedIndexName; indicesToAddRefs.push({ - id: versionedIndexName, + id: content.dest.index, type: ElasticsearchAssetType.index, }); + + // If run_as_kibana_system is not set, or is set to true, then run as kibana_system user + // else, run with user's secondary credentials + const runAsKibanaSystem = content._meta?.run_as_kibana_system !== false; + transformsSpecifications.get(transformModuleId)?.set('destinationIndex', content.dest); - transformsSpecifications.get(transformModuleId)?.set('destinationIndexAlias', alias); + transformsSpecifications.get(transformModuleId)?.set('destinationIndexAlias', aliases); transformsSpecifications.get(transformModuleId)?.set('transform', content); transformsSpecifications.get(transformModuleId)?.set('transformVersion', transformVersion); + content._meta = { ...(content._meta ?? {}), ...getESAssetMetadata({ packageName: installablePackage.name }), + ...(username ? { installed_by: username } : {}), + run_as_kibana_system: runAsKibanaSystem, }; const installationName = getTransformAssetNameForInstallation( @@ -236,13 +247,14 @@ const processTransformAssetsPerModule = ( const currentTransformSameAsPrev = previousInstalledTransformEsAssets.find((t) => t.id === installationName) !== undefined; if (previousInstalledTransformEsAssets.length === 0) { - aliasesRefs.push(allIndexAliasName, latestIndexAliasName); + aliasesRefs.push(...aliasNames); transforms.push({ transformModuleId, installationName, installationOrder, transformVersion, content, + runAsKibanaSystem, }); transformsSpecifications.get(transformModuleId)?.set('transformVersionChanged', true); } else { @@ -277,9 +289,12 @@ const processTransformAssetsPerModule = ( installationOrder, transformVersion, content, + runAsKibanaSystem, }); transformsSpecifications.get(transformModuleId)?.set('transformVersionChanged', true); - aliasesRefs.push(allIndexAliasName, latestIndexAliasName); + if (aliasNames.length > 0) { + aliasesRefs.push(...aliasNames); + } } else { transformsSpecifications.get(transformModuleId)?.set('transformVersionChanged', false); } @@ -371,9 +386,12 @@ const installTransformsAssets = async ( savedObjectsClient: SavedObjectsClientContract, logger: Logger, esReferences: EsAssetReference[] = [], - previousInstalledTransformEsAssets: EsAssetReference[] = [] + previousInstalledTransformEsAssets: EsAssetReference[] = [], + authorizationHeader?: HTTPAuthorizationHeader | null ) => { let installedTransforms: EsAssetReference[] = []; + const username = authorizationHeader?.getUsername(); + if (transformPaths.length > 0) { const { indicesToAddRefs, @@ -383,23 +401,27 @@ const installTransformsAssets = async ( transforms, destinationIndexTemplates, transformsSpecifications, - aliasesRefs, transformsToRemove, transformsToRemoveWithDestIndex, } = processTransformAssetsPerModule( installablePackage, installNameSuffix, transformPaths, - previousInstalledTransformEsAssets + previousInstalledTransformEsAssets, + username ); - // ensure the .latest alias points to only the latest - // by removing any associate of old destination indices - await Promise.all( - aliasesRefs - .filter((a) => a.endsWith(TRANSFORM_DEST_IDX_ALIAS_LATEST_SFX)) - .map((alias) => deleteAliasFromIndices({ esClient, logger, alias })) - ); + // By default, for internal Elastic packages that touch system indices, we want to run as internal user + // so we set runAsKibanaSystem: true by default (e.g. when run_as_kibana_system set to true/not defined in yml file). + // If package should be installed as the logged in user, set run_as_kibana_system: false, + // and pass es-secondary-authorization in header when creating the transforms. + const secondaryAuth = await generateTransformSecondaryAuthHeaders({ + authorizationHeader, + logger, + pkgName: installablePackage.name, + pkgVersion: installablePackage.version, + username, + }); // delete all previous transform await Promise.all([ @@ -407,13 +429,15 @@ const installTransformsAssets = async ( esClient, transformsToRemoveWithDestIndex.map((asset) => asset.id), // Delete destination indices if specified or if from old json schema - true + true, + secondaryAuth ), deleteTransforms( esClient, transformsToRemove.map((asset) => asset.id), // Else, keep destination indices by default - false + false, + secondaryAuth ), ]); @@ -492,58 +516,6 @@ const installTransformsAssets = async ( .filter((p) => p !== undefined) ); - // create destination indices - await Promise.all( - transforms.map(async (transform) => { - const index = transform.content.dest.index; - - const aliases = transformsSpecifications - .get(transform.transformModuleId) - ?.get('destinationIndexAlias'); - try { - const resp = await retryTransientEsErrors( - () => - esClient.indices.create( - { - index, - aliases, - }, - { ignore: [400] } - ), - { logger } - ); - logger.debug(`Created destination index: ${index}`); - - // If index already exists, we still need to update the destination index alias - // to point '{destinationIndexName}.latest' to the versioned index - // @ts-ignore status is a valid field of resp - if (resp.status === 400 && aliases) { - await retryTransientEsErrors( - () => - esClient.indices.updateAliases({ - body: { - actions: Object.keys(aliases).map((alias) => ({ add: { index, alias } })), - }, - }), - { logger } - ); - logger.debug(`Created aliases for destination index: ${index}`); - } - } catch (err) { - logger.error( - `Error creating destination index: ${JSON.stringify({ - index, - aliases: transformsSpecifications - .get(transform.transformModuleId) - ?.get('destinationIndexAlias'), - })} with error ${err}` - ); - - throw new Error(err.message); - } - }) - ); - // If the transforms have specific installation order, install & optionally start transforms sequentially const shouldInstallSequentially = uniqBy(transforms, 'installationOrder').length === transforms.length; @@ -555,6 +527,7 @@ const installTransformsAssets = async ( logger, transform, startTransform: transformsSpecifications.get(transform.transformModuleId)?.get('start'), + secondaryAuth: transform.runAsKibanaSystem !== false ? undefined : secondaryAuth, }); installedTransforms.push(installTransform); } @@ -566,22 +539,42 @@ const installTransformsAssets = async ( logger, transform, startTransform: transformsSpecifications.get(transform.transformModuleId)?.get('start'), + secondaryAuth: transform.runAsKibanaSystem !== false ? undefined : secondaryAuth, }); }); installedTransforms = await Promise.all(transformsPromises).then((results) => results.flat()); } + + // If user does not have sufficient permissions to start the transforms, + // we need to mark them as deferred installations without blocking full package installation + // so that they can be updated/re-authorized later + + if (installedTransforms.length > 0) { + // get and save refs associated with the transforms before installing + esReferences = await updateEsAssetReferences( + savedObjectsClient, + installablePackage.name, + esReferences, + { + assetsToRemove: installedTransforms, + assetsToAdd: installedTransforms, + } + ); + } } return { installedTransforms, esReferences }; }; + export const installTransforms = async ( installablePackage: InstallablePackage, paths: string[], esClient: ElasticsearchClient, savedObjectsClient: SavedObjectsClientContract, logger: Logger, - esReferences?: EsAssetReference[] + esReferences?: EsAssetReference[], + authorizationHeader?: HTTPAuthorizationHeader | null ) => { const transformPaths = paths.filter((path) => isTransform(path)); @@ -628,7 +621,8 @@ export const installTransforms = async ( savedObjectsClient, logger, esReferences, - previousInstalledTransformEsAssets + previousInstalledTransformEsAssets, + authorizationHeader ); }; @@ -637,65 +631,59 @@ export const isTransform = (path: string) => { return !path.endsWith('/') && pathParts.type === ElasticsearchAssetType.transform; }; -async function deleteAliasFromIndices({ - esClient, - logger, - alias, -}: { - esClient: ElasticsearchClient; - logger: Logger; - alias: string; -}) { - try { - const resp = await esClient.indices.getAlias({ name: alias }); - const indicesMatchingAlias = Object.keys(resp); - logger.debug(`Deleting alias: '${alias}' matching indices ${indicesMatchingAlias}`); - - if (indicesMatchingAlias.length > 0) { - await retryTransientEsErrors( - () => - // defer validation on put if the source index is not available - esClient.indices.deleteAlias( - { index: indicesMatchingAlias, name: alias }, - { ignore: [404] } - ), - { logger } - ); - logger.debug(`Deleted alias: '${alias}' matching indices ${indicesMatchingAlias}`); - } - } catch (err) { - logger.error(`Error deleting alias: ${alias}`); - } +interface TransformEsAssetReference extends EsAssetReference { + version?: string; } +/** + * Create transform and optionally start transform + * Note that we want to add the current user's roles/permissions to the es-secondary-auth with a API Key. + * If API Key has insufficient permissions, it should still create the transforms but not start it + * Instead of failing, we need to allow package to continue installing other assets + * and prompt for users to authorize the transforms with the appropriate permissions after package is done installing + */ async function handleTransformInstall({ esClient, logger, transform, startTransform, + secondaryAuth, }: { esClient: ElasticsearchClient; logger: Logger; transform: TransformInstallation; startTransform?: boolean; -}): Promise { + secondaryAuth?: SecondaryAuthorizationHeader; +}): Promise { + let isUnauthorizedAPIKey = false; try { await retryTransientEsErrors( () => - // defer validation on put if the source index is not available - esClient.transform.putTransform({ - transform_id: transform.installationName, - defer_validation: true, - body: transform.content, - }), + // defer_validation: true on put if the source index is not available + // but will check if API Key has sufficient permission + esClient.transform.putTransform( + { + transform_id: transform.installationName, + defer_validation: true, + body: transform.content, + }, + // add '{ headers: { es-secondary-authorization: 'ApiKey {encodedApiKey}' } }' + secondaryAuth ? { ...secondaryAuth } : undefined + ), { logger } ); logger.debug(`Created transform: ${transform.installationName}`); } catch (err) { - // swallow the error if the transform already exists. + const isResponseError = err instanceof errors.ResponseError; + isUnauthorizedAPIKey = + isResponseError && + err?.body?.error?.type === 'security_exception' && + err?.body?.error?.reason?.includes('unauthorized for API key'); + const isAlreadyExistError = - err instanceof errors.ResponseError && - err?.body?.error?.type === 'resource_already_exists_exception'; - if (!isAlreadyExistError) { + isResponseError && err?.body?.error?.type === 'resource_already_exists_exception'; + + // swallow the error if the transform already exists or if API key has insufficient permissions + if (!isUnauthorizedAPIKey && !isAlreadyExistError) { throw err; } } @@ -703,18 +691,71 @@ async function handleTransformInstall({ // start transform by default if not set in yml file // else, respect the setting if (startTransform === undefined || startTransform === true) { - await retryTransientEsErrors( - () => - esClient.transform.startTransform( - { transform_id: transform.installationName }, - { ignore: [409] } - ), - { logger, additionalResponseStatuses: [400] } - ); - logger.debug(`Started transform: ${transform.installationName}`); + try { + await retryTransientEsErrors( + () => + esClient.transform.startTransform( + { transform_id: transform.installationName }, + { ignore: [409] } + ), + { logger, additionalResponseStatuses: [400] } + ); + logger.debug(`Started transform: ${transform.installationName}`); + } catch (err) { + const isResponseError = err instanceof errors.ResponseError; + isUnauthorizedAPIKey = + isResponseError && + // if transform was created with insufficient permission, + // _start will yield an error + err?.body?.error?.type === 'security_exception' && + err?.body?.error?.reason?.includes('lacks the required permissions'); + + // swallow the error if the transform can't be started if API key has insufficient permissions + if (!isUnauthorizedAPIKey) { + throw err; + } + } + } else { + // if transform was not set to start automatically in yml config, + // we need to check using _stats if the transform had insufficient permissions + try { + const transformStats = await retryTransientEsErrors( + () => + esClient.transform.getTransformStats( + { transform_id: transform.installationName }, + { ignore: [409] } + ), + { logger, additionalResponseStatuses: [400] } + ); + if (Array.isArray(transformStats.transforms) && transformStats.transforms.length === 1) { + // @ts-expect-error TransformGetTransformStatsTransformStats should have 'health' + const transformHealth = transformStats.transforms[0].health; + if ( + transformHealth.status === 'red' && + Array.isArray(transformHealth.issues) && + transformHealth.issues.find( + (i: { issue: string }) => i.issue === 'Privileges check failed' + ) + ) { + isUnauthorizedAPIKey = true; + } + } + } catch (err) { + logger.debug( + `Error getting transform stats for transform: ${transform.installationName} cause ${err}` + ); + } } - return { id: transform.installationName, type: ElasticsearchAssetType.transform }; + return { + id: transform.installationName, + type: ElasticsearchAssetType.transform, + // If isUnauthorizedAPIKey: true (due to insufficient user permission at transform creation) + // that means the transform is created but not started. + // Note in saved object this is a deferred installation so user can later reauthorize + deferred: isUnauthorizedAPIKey, + version: transform.transformVersion, + }; } const getLegacyTransformNameForInstallation = ( diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/reauthorize.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/reauthorize.ts new file mode 100644 index 0000000000000..50308554ce5ac --- /dev/null +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/reauthorize.ts @@ -0,0 +1,174 @@ +/* + * 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 { ElasticsearchClient } from '@kbn/core-elasticsearch-server'; +import type { Logger } from '@kbn/logging'; +import type { SavedObjectsClientContract } from '@kbn/core-saved-objects-api-server'; + +import { sortBy, uniqBy } from 'lodash'; + +import type { SecondaryAuthorizationHeader } from '../../../../../common/types/models/transform_api_key'; +import { updateEsAssetReferences } from '../../packages/install'; +import type { Installation } from '../../../../../common'; +import { ElasticsearchAssetType, PACKAGES_SAVED_OBJECT_TYPE } from '../../../../../common'; + +import { retryTransientEsErrors } from '../retry'; + +interface FleetTransformMetadata { + fleet_transform_version?: string; + order?: number; + package?: { name: string }; + managed?: boolean; + managed_by?: string; + installed_by?: string; + last_authorized_by?: string; + transformId: string; +} + +async function reauthorizeAndStartTransform({ + esClient, + logger, + transformId, + secondaryAuth, + meta, +}: { + esClient: ElasticsearchClient; + logger: Logger; + transformId: string; + secondaryAuth?: SecondaryAuthorizationHeader; + shouldInstallSequentially?: boolean; + meta?: object; +}): Promise<{ transformId: string; success: boolean; error: null | any }> { + try { + await retryTransientEsErrors( + () => + esClient.transform.updateTransform( + { + transform_id: transformId, + body: { _meta: meta }, + }, + { ...(secondaryAuth ? secondaryAuth : {}) } + ), + { logger, additionalResponseStatuses: [400] } + ); + + logger.debug(`Updated transform: ${transformId}`); + } catch (err) { + logger.error(`Failed to update transform: ${transformId} because ${err}`); + return { transformId, success: false, error: err }; + } + + try { + const startedTransform = await retryTransientEsErrors( + () => esClient.transform.startTransform({ transform_id: transformId }, { ignore: [409] }), + { logger, additionalResponseStatuses: [400] } + ); + logger.debug(`Started transform: ${transformId}`); + return { transformId, success: startedTransform.acknowledged, error: null }; + } catch (err) { + logger.error(`Failed to start transform: ${transformId} because ${err}`); + return { transformId, success: false, error: err }; + } +} +export async function handleTransformReauthorizeAndStart({ + esClient, + savedObjectsClient, + logger, + pkgName, + pkgVersion, + transforms, + secondaryAuth, + username, +}: { + esClient: ElasticsearchClient; + savedObjectsClient: SavedObjectsClientContract; + logger: Logger; + transforms: Array<{ transformId: string }>; + pkgName: string; + pkgVersion?: string; + secondaryAuth?: SecondaryAuthorizationHeader; + username?: string; +}) { + if (!secondaryAuth) { + throw Error( + 'A valid secondary authorization with sufficient `manage_transform` permission is needed to re-authorize and start transforms. ' + + 'This could be because security is not enabled, or API key cannot be generated.' + ); + } + + const transformInfos = await Promise.all( + transforms.map(({ transformId }) => + retryTransientEsErrors( + () => + esClient.transform.getTransform( + { + transform_id: transformId, + }, + { ...(secondaryAuth ? secondaryAuth : {}) } + ), + { logger, additionalResponseStatuses: [400] } + ) + ) + ); + const transformsMetadata: FleetTransformMetadata[] = transformInfos.flat().map((t) => { + const transform = t.transforms?.[0]; + return { ...transform._meta, transformId: transform?.id }; + }); + + const shouldInstallSequentially = + uniqBy(transformsMetadata, 'order').length === transforms.length; + + let authorizedTransforms = []; + + if (shouldInstallSequentially) { + const sortedTransformsMetadata = sortBy(transformsMetadata, [ + (t) => t.package?.name, + (t) => t.fleet_transform_version, + (t) => t.order, + ]); + + for (const { transformId, ...meta } of sortedTransformsMetadata) { + const authorizedTransform = await reauthorizeAndStartTransform({ + esClient, + logger, + transformId, + secondaryAuth, + meta: { ...meta, last_authorized_by: username }, + }); + + authorizedTransforms.push(authorizedTransform); + } + } else { + // Else, create & start all the transforms at once for speed + const transformsPromises = transformsMetadata.map(async ({ transformId, ...meta }) => { + return await reauthorizeAndStartTransform({ + esClient, + logger, + transformId, + secondaryAuth, + meta: { ...meta, last_authorized_by: username }, + }); + }); + + authorizedTransforms = await Promise.all(transformsPromises).then((results) => results.flat()); + } + + const so = await savedObjectsClient.get(PACKAGES_SAVED_OBJECT_TYPE, pkgName); + const esReferences = so.attributes.installed_es ?? []; + + const successfullyAuthorizedTransforms = authorizedTransforms.filter((t) => t.success); + const authorizedTransformsRefs = successfullyAuthorizedTransforms.map((t) => ({ + type: ElasticsearchAssetType.transform, + id: t.transformId, + version: pkgVersion, + })); + await updateEsAssetReferences(savedObjectsClient, pkgName, esReferences, { + assetsToRemove: authorizedTransformsRefs, + assetsToAdd: authorizedTransformsRefs, + }); + return authorizedTransforms; +} diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/remove.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/remove.ts index 77996674f402e..5de22e050483a 100644 --- a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/remove.ts +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/remove.ts @@ -7,6 +7,7 @@ import type { ElasticsearchClient, SavedObjectsClientContract } from '@kbn/core/server'; +import type { SecondaryAuthorizationHeader } from '../../../../../common/types/models/transform_api_key'; import { ElasticsearchAssetType } from '../../../../types'; import type { EsAssetReference } from '../../../../types'; import { PACKAGES_SAVED_OBJECT_TYPE } from '../../../../../common/constants'; @@ -24,7 +25,8 @@ export const stopTransforms = async (transformIds: string[], esClient: Elasticse export const deleteTransforms = async ( esClient: ElasticsearchClient, transformIds: string[], - deleteDestinationIndices = false + deleteDestinationIndices = false, + secondaryAuth?: SecondaryAuthorizationHeader ) => { const logger = appContextService.getLogger(); if (transformIds.length) { @@ -41,7 +43,7 @@ export const deleteTransforms = async ( await stopTransforms([transformId], esClient); await esClient.transform.deleteTransform( { force: true, transform_id: transformId }, - { ignore: [404] } + { ...(secondaryAuth ? secondaryAuth : {}), ignore: [404] } ); logger.info(`Deleted: ${transformId}`); if (deleteDestinationIndices && transformResponse?.transforms) { diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.test.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.test.ts new file mode 100644 index 0000000000000..3449af4da8eaf --- /dev/null +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.test.ts @@ -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 { getDestinationIndexAliases } from './transform_utils'; + +describe('test transform_utils', () => { + describe('getDestinationIndexAliases()', function () { + test('return transform alias settings when input is an object', () => { + const aliasSettings = { + '.alerts-security.host-risk-score-latest.latest': { move_on_creation: true }, + '.alerts-security.host-risk-score-latest.all': { move_on_creation: false }, + }; + expect(getDestinationIndexAliases(aliasSettings)).toStrictEqual([ + { alias: '.alerts-security.host-risk-score-latest.latest', move_on_creation: true }, + { alias: '.alerts-security.host-risk-score-latest.all', move_on_creation: false }, + ]); + }); + + test('return transform alias settings when input is an array', () => { + const aliasSettings = [ + '.alerts-security.host-risk-score-latest.latest', + '.alerts-security.host-risk-score-latest.all', + ]; + expect(getDestinationIndexAliases(aliasSettings)).toStrictEqual([ + { alias: '.alerts-security.host-risk-score-latest.latest', move_on_creation: true }, + { alias: '.alerts-security.host-risk-score-latest.all', move_on_creation: false }, + ]); + }); + + test('return transform alias settings when input is a string', () => { + expect( + getDestinationIndexAliases('.alerts-security.host-risk-score-latest.latest') + ).toStrictEqual([ + { alias: '.alerts-security.host-risk-score-latest.latest', move_on_creation: true }, + ]); + + expect( + getDestinationIndexAliases('.alerts-security.host-risk-score-latest.all') + ).toStrictEqual([ + { alias: '.alerts-security.host-risk-score-latest.all', move_on_creation: false }, + ]); + }); + + test('return empty array when input is invalid', () => { + expect(getDestinationIndexAliases(undefined)).toStrictEqual([]); + + expect(getDestinationIndexAliases({})).toStrictEqual([]); + }); + }); +}); diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.ts new file mode 100644 index 0000000000000..eacb8cfbf3c94 --- /dev/null +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transform_utils.ts @@ -0,0 +1,45 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { isPopulatedObject } from '@kbn/ml-is-populated-object'; + +interface TransformAliasSetting { + alias: string; + // When move_on_creation: true, all the other indices are removed from the alias, + // ensuring that the alias points at only one index (i.e.: the destination index of the current transform). + move_on_creation?: boolean; +} + +export const getDestinationIndexAliases = (aliasSettings: unknown): TransformAliasSetting[] => { + let aliases: TransformAliasSetting[] = []; + + if (!aliasSettings) return aliases; + + // If in form of + if (isPopulatedObject(aliasSettings)) { + Object.keys(aliasSettings).forEach((alias) => { + if (aliasSettings.hasOwnProperty(alias) && typeof alias === 'string') { + const moveOnCreation = aliasSettings[alias].move_on_creation === true; + aliases.push({ alias, move_on_creation: moveOnCreation }); + } + }); + } + if (Array.isArray(aliasSettings)) { + aliases = aliasSettings.reduce((acc, alias) => { + if (typeof alias === 'string') { + acc.push({ alias, move_on_creation: alias.endsWith('.latest') ? true : false }); + } + return acc; + }, []); + } + if (typeof aliasSettings === 'string') { + aliases = [ + { alias: aliasSettings, move_on_creation: aliasSettings.endsWith('.latest') ? true : false }, + ]; + } + return aliases; +}; diff --git a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transforms.test.ts b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transforms.test.ts index 77537f200628d..6180e37c4373d 100644 --- a/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transforms.test.ts +++ b/x-pack/plugins/fleet/server/services/epm/elasticsearch/transform/transforms.test.ts @@ -5,25 +5,14 @@ * 2.0. */ -// eslint-disable-next-line import/order -import { createAppContextStartContractMock } from '../../../../mocks'; - -jest.mock('../../packages/get', () => { - return { getInstallation: jest.fn(), getInstallationObject: jest.fn() }; -}); - -jest.mock('./common', () => { - return { - getAsset: jest.fn(), - }; -}); - import type { SavedObject, SavedObjectsClientContract } from '@kbn/core/server'; import { loggerMock } from '@kbn/logging-mocks'; import { savedObjectsClientMock } from '@kbn/core/server/mocks'; import { elasticsearchClientMock } from '@kbn/core-elasticsearch-client-server-mocks'; +import { HTTPAuthorizationHeader } from '../../../../../common/http_authorization_header'; + import { getInstallation, getInstallationObject } from '../../packages'; import type { Installation, RegistryPackage } from '../../../../types'; import { ElasticsearchAssetType } from '../../../../types'; @@ -33,15 +22,31 @@ import { PACKAGES_SAVED_OBJECT_TYPE } from '../../../../constants'; import { getESAssetMetadata } from '../meta'; +import { createAppContextStartContractMock } from '../../../../mocks'; + import { installTransforms } from './install'; import { getAsset } from './common'; +jest.mock('../../packages/get', () => { + return { getInstallation: jest.fn(), getInstallationObject: jest.fn() }; +}); + +jest.mock('./common', () => { + return { + getAsset: jest.fn(), + }; +}); + const meta = getESAssetMetadata({ packageName: 'endpoint' }); describe('test transform install', () => { let esClient: ReturnType; let savedObjectsClient: jest.Mocked; + const authorizationHeader = new HTTPAuthorizationHeader( + 'Basic', + 'bW9uaXRvcmluZ191c2VyOm1scWFfYWRtaW4=' + ); const getYamlTestData = ( autoStart: boolean | undefined = undefined, transformVersion: string = '0.1.0' @@ -113,7 +118,8 @@ _meta: body: { description: 'Merges latest endpoint and Agent metadata documents.', dest: { - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', + index: '.metrics-endpoint.metadata_united_default', + aliases: [], }, frequency: '1s', pivot: { @@ -145,7 +151,7 @@ _meta: field: 'updated_at', }, }, - _meta: { fleet_transform_version: transformVersion, ...meta }, + _meta: { fleet_transform_version: transformVersion, ...meta, run_as_kibana_system: true }, }, }, }; @@ -336,7 +342,7 @@ _meta: 'logs-endpoint.metadata_current-template@package', 'logs-endpoint.metadata_current-template@custom', ], - index_patterns: ['.metrics-endpoint.metadata_united_default-0.16.0-dev.0'], + index_patterns: ['.metrics-endpoint.metadata_united_default'], priority: 250, template: { mappings: undefined, settings: undefined }, }, @@ -346,19 +352,8 @@ _meta: ], ]); - // Destination index is created before transform is created - expect(esClient.indices.create.mock.calls).toEqual([ - [ - { - aliases: { - '.metrics-endpoint.metadata_united_default.all': {}, - '.metrics-endpoint.metadata_united_default.latest': {}, - }, - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', - }, - { ignore: [400] }, - ], - ]); + // Destination index is not created before transform is created + expect(esClient.indices.create.mock.calls).toEqual([]); expect(esClient.transform.putTransform.mock.calls).toEqual([[expectedData.TRANSFORM]]); expect(esClient.transform.startTransform.mock.calls).toEqual([ @@ -382,7 +377,47 @@ _meta: type: ElasticsearchAssetType.ingestPipeline, }, { - id: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', + id: '.metrics-endpoint.metadata_united_default', + type: ElasticsearchAssetType.index, + }, + { + id: 'logs-endpoint.metadata_current-template', + type: ElasticsearchAssetType.indexTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-template@custom', + type: ElasticsearchAssetType.componentTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-template@package', + type: ElasticsearchAssetType.componentTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-default-0.2.0', + type: ElasticsearchAssetType.transform, + version: '0.2.0', + }, + ], + }, + { + refresh: false, + }, + ], + // After transforms are installed, es asset reference needs to be updated if they are deferred or not + [ + 'epm-packages', + 'endpoint', + { + installed_es: [ + { + id: 'metrics-endpoint.policy-0.16.0-dev.0', + type: ElasticsearchAssetType.ingestPipeline, + }, + { + id: '.metrics-endpoint.metadata_united_default', type: ElasticsearchAssetType.index, }, { @@ -401,6 +436,8 @@ _meta: version: '0.2.0', }, { + // After transforms are installed, es asset reference needs to be updated if they are deferred or not + deferred: false, id: 'logs-endpoint.metadata_current-default-0.2.0', type: ElasticsearchAssetType.transform, version: '0.2.0', @@ -588,7 +625,7 @@ _meta: 'logs-endpoint.metadata_current-template@package', 'logs-endpoint.metadata_current-template@custom', ], - index_patterns: ['.metrics-endpoint.metadata_united_default-0.16.0-dev.0'], + index_patterns: ['.metrics-endpoint.metadata_united_default'], priority: 250, template: { mappings: undefined, settings: undefined }, }, @@ -598,19 +635,8 @@ _meta: ], ]); - // Destination index is created before transform is created - expect(esClient.indices.create.mock.calls).toEqual([ - [ - { - aliases: { - '.metrics-endpoint.metadata_united_default.all': {}, - '.metrics-endpoint.metadata_united_default.latest': {}, - }, - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', - }, - { ignore: [400] }, - ], - ]); + // Destination index is not created before transform is created + expect(esClient.indices.create.mock.calls).toEqual([]); expect(esClient.transform.putTransform.mock.calls).toEqual([[expectedData.TRANSFORM]]); expect(esClient.transform.startTransform.mock.calls).toEqual([ @@ -634,7 +660,46 @@ _meta: type: ElasticsearchAssetType.ingestPipeline, }, { - id: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', + id: '.metrics-endpoint.metadata_united_default', + type: ElasticsearchAssetType.index, + }, + { + id: 'logs-endpoint.metadata_current-template', + type: ElasticsearchAssetType.indexTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-template@custom', + type: ElasticsearchAssetType.componentTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-template@package', + type: ElasticsearchAssetType.componentTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-default-0.2.0', + type: ElasticsearchAssetType.transform, + version: '0.2.0', + }, + ], + }, + { + refresh: false, + }, + ], + [ + 'epm-packages', + 'endpoint', + { + installed_es: [ + { + id: 'metrics-endpoint.policy-0.1.0-dev.0', + type: ElasticsearchAssetType.ingestPipeline, + }, + { + id: '.metrics-endpoint.metadata_united_default', type: ElasticsearchAssetType.index, }, { @@ -653,6 +718,8 @@ _meta: version: '0.2.0', }, { + // After transforms are installed, es asset reference needs to be updated if they are deferred or not + deferred: false, id: 'logs-endpoint.metadata_current-default-0.2.0', type: ElasticsearchAssetType.transform, version: '0.2.0', @@ -809,7 +876,7 @@ _meta: 'logs-endpoint.metadata_current-template@package', 'logs-endpoint.metadata_current-template@custom', ], - index_patterns: ['.metrics-endpoint.metadata_united_default-0.16.0-dev.0'], + index_patterns: ['.metrics-endpoint.metadata_united_default'], priority: 250, template: { mappings: undefined, settings: undefined }, }, @@ -819,19 +886,8 @@ _meta: ], ]); - // Destination index is created before transform is created - expect(esClient.indices.create.mock.calls).toEqual([ - [ - { - aliases: { - '.metrics-endpoint.metadata_united_default.all': {}, - '.metrics-endpoint.metadata_united_default.latest': {}, - }, - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', - }, - { ignore: [400] }, - ], - ]); + // Destination index is not created before transform is created + expect(esClient.indices.create.mock.calls).toEqual([]); expect(esClient.transform.putTransform.mock.calls).toEqual([[expectedData.TRANSFORM]]); expect(esClient.transform.startTransform.mock.calls).toEqual([ @@ -855,7 +911,46 @@ _meta: type: ElasticsearchAssetType.ingestPipeline, }, { - id: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', + id: '.metrics-endpoint.metadata_united_default', + type: ElasticsearchAssetType.index, + }, + { + id: 'logs-endpoint.metadata_current-template', + type: ElasticsearchAssetType.indexTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-template@custom', + type: ElasticsearchAssetType.componentTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-template@package', + type: ElasticsearchAssetType.componentTemplate, + version: '0.2.0', + }, + { + id: 'logs-endpoint.metadata_current-default-0.2.0', + type: ElasticsearchAssetType.transform, + version: '0.2.0', + }, + ], + }, + { + refresh: false, + }, + ], + [ + 'epm-packages', + 'endpoint', + { + installed_es: [ + { + id: 'metrics-endpoint.policy-0.16.0-dev.0', + type: ElasticsearchAssetType.ingestPipeline, + }, + { + id: '.metrics-endpoint.metadata_united_default', type: ElasticsearchAssetType.index, }, { @@ -874,6 +969,7 @@ _meta: version: '0.2.0', }, { + deferred: false, id: 'logs-endpoint.metadata_current-default-0.2.0', type: ElasticsearchAssetType.transform, version: '0.2.0', @@ -931,7 +1027,8 @@ _meta: esClient, savedObjectsClient, loggerMock.create(), - previousInstallation.installed_es + previousInstallation.installed_es, + authorizationHeader ); expect(esClient.transform.putTransform.mock.calls).toEqual([[expectedData.TRANSFORM]]); @@ -1026,43 +1123,11 @@ _meta: previousInstallation.installed_es ); - expect(esClient.indices.create.mock.calls).toEqual([ - [ - { - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', - aliases: { - '.metrics-endpoint.metadata_united_default.all': {}, - '.metrics-endpoint.metadata_united_default.latest': {}, - }, - }, - { ignore: [400] }, - ], - ]); + expect(esClient.indices.create.mock.calls).toEqual([]); // If downgrading to and older version, and destination index already exists // aliases should still be updated to point .latest to this index - expect(esClient.indices.updateAliases.mock.calls).toEqual([ - [ - { - body: { - actions: [ - { - add: { - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', - alias: '.metrics-endpoint.metadata_united_default.all', - }, - }, - { - add: { - index: '.metrics-endpoint.metadata_united_default-0.16.0-dev.0', - alias: '.metrics-endpoint.metadata_united_default.latest', - }, - }, - ], - }, - }, - ], - ]); + expect(esClient.indices.updateAliases.mock.calls).toEqual([]); expect(esClient.transform.deleteTransform.mock.calls).toEqual([ [ diff --git a/x-pack/plugins/fleet/server/services/epm/package_service.test.ts b/x-pack/plugins/fleet/server/services/epm/package_service.test.ts index aa6f8c81111f5..7f0493d1ee66f 100644 --- a/x-pack/plugins/fleet/server/services/epm/package_service.test.ts +++ b/x-pack/plugins/fleet/server/services/epm/package_service.test.ts @@ -131,7 +131,17 @@ function getTest( method: mocks.packageClient.reinstallEsAssets.bind(mocks.packageClient), args: [pkg, paths], spy: jest.spyOn(epmTransformsInstall, 'installTransforms'), - spyArgs: [pkg, paths, mocks.esClient, mocks.soClient, mocks.logger], + spyArgs: [ + pkg, + paths, + mocks.esClient, + mocks.soClient, + mocks.logger, + // Undefined es references + undefined, + // Undefined secondary authorization + undefined, + ], spyResponse: { installedTransforms: [ { diff --git a/x-pack/plugins/fleet/server/services/epm/package_service.ts b/x-pack/plugins/fleet/server/services/epm/package_service.ts index 4e820df7a99fc..02a12dd9e77aa 100644 --- a/x-pack/plugins/fleet/server/services/epm/package_service.ts +++ b/x-pack/plugins/fleet/server/services/epm/package_service.ts @@ -14,6 +14,8 @@ import type { Logger, } from '@kbn/core/server'; +import { HTTPAuthorizationHeader } from '../../../common/http_authorization_header'; + import type { PackageList } from '../../../common'; import type { @@ -96,7 +98,8 @@ export class PackageServiceImpl implements PackageService { this.internalEsClient, this.internalSoClient, this.logger, - preflightCheck + preflightCheck, + request ); } @@ -106,13 +109,23 @@ export class PackageServiceImpl implements PackageService { } class PackageClientImpl implements PackageClient { + private authorizationHeader?: HTTPAuthorizationHeader | null = undefined; + constructor( private readonly internalEsClient: ElasticsearchClient, private readonly internalSoClient: SavedObjectsClientContract, private readonly logger: Logger, - private readonly preflightCheck?: () => void | Promise + private readonly preflightCheck?: () => void | Promise, + private readonly request?: KibanaRequest ) {} + private getAuthorizationHeader() { + if (this.request) { + this.authorizationHeader = HTTPAuthorizationHeader.parseFromRequest(this.request); + return this.authorizationHeader; + } + } + public async getInstallation(pkgName: string) { await this.#runPreflight(); return getInstallation({ @@ -127,6 +140,7 @@ class PackageClientImpl implements PackageClient { spaceId?: string; }): Promise { await this.#runPreflight(); + return ensureInstalledPackage({ ...options, esClient: this.internalEsClient, @@ -193,12 +207,16 @@ class PackageClientImpl implements PackageClient { } async #reinstallTransforms(packageInfo: InstallablePackage, paths: string[]) { + const authorizationHeader = await this.getAuthorizationHeader(); + const { installedTransforms } = await installTransforms( packageInfo, paths, this.internalEsClient, this.internalSoClient, - this.logger + this.logger, + undefined, + authorizationHeader ); return installedTransforms; } diff --git a/x-pack/plugins/fleet/server/services/epm/packages/_install_package.ts b/x-pack/plugins/fleet/server/services/epm/packages/_install_package.ts index 68c981a308f82..6ea2749b0823a 100644 --- a/x-pack/plugins/fleet/server/services/epm/packages/_install_package.ts +++ b/x-pack/plugins/fleet/server/services/epm/packages/_install_package.ts @@ -16,6 +16,8 @@ import { SavedObjectsErrorHelpers } from '@kbn/core/server'; import type { IAssignmentService, ITagsClient } from '@kbn/saved-objects-tagging-plugin/server'; +import type { HTTPAuthorizationHeader } from '../../../../common/http_authorization_header'; + import { getNormalizedDataStreams } from '../../../../common/services'; import { @@ -74,6 +76,7 @@ export async function _installPackage({ installSource, spaceId, verificationResult, + authorizationHeader, }: { savedObjectsClient: SavedObjectsClientContract; savedObjectsImporter: Pick; @@ -88,6 +91,7 @@ export async function _installPackage({ installSource: InstallSource; spaceId: string; verificationResult?: PackageVerificationResult; + authorizationHeader?: HTTPAuthorizationHeader | null; }): Promise { const { name: pkgName, version: pkgVersion, title: pkgTitle } = packageInfo; @@ -245,7 +249,15 @@ export async function _installPackage({ ); ({ esReferences } = await withPackageSpan('Install transforms', () => - installTransforms(packageInfo, paths, esClient, savedObjectsClient, logger, esReferences) + installTransforms( + packageInfo, + paths, + esClient, + savedObjectsClient, + logger, + esReferences, + authorizationHeader + ) )); // If this is an update or retrying an update, delete the previous version's pipelines diff --git a/x-pack/plugins/fleet/server/services/epm/packages/bulk_install_packages.ts b/x-pack/plugins/fleet/server/services/epm/packages/bulk_install_packages.ts index 659d8d1a1c5db..a95560fbd9cbb 100644 --- a/x-pack/plugins/fleet/server/services/epm/packages/bulk_install_packages.ts +++ b/x-pack/plugins/fleet/server/services/epm/packages/bulk_install_packages.ts @@ -7,6 +7,8 @@ import type { ElasticsearchClient, SavedObjectsClientContract } from '@kbn/core/server'; +import type { HTTPAuthorizationHeader } from '../../../../common/http_authorization_header'; + import { appContextService } from '../../app_context'; import * as Registry from '../registry'; @@ -23,6 +25,7 @@ interface BulkInstallPackagesParams { spaceId: string; preferredSource?: 'registry' | 'bundled'; prerelease?: boolean; + authorizationHeader?: HTTPAuthorizationHeader | null; } export async function bulkInstallPackages({ @@ -32,6 +35,7 @@ export async function bulkInstallPackages({ spaceId, force, prerelease, + authorizationHeader, }: BulkInstallPackagesParams): Promise { const logger = appContextService.getLogger(); @@ -94,6 +98,7 @@ export async function bulkInstallPackages({ spaceId, force, prerelease, + authorizationHeader, }); if (installResult.error) { diff --git a/x-pack/plugins/fleet/server/services/epm/packages/install.ts b/x-pack/plugins/fleet/server/services/epm/packages/install.ts index af56737f7f8b5..866a24f74ec25 100644 --- a/x-pack/plugins/fleet/server/services/epm/packages/install.ts +++ b/x-pack/plugins/fleet/server/services/epm/packages/install.ts @@ -25,6 +25,8 @@ import { uniqBy } from 'lodash'; import type { LicenseType } from '@kbn/licensing-plugin/server'; +import type { HTTPAuthorizationHeader } from '../../../../common/http_authorization_header'; + import { isPackagePrerelease, getNormalizedDataStreams } from '../../../../common/services'; import { FLEET_INSTALL_FORMAT_VERSION } from '../../../constants/fleet_es_assets'; @@ -120,6 +122,7 @@ export async function ensureInstalledPackage(options: { pkgVersion?: string; spaceId?: string; force?: boolean; + authorizationHeader?: HTTPAuthorizationHeader | null; }): Promise { const { savedObjectsClient, @@ -128,6 +131,7 @@ export async function ensureInstalledPackage(options: { pkgVersion, force = false, spaceId = DEFAULT_SPACE_ID, + authorizationHeader, } = options; // If pkgVersion isn't specified, find the latest package version @@ -152,6 +156,7 @@ export async function ensureInstalledPackage(options: { esClient, neverIgnoreVerificationError: !force, force: true, // Always force outdated packages to be installed if a later version isn't installed + authorizationHeader, }); if (installResult.error) { @@ -188,6 +193,7 @@ export async function handleInstallPackageFailure({ installedPkg, esClient, spaceId, + authorizationHeader, }: { savedObjectsClient: SavedObjectsClientContract; error: FleetError | Boom.Boom | Error; @@ -196,6 +202,7 @@ export async function handleInstallPackageFailure({ installedPkg: SavedObject | undefined; esClient: ElasticsearchClient; spaceId: string; + authorizationHeader?: HTTPAuthorizationHeader | null; }) { if (error instanceof FleetError) { return; @@ -232,6 +239,7 @@ export async function handleInstallPackageFailure({ esClient, spaceId, force: true, + authorizationHeader, }); } } catch (e) { @@ -255,6 +263,7 @@ interface InstallRegistryPackageParams { neverIgnoreVerificationError?: boolean; ignoreConstraints?: boolean; prerelease?: boolean; + authorizationHeader?: HTTPAuthorizationHeader | null; } interface InstallUploadedArchiveParams { savedObjectsClient: SavedObjectsClientContract; @@ -263,6 +272,7 @@ interface InstallUploadedArchiveParams { contentType: string; spaceId: string; version?: string; + authorizationHeader?: HTTPAuthorizationHeader | null; } function getTelemetryEvent(pkgName: string, pkgVersion: string): PackageUpdateEvent { @@ -290,6 +300,7 @@ async function installPackageFromRegistry({ pkgkey, esClient, spaceId, + authorizationHeader, force = false, ignoreConstraints = false, neverIgnoreVerificationError = false, @@ -366,6 +377,7 @@ async function installPackageFromRegistry({ packageInfo, paths, verificationResult, + authorizationHeader, }); } catch (e) { sendEvent({ @@ -400,6 +412,7 @@ async function installPackageCommon(options: { paths: string[]; verificationResult?: PackageVerificationResult; telemetryEvent?: PackageUpdateEvent; + authorizationHeader?: HTTPAuthorizationHeader | null; }): Promise { const { pkgName, @@ -414,6 +427,7 @@ async function installPackageCommon(options: { packageInfo, paths, verificationResult, + authorizationHeader, } = options; let { telemetryEvent } = options; const logger = appContextService.getLogger(); @@ -496,6 +510,7 @@ async function installPackageCommon(options: { spaceId, verificationResult, installSource, + authorizationHeader, }) .then(async (assets) => { await removeOldAssets({ @@ -519,6 +534,7 @@ async function installPackageCommon(options: { installedPkg, spaceId, esClient, + authorizationHeader, }); sendEvent({ ...telemetryEvent!, @@ -548,6 +564,7 @@ async function installPackageByUpload({ contentType, spaceId, version, + authorizationHeader, }: InstallUploadedArchiveParams): Promise { // if an error happens during getInstallType, report that we don't know let installType: InstallType = 'unknown'; @@ -595,6 +612,7 @@ async function installPackageByUpload({ force: true, // upload has implicit force packageInfo, paths, + authorizationHeader, }); } catch (e) { return { @@ -622,6 +640,8 @@ export async function installPackage(args: InstallPackageParams): Promise; diff --git a/x-pack/plugins/fleet/server/services/preconfiguration.ts b/x-pack/plugins/fleet/server/services/preconfiguration.ts index 06c206ee77dc8..350909d3de0a7 100644 --- a/x-pack/plugins/fleet/server/services/preconfiguration.ts +++ b/x-pack/plugins/fleet/server/services/preconfiguration.ts @@ -80,7 +80,6 @@ export async function ensurePreconfiguredPackagesAndPolicies( const packagesToInstall = packages.map((pkg) => pkg.version === PRECONFIGURATION_LATEST_KEYWORD ? pkg.name : pkg ); - // Preinstall packages specified in Kibana config const preconfiguredPackages = await bulkInstallPackages({ savedObjectsClient: soClient, diff --git a/x-pack/plugins/fleet/server/services/security/security.ts b/x-pack/plugins/fleet/server/services/security/security.ts index 0f72aeabfd17e..715d8d966484f 100644 --- a/x-pack/plugins/fleet/server/services/security/security.ts +++ b/x-pack/plugins/fleet/server/services/security/security.ts @@ -9,6 +9,8 @@ import { pick } from 'lodash'; import type { KibanaRequest } from '@kbn/core/server'; +import { TRANSFORM_PLUGIN_ID } from '../../../common/constants/plugin'; + import type { FleetAuthz } from '../../../common'; import { INTEGRATIONS_PLUGIN_ID } from '../../../common'; import { @@ -36,6 +38,7 @@ export function checkSuperuser(req: KibanaRequest) { const security = appContextService.getSecurity(); const user = security.authc.getCurrentUser(req); + if (!user) { return false; } @@ -79,6 +82,10 @@ export async function getAuthzFromRequest(req: KibanaRequest): Promise Date: Thu, 20 Apr 2023 14:13:51 -0400 Subject: [PATCH 36/60] feat(slo): Add overview and alerts tab on slo details page (#155413) --- .../slo_details/components/header_title.tsx | 7 -- .../slo_details/components/slo_details.tsx | 116 +++++++++++++++--- .../pages/slo_details/slo_details.test.tsx | 27 ++-- 3 files changed, 112 insertions(+), 38 deletions(-) diff --git a/x-pack/plugins/observability/public/pages/slo_details/components/header_title.tsx b/x-pack/plugins/observability/public/pages/slo_details/components/header_title.tsx index 94e7bcc8acf2c..e7d19c8b7f18a 100644 --- a/x-pack/plugins/observability/public/pages/slo_details/components/header_title.tsx +++ b/x-pack/plugins/observability/public/pages/slo_details/components/header_title.tsx @@ -9,9 +9,7 @@ import { EuiFlexGroup, EuiFlexItem, EuiLoadingSpinner } from '@elastic/eui'; import { SLOWithSummaryResponse } from '@kbn/slo-schema'; import React from 'react'; -import { useFetchActiveAlerts } from '../../../hooks/slo/use_fetch_active_alerts'; import { SloStatusBadge } from '../../../components/slo/slo_status_badge'; -import { SloActiveAlertsBadge } from '../../../components/slo/slo_status_badge/slo_active_alerts_badge'; export interface Props { slo: SLOWithSummaryResponse | undefined; @@ -21,10 +19,6 @@ export interface Props { export function HeaderTitle(props: Props) { const { isLoading, slo } = props; - const { data: activeAlerts } = useFetchActiveAlerts({ - sloIds: !!slo ? [slo.id] : [], - }); - if (isLoading) { return ; } @@ -38,7 +32,6 @@ export function HeaderTitle(props: Props) { {slo.name} - ); diff --git a/x-pack/plugins/observability/public/pages/slo_details/components/slo_details.tsx b/x-pack/plugins/observability/public/pages/slo_details/components/slo_details.tsx index cb0e9d37c9d5c..97a7a2915b11a 100644 --- a/x-pack/plugins/observability/public/pages/slo_details/components/slo_details.tsx +++ b/x-pack/plugins/observability/public/pages/slo_details/components/slo_details.tsx @@ -5,10 +5,21 @@ * 2.0. */ -import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui'; +import { + EuiFlexGroup, + EuiFlexItem, + EuiNotificationBadge, + EuiSpacer, + EuiTabbedContent, + EuiTabbedContentTab, +} from '@elastic/eui'; import { SLOWithSummaryResponse } from '@kbn/slo-schema'; -import React from 'react'; +import React, { Fragment } from 'react'; +import { AlertConsumers } from '@kbn/rule-data-utils'; +import { i18n } from '@kbn/i18n'; +import { useFetchActiveAlerts } from '../../../hooks/slo/use_fetch_active_alerts'; +import { useKibana } from '../../../utils/kibana_react'; import { formatHistoricalData } from '../../../utils/slo/chart_data_formatter'; import { useFetchHistoricalSummary } from '../../../hooks/slo/use_fetch_historical_summary'; import { ErrorBudgetChartPanel } from './error_budget_chart_panel'; @@ -19,8 +30,18 @@ export interface Props { slo: SLOWithSummaryResponse; isAutoRefreshing: boolean; } +const ALERTS_TABLE_ID = 'xpack.observability.slo.sloDetails.alertTable'; +const OVERVIEW_TAB = 'overview'; +const ALERTS_TAB = 'alerts'; export function SloDetails({ slo, isAutoRefreshing }: Props) { + const { + triggersActionsUi: { alertsTableConfigurationRegistry, getAlertsStateTable: AlertsStateTable }, + } = useKibana().services; + + const { data: activeAlerts } = useFetchActiveAlerts({ + sloIds: [slo.id], + }); const { isLoading: historicalSummaryLoading, sloHistoricalSummaryResponse = {} } = useFetchHistoricalSummary({ sloIds: [slo.id], shouldRefetch: isAutoRefreshing }); @@ -30,23 +51,80 @@ export function SloDetails({ slo, isAutoRefreshing }: Props) { ); const historicalSliData = formatHistoricalData(sloHistoricalSummaryResponse[slo.id], 'sli_value'); + const tabs: EuiTabbedContentTab[] = [ + { + id: OVERVIEW_TAB, + name: i18n.translate('xpack.observability.slo.sloDetails.tab.overviewLabel', { + defaultMessage: 'Overview', + }), + 'data-test-subj': 'overviewTab', + content: ( + + + + + + + + + + + + + + + + + ), + }, + { + id: ALERTS_TAB, + name: i18n.translate('xpack.observability.slo.sloDetails.tab.alertsLabel', { + defaultMessage: 'Alerts', + }), + 'data-test-subj': 'alertsTab', + append: ( + + {(activeAlerts && activeAlerts[slo.id]?.count) ?? 0} + + ), + content: ( + + + + + + + + + ), + }, + ]; + return ( - - - - - - - - - - - - - + ); } diff --git a/x-pack/plugins/observability/public/pages/slo_details/slo_details.test.tsx b/x-pack/plugins/observability/public/pages/slo_details/slo_details.test.tsx index a606edc900438..ebffcefafd6e1 100644 --- a/x-pack/plugins/observability/public/pages/slo_details/slo_details.test.tsx +++ b/x-pack/plugins/observability/public/pages/slo_details/slo_details.test.tsx @@ -158,22 +158,19 @@ describe('SLO Details Page', () => { expect(screen.queryAllByTestId('wideChartLoading').length).toBe(0); }); - it('renders the active alerts badge', async () => { + it("renders a 'Edit' button under actions menu", async () => { const slo = buildSlo(); - useLicenseMock.mockReturnValue({ hasAtLeast: () => true }); useParamsMock.mockReturnValue(slo.id); useFetchSloDetailsMock.mockReturnValue({ isLoading: false, slo }); - useFetchActiveAlertsMock.mockReturnValue({ - isLoading: false, - data: { [slo.id]: { count: 2, ruleIds: ['rule-1', 'rule-2'] } }, - }); + useLicenseMock.mockReturnValue({ hasAtLeast: () => true }); render(); - expect(screen.getByTestId('o11ySloActiveAlertsBadge')).toBeTruthy(); + fireEvent.click(screen.getByTestId('o11yHeaderControlActionsButton')); + expect(screen.queryByTestId('sloDetailsHeaderControlPopoverEdit')).toBeTruthy(); }); - it("renders a 'Edit' button under actions menu", async () => { + it("renders a 'Create alert rule' button under actions menu", async () => { const slo = buildSlo(); useParamsMock.mockReturnValue(slo.id); useFetchSloDetailsMock.mockReturnValue({ isLoading: false, slo }); @@ -182,19 +179,25 @@ describe('SLO Details Page', () => { render(); fireEvent.click(screen.getByTestId('o11yHeaderControlActionsButton')); - expect(screen.queryByTestId('sloDetailsHeaderControlPopoverEdit')).toBeTruthy(); + expect(screen.queryByTestId('sloDetailsHeaderControlPopoverCreateRule')).toBeTruthy(); }); - it("renders a 'Create alert rule' button under actions menu", async () => { + it('renders the Overview tab by default', async () => { const slo = buildSlo(); useParamsMock.mockReturnValue(slo.id); useFetchSloDetailsMock.mockReturnValue({ isLoading: false, slo }); useLicenseMock.mockReturnValue({ hasAtLeast: () => true }); + useFetchActiveAlertsMock.mockReturnValue({ + isLoading: false, + data: { [slo.id]: { count: 2, ruleIds: ['rule-1', 'rule-2'] } }, + }); render(); - fireEvent.click(screen.getByTestId('o11yHeaderControlActionsButton')); - expect(screen.queryByTestId('sloDetailsHeaderControlPopoverCreateRule')).toBeTruthy(); + expect(screen.queryByTestId('overviewTab')).toBeTruthy(); + expect(screen.queryByTestId('overviewTab')?.getAttribute('aria-selected')).toBe('true'); + expect(screen.queryByTestId('alertsTab')).toBeTruthy(); + expect(screen.queryByTestId('alertsTab')?.getAttribute('aria-selected')).toBe('false'); }); describe('when an APM SLO is loaded', () => { From dd46350cac23a8738452c6893a981d7d33abfcc0 Mon Sep 17 00:00:00 2001 From: "Quynh Nguyen (Quinn)" <43350163+qn895@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:16:18 -0500 Subject: [PATCH 37/60] [ML] Add option to Reauthorize transform in Management page (#154736) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../api_schemas/reauthorize_transforms.ts | 14 + .../privilege/has_privilege_factory.test.ts | 3 + .../common/privilege/has_privilege_factory.ts | 14 + .../transform/common/types/transform_stats.ts | 1 + .../common/utils/transform_api_key.ts | 41 +++ .../app/common/reauthorization_utils.ts | 22 ++ .../transform/public/app/hooks/use_api.ts | 16 + .../app/hooks/use_reauthorize_transform.tsx | 81 ++++++ .../components/action_reauthorize/index.ts | 10 + .../reauthorize_action_modal.tsx | 64 ++++ .../reauthorize_action_name.tsx | 84 ++++++ .../sort_transforms_to_reauthorize.test.ts | 108 +++++++ .../sort_transforms_to_reauthorize.ts | 42 +++ .../use_reauthorize_action.tsx | 76 +++++ .../transform_list/transform_list.tsx | 24 ++ .../transform_list/use_actions.test.tsx | 1 + .../components/transform_list/use_actions.tsx | 5 +- .../components/transform_list/use_columns.tsx | 44 ++- .../transform_management_section.tsx | 50 +++- x-pack/plugins/transform/server/plugin.ts | 3 +- .../transform/server/routes/api/transforms.ts | 106 ++++++- x-pack/plugins/transform/server/types.ts | 1 + .../api_integration/apis/transform/index.ts | 1 + .../apis/transform/reauthorize_transforms.ts | 274 ++++++++++++++++++ .../transform/start_reset_delete/starting.ts | 8 +- .../test/functional/services/transform/api.ts | 40 ++- .../services/transform/security_common.ts | 47 +++ 27 files changed, 1160 insertions(+), 20 deletions(-) create mode 100644 x-pack/plugins/transform/common/api_schemas/reauthorize_transforms.ts create mode 100644 x-pack/plugins/transform/common/utils/transform_api_key.ts create mode 100644 x-pack/plugins/transform/public/app/common/reauthorization_utils.ts create mode 100644 x-pack/plugins/transform/public/app/hooks/use_reauthorize_transform.tsx create mode 100644 x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/index.ts create mode 100644 x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_modal.tsx create mode 100644 x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_name.tsx create mode 100644 x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.test.ts create mode 100644 x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.ts create mode 100644 x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/use_reauthorize_action.tsx create mode 100644 x-pack/test/api_integration/apis/transform/reauthorize_transforms.ts diff --git a/x-pack/plugins/transform/common/api_schemas/reauthorize_transforms.ts b/x-pack/plugins/transform/common/api_schemas/reauthorize_transforms.ts new file mode 100644 index 0000000000000..463366aa06826 --- /dev/null +++ b/x-pack/plugins/transform/common/api_schemas/reauthorize_transforms.ts @@ -0,0 +1,14 @@ +/* + * 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 { TypeOf } from '@kbn/config-schema'; + +import { transformIdsSchema, CommonResponseStatusSchema } from './common'; + +export const reauthorizeTransformsRequestSchema = transformIdsSchema; +export type ReauthorizeTransformsRequestSchema = TypeOf; +export type ReauthorizeTransformsResponseSchema = CommonResponseStatusSchema; diff --git a/x-pack/plugins/transform/common/privilege/has_privilege_factory.test.ts b/x-pack/plugins/transform/common/privilege/has_privilege_factory.test.ts index c00e79220e5b0..e9fa6cd7bc6d7 100644 --- a/x-pack/plugins/transform/common/privilege/has_privilege_factory.test.ts +++ b/x-pack/plugins/transform/common/privilege/has_privilege_factory.test.ts @@ -71,6 +71,7 @@ describe('has_privilege_factory', () => { canDeleteTransform: true, canGetTransform: true, canPreviewTransform: true, + canReauthorizeTransform: true, canResetTransform: true, canScheduleNowTransform: true, canStartStopTransform: true, @@ -96,6 +97,7 @@ describe('has_privilege_factory', () => { canDeleteTransform: false, canGetTransform: true, canPreviewTransform: false, + canReauthorizeTransform: false, canResetTransform: false, canScheduleNowTransform: false, canStartStopTransform: false, @@ -124,6 +126,7 @@ describe('has_privilege_factory', () => { canGetTransform: false, canPreviewTransform: false, canResetTransform: false, + canReauthorizeTransform: false, canScheduleNowTransform: false, canStartStopTransform: false, canUseTransformAlerts: false, diff --git a/x-pack/plugins/transform/common/privilege/has_privilege_factory.ts b/x-pack/plugins/transform/common/privilege/has_privilege_factory.ts index f9afe59355c01..972f8e727f50d 100644 --- a/x-pack/plugins/transform/common/privilege/has_privilege_factory.ts +++ b/x-pack/plugins/transform/common/privilege/has_privilege_factory.ts @@ -17,6 +17,7 @@ export interface TransformCapabilities { canDeleteTransform: boolean; canPreviewTransform: boolean; canCreateTransform: boolean; + canReauthorizeTransform: boolean; canScheduleNowTransform: boolean; canStartStopTransform: boolean; canCreateTransformAlerts: boolean; @@ -30,6 +31,7 @@ export const INITIAL_CAPABILITIES = Object.freeze({ canDeleteTransform: false, canPreviewTransform: false, canCreateTransform: false, + canReauthorizeTransform: false, canScheduleNowTransform: false, canStartStopTransform: false, canCreateTransformAlerts: false, @@ -130,6 +132,8 @@ export const getPrivilegesAndCapabilities = ( capabilities.canScheduleNowTransform = capabilities.canStartStopTransform; + capabilities.canReauthorizeTransform = capabilities.canStartStopTransform; + return { privileges: privilegesResult, capabilities }; }; // create the text for button's tooltips if the user @@ -170,6 +174,16 @@ export function createCapabilityFailureMessage( } ); break; + + case 'canReauthorizeTransform': + message = i18n.translate( + 'xpack.transform.capability.noPermission.reauthorizeTransformTooltip', + { + defaultMessage: 'You do not have permission to reauthorize transforms.', + } + ); + break; + case 'canDeleteTransform': message = i18n.translate('xpack.transform.capability.noPermission.deleteTransformTooltip', { defaultMessage: 'You do not have permission to delete transforms.', diff --git a/x-pack/plugins/transform/common/types/transform_stats.ts b/x-pack/plugins/transform/common/types/transform_stats.ts index c1194ea8f1018..4134662552a90 100644 --- a/x-pack/plugins/transform/common/types/transform_stats.ts +++ b/x-pack/plugins/transform/common/types/transform_stats.ts @@ -11,6 +11,7 @@ import { type TransformHealth, type TransformState, TRANSFORM_STATE } from '../c import { TransformId } from './transform'; export interface TransformHealthIssue { + type: string; issue: string; details?: string; count: number; diff --git a/x-pack/plugins/transform/common/utils/transform_api_key.ts b/x-pack/plugins/transform/common/utils/transform_api_key.ts new file mode 100644 index 0000000000000..66187ef318ced --- /dev/null +++ b/x-pack/plugins/transform/common/utils/transform_api_key.ts @@ -0,0 +1,41 @@ +/* + * 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 { GrantAPIKeyResult } from '@kbn/security-plugin/server'; +import type { SecurityCreateApiKeyResponse } from '@elastic/elasticsearch/lib/api/types'; +import { isPopulatedObject } from '@kbn/ml-is-populated-object'; + +export interface TransformAPIKey extends GrantAPIKeyResult { + /** + * Generated encoded API key used for headers + */ + encoded: string; +} + +export interface SecondaryAuthorizationHeader { + headers?: { 'es-secondary-authorization': string | string[] }; +} + +export function isTransformApiKey(arg: any): arg is TransformAPIKey { + return isPopulatedObject(arg, ['api_key', 'encoded']) && typeof arg.encoded === 'string'; +} + +export function generateTransformSecondaryAuthHeaders( + apiKeyWithCurrentUserPermission: + | GrantAPIKeyResult + | null + | undefined + | SecurityCreateApiKeyResponse +): SecondaryAuthorizationHeader | undefined { + return isTransformApiKey(apiKeyWithCurrentUserPermission) + ? { + headers: { + 'es-secondary-authorization': `ApiKey ${apiKeyWithCurrentUserPermission.encoded}`, + }, + } + : undefined; +} diff --git a/x-pack/plugins/transform/public/app/common/reauthorization_utils.ts b/x-pack/plugins/transform/public/app/common/reauthorization_utils.ts new file mode 100644 index 0000000000000..d32383ccd683e --- /dev/null +++ b/x-pack/plugins/transform/public/app/common/reauthorization_utils.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 { isPopulatedObject } from '@kbn/ml-is-populated-object'; +import type { TransformHealthIssue } from '../../../common/types/transform_stats'; +import { TRANSFORM_HEALTH } from '../../../common/constants'; +import type { TransformListRow } from './transform_list'; + +export const needsReauthorization = (transform: Partial) => { + return ( + isPopulatedObject(transform.config?.authorization, ['api_key']) && + isPopulatedObject(transform.stats) && + transform.stats.health.status === TRANSFORM_HEALTH.red && + transform.stats.health.issues?.find( + (issue) => (issue as TransformHealthIssue).issue === 'Privileges check failed' + ) !== undefined + ); +}; diff --git a/x-pack/plugins/transform/public/app/hooks/use_api.ts b/x-pack/plugins/transform/public/app/hooks/use_api.ts index 44df1941d8d9f..3364ed58d5af6 100644 --- a/x-pack/plugins/transform/public/app/hooks/use_api.ts +++ b/x-pack/plugins/transform/public/app/hooks/use_api.ts @@ -13,6 +13,10 @@ import type { IHttpFetchError } from '@kbn/core-http-browser'; import { KBN_FIELD_TYPES } from '@kbn/field-types'; +import { + ReauthorizeTransformsRequestSchema, + ReauthorizeTransformsResponseSchema, +} from '../../../common/api_schemas/reauthorize_transforms'; import type { GetTransformsAuditMessagesResponseSchema } from '../../../common/api_schemas/audit_messages'; import type { DeleteTransformsRequestSchema, @@ -166,6 +170,18 @@ export const useApi = () => { return e; } }, + async reauthorizeTransforms( + reqBody: ReauthorizeTransformsRequestSchema + ): Promise { + try { + return await http.post(`${API_BASE_PATH}reauthorize_transforms`, { + body: JSON.stringify(reqBody), + }); + } catch (e) { + return e; + } + }, + async resetTransforms( reqBody: ResetTransformsRequestSchema ): Promise { diff --git a/x-pack/plugins/transform/public/app/hooks/use_reauthorize_transform.tsx b/x-pack/plugins/transform/public/app/hooks/use_reauthorize_transform.tsx new file mode 100644 index 0000000000000..af6018c35cecc --- /dev/null +++ b/x-pack/plugins/transform/public/app/hooks/use_reauthorize_transform.tsx @@ -0,0 +1,81 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React from 'react'; + +import { i18n } from '@kbn/i18n'; + +import { toMountPoint } from '@kbn/kibana-react-plugin/public'; + +import type { StartTransformsRequestSchema } from '../../../common/api_schemas/start_transforms'; +import { isStartTransformsResponseSchema } from '../../../common/api_schemas/type_guards'; + +import { getErrorMessage } from '../../../common/utils/errors'; + +import { useAppDependencies, useToastNotifications } from '../app_dependencies'; +import { refreshTransformList$, REFRESH_TRANSFORM_LIST_STATE } from '../common'; +import { ToastNotificationText } from '../components'; + +import { useApi } from './use_api'; + +export const useReauthorizeTransforms = () => { + const { overlays, theme } = useAppDependencies(); + const toastNotifications = useToastNotifications(); + const api = useApi(); + + return async (transformsInfo: StartTransformsRequestSchema) => { + const results = await api.reauthorizeTransforms(transformsInfo); + + if (!isStartTransformsResponseSchema(results)) { + toastNotifications.addDanger({ + title: i18n.translate( + 'xpack.transform.stepCreateForm.reauthorizeTransformResponseSchemaErrorMessage', + { + defaultMessage: 'An error occurred calling the reauthorize transforms request.', + } + ), + text: toMountPoint( + , + { theme$: theme.theme$ } + ), + }); + return; + } + + for (const transformId in results) { + // hasOwnProperty check to ensure only properties on object itself, and not its prototypes + if (results.hasOwnProperty(transformId)) { + const result = results[transformId]; + if (result.success === true) { + toastNotifications.addSuccess( + i18n.translate('xpack.transform.transformList.reauthorizeTransformSuccessMessage', { + defaultMessage: 'Request to reauthorize transform {transformId} acknowledged.', + values: { transformId }, + }) + ); + } else { + toastNotifications.addError(new Error(JSON.stringify(result.error!.caused_by, null, 2)), { + title: i18n.translate( + 'xpack.transform.transformList.reauthorizeTransformErrorMessage', + { + defaultMessage: 'An error occurred reauthorizing the transform {transformId}', + values: { transformId }, + } + ), + toastMessage: result.error!.reason, + }); + } + } + } + + refreshTransformList$.next(REFRESH_TRANSFORM_LIST_STATE.REFRESH); + }; +}; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/index.ts b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/index.ts new file mode 100644 index 0000000000000..bbbe18d9f6acf --- /dev/null +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/index.ts @@ -0,0 +1,10 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export { useReauthorizeAction } from './use_reauthorize_action'; +export { ReauthorizeActionModal } from './reauthorize_action_modal'; +export { isReauthorizeActionDisabled, ReauthorizeActionName } from './reauthorize_action_name'; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_modal.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_modal.tsx new file mode 100644 index 0000000000000..9e848fdd8323e --- /dev/null +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_modal.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, { FC } from 'react'; +import { i18n } from '@kbn/i18n'; +import { EUI_MODAL_CONFIRM_BUTTON, EuiConfirmModal } from '@elastic/eui'; +import type { ReauthorizeAction } from './use_reauthorize_action'; + +export const ReauthorizeActionModal: FC = ({ + closeModal, + items, + reauthorizeAndCloseModal, +}) => { + const isBulkAction = items.length > 1; + + const bulkReauthorizeModalTitle = i18n.translate( + 'xpack.transform.transformList.bulkReauthorizeModalTitle', + { + defaultMessage: 'Reauthorize {count} {count, plural, one {transform} other {transforms}}?', + values: { count: items && items.length }, + } + ); + const reauthorizeModalTitle = i18n.translate( + 'xpack.transform.transformList.reauthorizeModalTitle', + { + defaultMessage: 'Reauthorize {transformId}?', + values: { transformId: items[0] && items[0].config.id }, + } + ); + + return ( + +

    + {i18n.translate('xpack.transform.transformList.reauthorizeModalBody', { + defaultMessage: + 'Your current roles are used to update and start the transform. Starting a transform increases search and indexing load in your cluster. If excessive load is experienced, stop the transform.', + })} +

    + + ); +}; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_name.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_name.tsx new file mode 100644 index 0000000000000..e07ae03ec46b0 --- /dev/null +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/reauthorize_action_name.tsx @@ -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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import React, { FC, useContext } from 'react'; +import { i18n } from '@kbn/i18n'; +import { EuiToolTip, EuiText } from '@elastic/eui'; +import { needsReauthorization } from '../../../../common/reauthorization_utils'; +import { + AuthorizationContext, + createCapabilityFailureMessage, +} from '../../../../lib/authorization'; +import { TransformListRow } from '../../../../common'; + +export const reauthorizeActionNameText = i18n.translate( + 'xpack.transform.transformList.reauthorizeActionNameText', + { + defaultMessage: 'Reauthorize', + } +); + +export const isReauthorizeActionDisabled = ( + items: TransformListRow[], + canStartStopTransform: boolean, + transformNodes: number +) => { + return ( + !canStartStopTransform || + items.length === 0 || + transformNodes === 0 || + !items.some(needsReauthorization) + ); +}; + +export interface ReauthorizeActionNameProps { + items: TransformListRow[]; + forceDisable?: boolean; + transformNodes: number; +} +export const ReauthorizeActionName: FC = ({ + items, + forceDisable, + transformNodes, +}) => { + const { canStartStopTransform } = useContext(AuthorizationContext).capabilities; + + // Disable start for batch transforms which have completed. + const someNeedsReauthorization = items.some(needsReauthorization); + + const actionIsDisabled = isReauthorizeActionDisabled( + items, + canStartStopTransform, + transformNodes + ); + + let content: string | undefined; + if (actionIsDisabled && items.length > 0) { + if (!canStartStopTransform && someNeedsReauthorization) { + content = createCapabilityFailureMessage('canReauthorizeTransform'); + } + if (!someNeedsReauthorization) { + content = i18n.translate( + 'xpack.transform.transformList.reauthorizeBulkActionDisabledToolTipContent', + { + defaultMessage: 'One or more selected transforms must require reauthorization.', + } + ); + } + } + + const text = {reauthorizeActionNameText}; + if ((forceDisable === true || actionIsDisabled) && content !== undefined) { + return ( + + {text} + + ); + } + + return <>{text}; +}; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.test.ts b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.test.ts new file mode 100644 index 0000000000000..3c0d1b7ed7bde --- /dev/null +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.test.ts @@ -0,0 +1,108 @@ +/* + * 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 { sortTransformsToReauthorize } from './sort_transforms_to_reauthorize'; + +describe('sortTransformsToReauthorize', () => { + test('should work with multiple transforms with or without config or _meta defined', () => { + const transforms = [ + { + id: 'transform0', + config: {}, + }, + { + id: 'transformA-2', + config: { + _meta: { + run_as_kibana_system: false, + managed_by: 'fleet', + managed: true, + order: 2, + package: { + name: 'packageA', + }, + installed_by: 'transform_user', + }, + }, + }, + { + id: 'transformA-0', + config: { + _meta: { + run_as_kibana_system: false, + managed_by: 'fleet', + managed: true, + package: { + name: 'packageA', + }, + installed_by: 'transform_user', + }, + }, + }, + { + id: 'transformB-2', + config: { + _meta: { + run_as_kibana_system: false, + managed_by: 'fleet', + managed: true, + order: 2, + package: { + name: 'packageB', + }, + installed_by: 'transform_user', + }, + }, + }, + { + id: 'transformB-1', + config: { + _meta: { + run_as_kibana_system: false, + managed_by: 'fleet', + managed: true, + order: 1, + package: { + name: 'packageB', + }, + installed_by: 'transform_user', + }, + }, + }, + ]; + // @ts-ignore transforms is partial of TransformListRow + const { transformIds, shouldInstallSequentially } = sortTransformsToReauthorize(transforms); + expect(transformIds.map((t) => t.id)).toEqual([ + 'transform0', + 'transformA-0', + 'transformA-2', + 'transformB-1', + 'transformB-2', + ]); + expect(shouldInstallSequentially).toEqual(true); + }); + + test('should return shouldInstallSequentially: false if none of the transforms have order specified', () => { + const transforms = [ + { + id: 'transform3', + config: {}, + }, + { + id: 'transform2', + config: {}, + }, + { + id: 'transform1', + config: {}, + }, + ]; + // @ts-ignore transforms is partial of TransformListRow + const { transformIds, shouldInstallSequentially } = sortTransformsToReauthorize(transforms); + expect(transformIds.map((t) => t.id)).toEqual(['transform3', 'transform2', 'transform1']); + expect(shouldInstallSequentially).toEqual(false); + }); +}); diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.ts b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.ts new file mode 100644 index 0000000000000..00803929d2952 --- /dev/null +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/sort_transforms_to_reauthorize.ts @@ -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 { isPopulatedObject } from '@kbn/ml-is-populated-object'; +import { sortBy } from 'lodash'; +import { TransformListRow } from '../../../../common'; + +// For transforms, some might be part of a integration package +// A transform might be dependent on the results of another transform +// If transforms have _meta.order specified, install sequentially (sort by package and install order) +export const sortTransformsToReauthorize = (transforms: TransformListRow[]) => { + let shouldInstallSequentially = false; + const mappedTransforms = transforms.map((t) => { + let packageName = ''; + let order = Number.MIN_VALUE; + if (isPopulatedObject(t?.config?._meta, ['order'])) { + if (typeof t.config._meta.order === 'number') { + shouldInstallSequentially = true; + order = t?.config?._meta.order; + } + if ( + isPopulatedObject(t.config._meta.package, ['name']) && + typeof t.config._meta.package.name === 'string' + ) { + packageName = t.config._meta.package.name; + } + } + + return { id: t.id, order, packageName }; + }); + + return { + transformIds: shouldInstallSequentially + ? sortBy(mappedTransforms, ['packageName', 'order']).map((t) => ({ id: t.id })) + : mappedTransforms.map((t) => ({ id: t.id })), + shouldInstallSequentially, + }; +}; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/use_reauthorize_action.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/use_reauthorize_action.tsx new file mode 100644 index 0000000000000..086f5451d53be --- /dev/null +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/action_reauthorize/use_reauthorize_action.tsx @@ -0,0 +1,76 @@ +/* + * 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, { useContext, useMemo, useState } from 'react'; + +import { sortTransformsToReauthorize } from './sort_transforms_to_reauthorize'; +import { needsReauthorization } from '../../../../common/reauthorization_utils'; +import { useReauthorizeTransforms } from '../../../../hooks/use_reauthorize_transform'; +import { + isReauthorizeActionDisabled, + ReauthorizeActionName, + reauthorizeActionNameText, +} from './reauthorize_action_name'; + +import { TransformListAction, TransformListRow } from '../../../../common'; +import { AuthorizationContext } from '../../../../lib/authorization'; + +export type ReauthorizeAction = ReturnType; +export const useReauthorizeAction = (forceDisable: boolean, transformNodes: number) => { + const { canStartStopTransform } = useContext(AuthorizationContext).capabilities; + + const reauthorizeTransforms = useReauthorizeTransforms(); + + const [isModalVisible, setModalVisible] = useState(false); + const [items, setItems] = useState([]); + + const closeModal = () => setModalVisible(false); + + const reauthorizeAndCloseModal = () => { + setModalVisible(false); + const { transformIds } = sortTransformsToReauthorize(items); + reauthorizeTransforms(transformIds); + }; + + const openModal = (newItems: TransformListRow[]) => { + if (Array.isArray(newItems)) { + setItems(newItems); + setModalVisible(true); + } + }; + + const action: TransformListAction = useMemo( + () => ({ + name: (item: TransformListRow) => ( + + ), + available: (item: TransformListRow) => needsReauthorization(item), + enabled: (item: TransformListRow) => + !isReauthorizeActionDisabled([item], canStartStopTransform, transformNodes), + description: reauthorizeActionNameText, + icon: 'alert', + type: 'icon', + color: 'warning', + onClick: (item: TransformListRow) => openModal([item]), + 'data-test-subj': 'transformActionReauthorize', + }), + [canStartStopTransform, forceDisable, transformNodes] + ); + + return { + action, + closeModal, + isModalVisible, + items, + openModal, + reauthorizeAndCloseModal, + }; +}; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/transform_list.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/transform_list.tsx index 7843516bc5a6e..e6c279e56f3c3 100644 --- a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/transform_list.tsx +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/transform_list.tsx @@ -24,6 +24,12 @@ import { EuiSearchBarProps, } from '@elastic/eui'; +import { + isReauthorizeActionDisabled, + ReauthorizeActionModal, + ReauthorizeActionName, + useReauthorizeAction, +} from '../action_reauthorize'; import type { TransformId } from '../../../../../../common/types/transform'; import { @@ -108,6 +114,7 @@ export const TransformList: FC = ({ const [isActionsMenuOpen, setIsActionsMenuOpen] = useState(false); const bulkStartAction = useStartAction(false, transformNodes); const bulkDeleteAction = useDeleteAction(false); + const bulkReauthorizeAction = useReauthorizeAction(false, transformNodes); const bulkResetAction = useResetAction(false); const bulkStopAction = useStopAction(false); const bulkScheduleNowAction = useScheduleNowAction(false, transformNodes); @@ -221,6 +228,20 @@ export const TransformList: FC = ({
    , +
    + { + bulkReauthorizeAction.openModal(transformSelection); + }} + disabled={isReauthorizeActionDisabled( + transformSelection, + capabilities.canStartStopTransform, + transformNodes + )} + > + + +
    ,
    { @@ -325,6 +346,9 @@ export const TransformList: FC = ({ {/* Bulk Action Modals */} {bulkStartAction.isModalVisible && } {bulkDeleteAction.isModalVisible && } + {bulkReauthorizeAction.isModalVisible && ( + + )} {bulkResetAction.isModalVisible && } {bulkStopAction.isModalVisible && } diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.test.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.test.tsx index 4c1e34583ce5a..d620a60e7a861 100644 --- a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.test.tsx +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.test.tsx @@ -34,6 +34,7 @@ describe('Transform: Transform List Actions', () => { 'transformActionEdit', 'transformActionClone', 'transformActionDelete', + 'transformActionReauthorize', 'transformActionReset', ]); }); diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.tsx index 26ee8b9fd9111..b46628aeb4eff 100644 --- a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.tsx +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_actions.tsx @@ -9,6 +9,7 @@ import React from 'react'; import { EuiTableActionsColumnType } from '@elastic/eui'; +import { ReauthorizeActionModal, useReauthorizeAction } from '../action_reauthorize'; import { TransformListRow } from '../../../../common'; import { useCloneAction } from '../action_clone'; @@ -37,6 +38,7 @@ export const useActions = ({ const deleteAction = useDeleteAction(forceDisable); const discoverAction = useDiscoverAction(forceDisable); const editAction = useEditAction(forceDisable, transformNodes); + const reauthorizeAction = useReauthorizeAction(forceDisable, transformNodes); const resetAction = useResetAction(forceDisable); const scheduleNowAction = useScheduleNowAction(forceDisable, transformNodes); const startAction = useStartAction(forceDisable, transformNodes); @@ -49,7 +51,7 @@ export const useActions = ({ {resetAction.isModalVisible && } {startAction.isModalVisible && } {stopAction.isModalVisible && } - + {reauthorizeAction.isModalVisible && } {deleteAction.isModalVisible && } @@ -63,6 +65,7 @@ export const useActions = ({ editAction.action, cloneAction.action, deleteAction.action, + reauthorizeAction.action, resetAction.action, ], }; diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_columns.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_columns.tsx index cf3ffa98b0334..db77b3e306da2 100644 --- a/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_columns.tsx +++ b/x-pack/plugins/transform/public/app/sections/transform_management/components/transform_list/use_columns.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import React from 'react'; +import React, { useContext } from 'react'; import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import { @@ -24,6 +24,8 @@ import { EuiIcon, } from '@elastic/eui'; +import { AuthorizationContext } from '../../../../lib/authorization'; +import { needsReauthorization } from '../../../../common/reauthorization_utils'; import { isLatestTransform, isPivotTransform, @@ -38,12 +40,20 @@ import { isManagedTransform } from '../../../../common/managed_transforms_utils' import { TransformHealthColoredDot } from './transform_health_colored_dot'; import { TransformTaskStateBadge } from './transform_task_state_badge'; +const TRANSFORM_INSUFFICIENT_PERMISSIONS_MSG = i18n.translate( + 'xpack.transform.transformList.needsReauthorizationBadge.insufficientPermissions', + { + defaultMessage: 'This transform was created with insufficient permissions.', + } +); export const useColumns = ( expandedRowItemIds: TransformId[], setExpandedRowItemIds: React.Dispatch>, transformNodes: number, transformSelection: TransformListRow[] ) => { + const { canStartStopTransform } = useContext(AuthorizationContext).capabilities; + const { actions, modals } = useActions({ forceDisable: transformSelection.length > 0, transformNodes, @@ -150,7 +160,31 @@ export const useColumns = ( ), width: '30px', render: (item) => { - return Array.isArray(item.alerting_rules) ? ( + const needsReauth = needsReauthorization(item); + + const actionMsg = canStartStopTransform + ? i18n.translate( + 'xpack.transform.transformList.needsReauthorizationBadge.reauthorizeTooltip', + { + defaultMessage: 'Reauthorize to start transforms.', + } + ) + : i18n.translate( + 'xpack.transform.transformList.needsReauthorizationBadge.contactAdminTooltip', + { + defaultMessage: 'Contact your administrator to request the required permissions.', + } + ); + const needsReauthTooltipIcon = needsReauth ? ( + <> + + + +   + + ) : null; + + const alertingRulesTooltipIcon = Array.isArray(item.alerting_rules) ? ( ); + return ( + <> + {needsReauthTooltipIcon} + {alertingRulesTooltipIcon} + + ); }, }, { diff --git a/x-pack/plugins/transform/public/app/sections/transform_management/transform_management_section.tsx b/x-pack/plugins/transform/public/app/sections/transform_management/transform_management_section.tsx index 6e2c1cc612235..3961f83ecffd0 100644 --- a/x-pack/plugins/transform/public/app/sections/transform_management/transform_management_section.tsx +++ b/x-pack/plugins/transform/public/app/sections/transform_management/transform_management_section.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import React, { FC, useEffect, useState } from 'react'; +import React, { FC, useContext, useEffect, useMemo, useState } from 'react'; import { FormattedMessage } from '@kbn/i18n-react'; @@ -23,6 +23,8 @@ import { EuiCallOut, EuiButton, } from '@elastic/eui'; +import { i18n } from '@kbn/i18n'; +import { needsReauthorization } from '../../common/reauthorization_utils'; import { APP_GET_TRANSFORM_CLUSTER_PRIVILEGES, TRANSFORM_STATE, @@ -32,7 +34,7 @@ import { useRefreshTransformList, TransformListRow } from '../../common'; import { useDocumentationLinks } from '../../hooks/use_documentation_links'; import { useDeleteTransforms, useGetTransforms } from '../../hooks'; import { RedirectToCreateTransform } from '../../common/navigation'; -import { PrivilegesWrapper } from '../../lib/authorization'; +import { AuthorizationContext, PrivilegesWrapper } from '../../lib/authorization'; import { breadcrumbService, docTitleService, BREADCRUMB_SECTION } from '../../services/navigation'; import { useRefreshInterval } from './components/transform_list/use_refresh_interval'; @@ -77,6 +79,48 @@ export const TransformManagement: FC = () => { // Call useRefreshInterval() after the subscription above is set up. useRefreshInterval(setBlockRefresh); + const { canStartStopTransform } = useContext(AuthorizationContext).capabilities; + + const unauthorizedTransformsWarning = useMemo(() => { + const unauthorizedCnt = transforms.filter((t) => needsReauthorization(t)).length; + + if (!unauthorizedCnt) return null; + + const insufficientPermissionsMsg = i18n.translate( + 'xpack.transform.transformList.unauthorizedTransformsCallout.insufficientPermissionsMsg', + { + defaultMessage: + '{unauthorizedCnt, plural, one {A transform was created with insufficient permissions.} other {# transforms were created with insufficient permissions.}}', + values: { unauthorizedCnt }, + } + ); + const actionMsg = canStartStopTransform + ? i18n.translate( + 'xpack.transform.transformList.unauthorizedTransformsCallout.reauthorizeMsg', + { + defaultMessage: + 'Reauthorize to start {unauthorizedCnt, plural, one {transform} other {# transforms}}.', + values: { unauthorizedCnt }, + } + ) + : i18n.translate( + 'xpack.transform.transformList.unauthorizedTransformsCallout.contactAdminMsg', + { + defaultMessage: 'Contact your administrator to request the required permissions.', + } + ); + return ( + <> + + + + ); + }, [transforms, canStartStopTransform]); + const [isSearchSelectionVisible, setIsSearchSelectionVisible] = useState(false); const [savedObjectId, setSavedObjectId] = useState(null); @@ -131,6 +175,8 @@ export const TransformManagement: FC = () => { {!isInitialized && } {isInitialized && ( <> + {unauthorizedTransformsWarning} + {typeof errorMessage !== 'undefined' && ( diff --git a/x-pack/plugins/transform/server/plugin.ts b/x-pack/plugins/transform/server/plugin.ts index ab2bb0769e002..95d80f3545c42 100644 --- a/x-pack/plugins/transform/server/plugin.ts +++ b/x-pack/plugins/transform/server/plugin.ts @@ -58,7 +58,7 @@ export class TransformServerPlugin implements Plugin<{}, void, any, any> { ], }); - getStartServices().then(([coreStart, { dataViews }]) => { + getStartServices().then(([coreStart, { dataViews, security: securityStart }]) => { const license = new License({ pluginId: PLUGIN.id, minimumLicenseType: PLUGIN.minimumLicenseType, @@ -75,6 +75,7 @@ export class TransformServerPlugin implements Plugin<{}, void, any, any> { license, dataViews, coreStart, + security: securityStart, }); }); diff --git a/x-pack/plugins/transform/server/routes/api/transforms.ts b/x-pack/plugins/transform/server/routes/api/transforms.ts index c4aee67bf4d45..d19d9eb1a2963 100644 --- a/x-pack/plugins/transform/server/routes/api/transforms.ts +++ b/x-pack/plugins/transform/server/routes/api/transforms.ts @@ -16,6 +16,13 @@ import { } from '@kbn/core/server'; import { DataViewsService } from '@kbn/data-views-plugin/common'; +import type { TransportRequestOptions } from '@elastic/elasticsearch'; +import { generateTransformSecondaryAuthHeaders } from '../../../common/utils/transform_api_key'; +import { + reauthorizeTransformsRequestSchema, + ReauthorizeTransformsRequestSchema, + ReauthorizeTransformsResponseSchema, +} from '../../../common/api_schemas/reauthorize_transforms'; import { TRANSFORM_STATE } from '../../../common/constants'; import { transformIdParamSchema, @@ -72,6 +79,7 @@ import { transformHealthServiceProvider } from '../../lib/alerting/transform_hea enum TRANSFORM_ACTIONS { DELETE = 'delete', + REAUTHORIZE = 'reauthorize', RESET = 'reset', SCHEDULE_NOW = 'schedule_now', STOP = 'stop', @@ -79,7 +87,7 @@ enum TRANSFORM_ACTIONS { } export function registerTransformsRoutes(routeDependencies: RouteDependencies) { - const { router, license, coreStart, dataViews } = routeDependencies; + const { router, license, coreStart, dataViews, security: securityStart } = routeDependencies; /** * @apiGroup Transforms * @@ -295,6 +303,61 @@ export function registerTransformsRoutes(routeDependencies: RouteDependencies) { ) ); + /** + * @apiGroup Reauthorize transforms with API key generated from currently logged in user + * @api {post} /api/transform/reauthorize_transforms Post reauthorize transforms + * @apiName Reauthorize Transforms + * @apiDescription Reauthorize transforms by generating an API Key for current user + * and update transform's es-secondary-authorization headers with the generated key, + * then start the transform. + * @apiSchema (body) reauthorizeTransformsRequestSchema + */ + router.post( + { + path: addBasePath('reauthorize_transforms'), + validate: { + body: reauthorizeTransformsRequestSchema, + }, + }, + license.guardApiRoute( + async (ctx, req, res) => { + try { + const transformsInfo = req.body; + const { elasticsearch } = coreStart; + const esClient = elasticsearch.client.asScoped(req).asCurrentUser; + + let apiKeyWithCurrentUserPermission; + + // If security is not enabled or available, user should not have the need to reauthorize + // in that case, start anyway + if (securityStart) { + apiKeyWithCurrentUserPermission = await securityStart.authc.apiKeys.grantAsInternalUser( + req, + { + name: `auto-generated-transform-api-key`, + role_descriptors: {}, + } + ); + } + const secondaryAuth = generateTransformSecondaryAuthHeaders( + apiKeyWithCurrentUserPermission + ); + + const authorizedTransforms = await reauthorizeAndStartTransforms( + transformsInfo, + esClient, + { + ...(secondaryAuth ? secondaryAuth : {}), + } + ); + return res.ok({ body: authorizedTransforms }); + } catch (e) { + return res.customError(wrapError(wrapEsError(e))); + } + } + ) + ); + /** * @apiGroup Transforms * @@ -860,3 +923,44 @@ async function scheduleNowTransforms( } return results; } + +async function reauthorizeAndStartTransforms( + transformsInfo: ReauthorizeTransformsRequestSchema, + esClient: ElasticsearchClient, + options?: TransportRequestOptions +) { + const results: ReauthorizeTransformsResponseSchema = {}; + + for (const transformInfo of transformsInfo) { + const transformId = transformInfo.id; + try { + await esClient.transform.updateTransform( + { + body: {}, + transform_id: transformId, + }, + options ?? {} + ); + + await esClient.transform.startTransform( + { + transform_id: transformId, + }, + { ignore: [409] } + ); + + results[transformId] = { success: true }; + } catch (e) { + if (isRequestTimeout(e)) { + return fillResultsWithTimeouts({ + results, + id: transformId, + items: transformsInfo, + action: TRANSFORM_ACTIONS.REAUTHORIZE, + }); + } + results[transformId] = { success: false, error: e.meta.body.error }; + } + } + return results; +} diff --git a/x-pack/plugins/transform/server/types.ts b/x-pack/plugins/transform/server/types.ts index 012f819fce88f..6aa17d59db353 100644 --- a/x-pack/plugins/transform/server/types.ts +++ b/x-pack/plugins/transform/server/types.ts @@ -33,4 +33,5 @@ export interface RouteDependencies { license: License; coreStart: CoreStart; dataViews: DataViewsServerPluginStart; + security?: SecurityPluginStart; } diff --git a/x-pack/test/api_integration/apis/transform/index.ts b/x-pack/test/api_integration/apis/transform/index.ts index c665665b527d3..ad44dc1249e8e 100644 --- a/x-pack/test/api_integration/apis/transform/index.ts +++ b/x-pack/test/api_integration/apis/transform/index.ts @@ -29,6 +29,7 @@ export default function ({ getService, loadTestFile }: FtrProviderContext) { }); loadTestFile(require.resolve('./delete_transforms')); + loadTestFile(require.resolve('./reauthorize_transforms')); loadTestFile(require.resolve('./reset_transforms')); loadTestFile(require.resolve('./start_transforms')); loadTestFile(require.resolve('./stop_transforms')); diff --git a/x-pack/test/api_integration/apis/transform/reauthorize_transforms.ts b/x-pack/test/api_integration/apis/transform/reauthorize_transforms.ts new file mode 100644 index 0000000000000..274c1b42a4d07 --- /dev/null +++ b/x-pack/test/api_integration/apis/transform/reauthorize_transforms.ts @@ -0,0 +1,274 @@ +/* + * 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 { ReauthorizeTransformsRequestSchema } from '@kbn/transform-plugin/common/api_schemas/reauthorize_transforms'; +import expect from '@kbn/expect'; +import { TRANSFORM_STATE } from '@kbn/transform-plugin/common/constants'; +import type { SecurityCreateApiKeyResponse } from '@elastic/elasticsearch/lib/api/types'; +import { COMMON_REQUEST_HEADERS } from '../../../functional/services/ml/common_api'; +import { USER } from '../../../functional/services/transform/security_common'; + +import { FtrProviderContext } from '../../ftr_provider_context'; + +import { asyncForEach, generateDestIndex, generateTransformConfig } from './common'; + +export default ({ getService }: FtrProviderContext) => { + const esArchiver = getService('esArchiver'); + const supertest = getService('supertestWithoutAuth'); + const transform = getService('transform'); + + // If transform was created with sufficient -> should still authorize and start + // If transform was created with insufficient -> should still authorize and start + + function getTransformIdByUser(username: USER) { + return `transform-by-${username}`; + } + + function generateHeaders(apiKey: SecurityCreateApiKeyResponse) { + return { + ...COMMON_REQUEST_HEADERS, + 'es-secondary-authorization': `ApiKey ${apiKey.encoded}`, + }; + } + + async function createTransform(transformId: string, headers: object) { + const config = generateTransformConfig(transformId, true); + await transform.api.createTransform(transformId, config, { + headers, + deferValidation: true, + }); + } + + async function cleanUpTransform(transformId: string) { + const destinationIndex = generateDestIndex(transformId); + + await transform.api.stopTransform(transformId); + await transform.api.cleanTransformIndices(); + await transform.api.deleteIndices(destinationIndex); + } + + describe('/api/transform/reauthorize_transforms', function () { + const apiKeysForTransformUsers = new Map(); + + async function expectUnauthorizedTransform(transformId: string, createdByUser: USER) { + const user = createdByUser; + const { body: getTransformBody } = await transform.api.getTransform(transformId); + const transformInfo = getTransformBody.transforms[0]; + const expectedApiKeyId = apiKeysForTransformUsers?.get(user)?.id; + + expect(typeof transformInfo.authorization.api_key).to.be('object'); + expect(transformInfo.authorization.api_key.id).to.eql( + expectedApiKeyId, + `Expected authorization api_key for ${transformId} to be ${expectedApiKeyId} (got ${JSON.stringify( + transformInfo.authorization.api_key + )})` + ); + + const stats = await transform.api.getTransformStats(transformId); + expect(stats.state).to.eql( + TRANSFORM_STATE.STOPPED, + `Expected transform state of ${transformId} to be '${TRANSFORM_STATE.STOPPED}' (got ${stats.state})` + ); + expect(stats.health.status).to.eql( + 'red', + `Expected transform health status of ${transformId} to be 'red' (got ${stats.health.status})` + ); + expect(stats.health.issues![0].type).to.eql( + 'privileges_check_failed', + `Expected transform health issue of ${transformId} to be 'privileges_check_failed' (got ${stats.health.status})` + ); + } + + async function expectAuthorizedTransform(transformId: string, createdByUser: USER) { + const { body: getTransformBody } = await transform.api.getTransform(transformId); + const transformInfo = getTransformBody.transforms[0]; + + const expectedApiKeyId = apiKeysForTransformUsers?.get(createdByUser)?.id; + expect(transformInfo.authorization.api_key.id).to.not.eql( + expectedApiKeyId, + `Expected authorization api_key for ${transformId} to not be ${expectedApiKeyId} (got ${JSON.stringify( + transformInfo.authorization.api_key + )})` + ); + const stats = await transform.api.getTransformStats(transformId); + expect(stats.health.status).to.eql( + 'green', + `Expected transform health status of ${transformId} to be 'green' (got ${stats.health.status})` + ); + } + + before(async () => { + await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/farequote'); + await transform.testResources.setKibanaTimeZoneToUTC(); + + const apiKeyForTransformUsers = + await transform.securityCommon.createApiKeyForTransformUsers(); + + apiKeyForTransformUsers.forEach(({ user, apiKey }) => + apiKeysForTransformUsers.set(user.name as USER, apiKey) + ); + }); + + after(async () => { + await transform.securityCommon.clearAllTransformApiKeys(); + }); + + describe('single transform reauthorize_transforms', function () { + const transformCreatedByViewerId = getTransformIdByUser(USER.TRANSFORM_VIEWER); + + beforeEach(async () => { + await createTransform( + transformCreatedByViewerId, + generateHeaders(apiKeysForTransformUsers.get(USER.TRANSFORM_VIEWER)!) + ); + }); + afterEach(async () => { + await cleanUpTransform(transformCreatedByViewerId); + }); + + it('should not reauthorize transform created by transform_viewer for transform_unauthorized', async () => { + const reqBody: ReauthorizeTransformsRequestSchema = [{ id: transformCreatedByViewerId }]; + const { body, status } = await supertest + .post(`/api/transform/reauthorize_transforms`) + .auth( + USER.TRANSFORM_UNAUTHORIZED, + transform.securityCommon.getPasswordForUser(USER.TRANSFORM_UNAUTHORIZED) + ) + .set(COMMON_REQUEST_HEADERS) + .send(reqBody); + transform.api.assertResponseStatusCode(200, status, body); + expect(body[transformCreatedByViewerId].success).to.eql( + false, + `Expected ${transformCreatedByViewerId} not to be authorized` + ); + expect(typeof body[transformCreatedByViewerId].error).to.be('object'); + + await expectUnauthorizedTransform(transformCreatedByViewerId, USER.TRANSFORM_VIEWER); + }); + + it('should not reauthorize transform created by transform_viewer for transform_viewer', async () => { + const reqBody: ReauthorizeTransformsRequestSchema = [{ id: transformCreatedByViewerId }]; + const { body, status } = await supertest + .post(`/api/transform/reauthorize_transforms`) + .auth( + USER.TRANSFORM_VIEWER, + transform.securityCommon.getPasswordForUser(USER.TRANSFORM_VIEWER) + ) + .set(COMMON_REQUEST_HEADERS) + .send(reqBody); + transform.api.assertResponseStatusCode(200, status, body); + expect(body[transformCreatedByViewerId].success).to.eql( + false, + `Expected ${transformCreatedByViewerId} not to be rauthorized` + ); + expect(typeof body[transformCreatedByViewerId].error).to.be('object'); + + await expectUnauthorizedTransform(transformCreatedByViewerId, USER.TRANSFORM_VIEWER); + }); + + it('should reauthorize transform created by transform_viewer with new api key of poweruser and start the transform', async () => { + const reqBody: ReauthorizeTransformsRequestSchema = [{ id: transformCreatedByViewerId }]; + const { body, status } = await supertest + .post(`/api/transform/reauthorize_transforms`) + .auth( + USER.TRANSFORM_POWERUSER, + transform.securityCommon.getPasswordForUser(USER.TRANSFORM_POWERUSER) + ) + .set(COMMON_REQUEST_HEADERS) + .send(reqBody); + transform.api.assertResponseStatusCode(200, status, body); + expect(body[transformCreatedByViewerId].success).to.eql( + true, + `Expected ${transformCreatedByViewerId} to be reauthorized` + ); + expect(typeof body[transformCreatedByViewerId].error).to.eql( + 'undefined', + `Expected ${transformCreatedByViewerId} to be reauthorized without error` + ); + await transform.api.waitForTransformState( + transformCreatedByViewerId, + TRANSFORM_STATE.STARTED + ); + + await expectAuthorizedTransform(transformCreatedByViewerId, USER.TRANSFORM_VIEWER); + }); + }); + + describe('single transform reauthorize_transforms with invalid transformId', function () { + it('should return 200 with error in response if invalid transformId', async () => { + const reqBody: ReauthorizeTransformsRequestSchema = [{ id: 'invalid_transform_id' }]; + const { body, status } = await supertest + .post(`/api/transform/reauthorize_transforms`) + .auth( + USER.TRANSFORM_POWERUSER, + transform.securityCommon.getPasswordForUser(USER.TRANSFORM_POWERUSER) + ) + .set(COMMON_REQUEST_HEADERS) + .send(reqBody); + transform.api.assertResponseStatusCode(200, status, body); + + expect(body.invalid_transform_id.success).to.eql(false); + expect(body.invalid_transform_id).to.have.property('error'); + }); + }); + + describe('bulk reauthorize_transforms', function () { + const reqBody: ReauthorizeTransformsRequestSchema = [ + USER.TRANSFORM_VIEWER, + USER.TRANSFORM_POWERUSER, + ].map((user) => ({ id: getTransformIdByUser(user) })); + const destinationIndices = reqBody.map((d) => generateDestIndex(d.id)); + + beforeEach(async () => { + await Promise.all( + [USER.TRANSFORM_VIEWER, USER.TRANSFORM_POWERUSER].map((user) => + createTransform( + getTransformIdByUser(user), + generateHeaders(apiKeysForTransformUsers.get(user)!) + ) + ) + ); + }); + + afterEach(async () => { + await asyncForEach(reqBody, async ({ id }: { id: string }, idx: number) => { + await transform.api.stopTransform(id); + }); + await transform.api.cleanTransformIndices(); + await asyncForEach(destinationIndices, async (destinationIndex: string) => { + await transform.api.deleteIndices(destinationIndex); + }); + }); + + it('should reauthorize multiple transforms for transform_poweruser, even if one of the transformIds is invalid', async () => { + const invalidTransformId = 'invalid_transform_id'; + + const { body, status } = await supertest + .post(`/api/transform/reauthorize_transforms`) + .auth( + USER.TRANSFORM_POWERUSER, + transform.securityCommon.getPasswordForUser(USER.TRANSFORM_POWERUSER) + ) + .set(COMMON_REQUEST_HEADERS) + .send([...reqBody, { id: invalidTransformId }]); + transform.api.assertResponseStatusCode(200, status, body); + + await expectAuthorizedTransform( + getTransformIdByUser(USER.TRANSFORM_VIEWER), + USER.TRANSFORM_VIEWER + ); + await expectAuthorizedTransform( + getTransformIdByUser(USER.TRANSFORM_POWERUSER), + USER.TRANSFORM_POWERUSER + ); + + expect(body[invalidTransformId].success).to.eql(false); + expect(body[invalidTransformId]).to.have.property('error'); + }); + }); + }); +}; diff --git a/x-pack/test/functional/apps/transform/start_reset_delete/starting.ts b/x-pack/test/functional/apps/transform/start_reset_delete/starting.ts index dc86cf7489530..2cccd4525856d 100644 --- a/x-pack/test/functional/apps/transform/start_reset_delete/starting.ts +++ b/x-pack/test/functional/apps/transform/start_reset_delete/starting.ts @@ -125,11 +125,9 @@ export default function ({ getService }: FtrProviderContext) { }, }; } - await transform.api.createTransform( - testData.originalConfig.id, - testData.originalConfig, - testData.expected.healthStatus === TRANSFORM_HEALTH.yellow - ); + await transform.api.createTransform(testData.originalConfig.id, testData.originalConfig, { + deferValidation: testData.expected.healthStatus === TRANSFORM_HEALTH.yellow, + }); } await transform.testResources.setKibanaTimeZoneToUTC(); await transform.securityUI.loginAsTransformPowerUser(); diff --git a/x-pack/test/functional/services/transform/api.ts b/x-pack/test/functional/services/transform/api.ts index dcb76bb23eaf0..4c6944b64a91d 100644 --- a/x-pack/test/functional/services/transform/api.ts +++ b/x-pack/test/functional/services/transform/api.ts @@ -218,13 +218,33 @@ export function TransformAPIProvider({ getService }: FtrProviderContext) { async createTransform( transformId: string, transformConfig: PutTransformsRequestSchema, - deferValidation?: boolean + options: { + deferValidation?: boolean; + headers?: object; + } = {} ) { - log.debug(`Creating transform with id '${transformId}'...`); - const { body, status } = await esSupertest - .put(`/_transform/${transformId}${deferValidation ? '?defer_validation=true' : ''}`) - .send(transformConfig); - this.assertResponseStatusCode(200, status, body); + const { deferValidation, headers } = options; + + if (headers) { + log.debug( + `Creating transform with id '${transformId}' with headers ${JSON.stringify( + headers + )} and defer_validation:${deferValidation}...` + ); + const { body, status } = await esSupertest + .put(`/_transform/${transformId}${deferValidation ? '?defer_validation=true' : ''}`) + .set(headers) + .send(transformConfig); + this.assertResponseStatusCode(200, status, body); + } else { + log.debug( + `Creating transform with id '${transformId}' and defer_validation:${deferValidation}...` + ); + const { body, status } = await esSupertest + .put(`/_transform/${transformId}${deferValidation ? '?defer_validation=true' : ''}`) + .send(transformConfig); + this.assertResponseStatusCode(200, status, body); + } await this.waitForTransformToExist( transformId, @@ -264,8 +284,12 @@ export function TransformAPIProvider({ getService }: FtrProviderContext) { this.assertResponseStatusCode(200, status, body); }, - async createAndRunTransform(transformId: string, transformConfig: PutTransformsRequestSchema) { - await this.createTransform(transformId, transformConfig); + async createAndRunTransform( + transformId: string, + transformConfig: PutTransformsRequestSchema, + options: { headers?: object } = {} + ) { + await this.createTransform(transformId, transformConfig, { headers: options.headers }); await this.startTransform(transformId); if (transformConfig.sync === undefined) { // batch mode diff --git a/x-pack/test/functional/services/transform/security_common.ts b/x-pack/test/functional/services/transform/security_common.ts index 36670a65211b3..94c059be0fae6 100644 --- a/x-pack/test/functional/services/transform/security_common.ts +++ b/x-pack/test/functional/services/transform/security_common.ts @@ -7,6 +7,7 @@ import { ProvidedType } from '@kbn/test'; +import { Client } from '@elastic/elasticsearch'; import { FtrProviderContext } from '../../ftr_provider_context'; export type TransformSecurityCommon = ProvidedType; @@ -19,6 +20,7 @@ export enum USER { export function TransformSecurityCommonProvider({ getService }: FtrProviderContext) { const security = getService('security'); + const esClient: Client = getService('es'); const roles = [ { @@ -98,6 +100,51 @@ export function TransformSecurityCommonProvider({ getService }: FtrProviderConte } }, + async createApiKeyForTransformUser(username: string) { + const user = users.find((u) => u.name === username); + + if (user === undefined) { + throw new Error(`Can't create api key for user ${user} - user not defined`); + } + + const roleDescriptors = user.roles.reduce>((map, roleName) => { + const userRole = roles.find((r) => r.name === roleName); + + if (userRole) { + map[roleName] = userRole.elasticsearch; + } + return map; + }, {}); + const apiKey = await esClient.security.createApiKey({ + body: { + name: `Transform API Key ${user.full_name}`, + role_descriptors: roleDescriptors, + metadata: user, + }, + }); + return { user: { name: user.name as USER, roles: user.roles }, apiKey }; + }, + + async createApiKeyForTransformUsers() { + const apiKeyForTransformUsers = await Promise.all( + users.map((user) => this.createApiKeyForTransformUser(user.name)) + ); + + return apiKeyForTransformUsers; + }, + + async clearAllTransformApiKeys() { + const existingKeys = await esClient.security.queryApiKeys(); + + if (existingKeys.count > 0) { + await Promise.all( + existingKeys.api_keys.map(async (key) => { + esClient.security.invalidateApiKey({ ids: [key.id] }); + }) + ); + } + }, + async cleanTransformRoles() { for (const role of roles) { await security.role.delete(role.name); From ada91f9a5e7cf1fc9d5609fbcd533591542b3d4b Mon Sep 17 00:00:00 2001 From: Yara Tercero Date: Thu, 20 Apr 2023 11:23:15 -0700 Subject: [PATCH 38/60] [Security Solution][Exceptions] - Fix stale linked rules count on manage rules save (#155108) ## Summary Addresses https://github.com/elastic/kibana/issues/153195 --- .../alerts_table_flow/add_exception.cy.ts | 6 ++-- .../manage_shared_exception_list.cy.ts | 16 +++++++-- .../cypress/screens/exceptions.ts | 10 ++++++ .../cypress/tasks/exceptions_table.ts | 33 ++++++++++++++++--- .../components/exceptions_list_card/index.tsx | 9 +++-- .../components/manage_rules/index.tsx | 1 + .../hooks/use_list_detail_view/index.ts | 8 +++-- 7 files changed, 68 insertions(+), 15 deletions(-) diff --git a/x-pack/plugins/security_solution/cypress/e2e/exceptions/alerts_table_flow/add_exception.cy.ts b/x-pack/plugins/security_solution/cypress/e2e/exceptions/alerts_table_flow/add_exception.cy.ts index 80ec42d3ab408..5964c8303ce1d 100644 --- a/x-pack/plugins/security_solution/cypress/e2e/exceptions/alerts_table_flow/add_exception.cy.ts +++ b/x-pack/plugins/security_solution/cypress/e2e/exceptions/alerts_table_flow/add_exception.cy.ts @@ -14,7 +14,7 @@ import { login, visitWithoutDateRange, waitForPageWithoutDateRange } from '../.. import { EXCEPTIONS_URL } from '../../../urls/navigation'; import { - deleteExceptionListWithRuleReference, + deleteExceptionListWithRuleReferenceByListId, deleteExceptionListWithoutRuleReference, exportExceptionList, searchForExceptionList, @@ -79,7 +79,7 @@ describe('Exceptions Table', () => { visitWithoutDateRange(EXCEPTIONS_URL); waitForExceptionsTableToBeLoaded(); - exportExceptionList(); + exportExceptionList(getExceptionList1().list_id); cy.wait('@export').then(({ response }) => { cy.wrap(response?.body).should( @@ -168,7 +168,7 @@ describe('Exceptions Table', () => { // just checking number of lists shown cy.contains(EXCEPTIONS_TABLE_SHOWING_LISTS, '2'); - deleteExceptionListWithRuleReference(); + deleteExceptionListWithRuleReferenceByListId(getExceptionList2().list_id); // Using cy.contains because we do not care about the exact text, // just checking number of lists shown diff --git a/x-pack/plugins/security_solution/cypress/e2e/exceptions/shared_exception_lists_management/manage_shared_exception_list.cy.ts b/x-pack/plugins/security_solution/cypress/e2e/exceptions/shared_exception_lists_management/manage_shared_exception_list.cy.ts index 1888ee78b7223..f7610c3f4b5d9 100644 --- a/x-pack/plugins/security_solution/cypress/e2e/exceptions/shared_exception_lists_management/manage_shared_exception_list.cy.ts +++ b/x-pack/plugins/security_solution/cypress/e2e/exceptions/shared_exception_lists_management/manage_shared_exception_list.cy.ts @@ -14,11 +14,13 @@ import { login, visitWithoutDateRange, waitForPageWithoutDateRange } from '../.. import { EXCEPTIONS_URL } from '../../../urls/navigation'; import { - deleteExceptionListWithRuleReference, + deleteExceptionListWithRuleReferenceByListId, deleteExceptionListWithoutRuleReference, exportExceptionList, waitForExceptionsTableToBeLoaded, createSharedExceptionList, + linkRulesToExceptionList, + assertNumberLinkedRules, } from '../../../tasks/exceptions_table'; import { EXCEPTIONS_LIST_MANAGEMENT_NAME, @@ -46,6 +48,8 @@ describe('Manage shared exception list', () => { esArchiverResetKibana(); login(); + createRule(getNewRule({ name: 'Another rule' })); + // Create exception list associated with a rule createExceptionList(getExceptionList2(), getExceptionList2().list_id).then((response) => createRule( @@ -76,7 +80,7 @@ describe('Manage shared exception list', () => { it('Export exception list', function () { cy.intercept(/(\/api\/exception_lists\/_export)/).as('export'); - exportExceptionList(); + exportExceptionList(getExceptionList1().list_id); cy.wait('@export').then(({ response }) => { cy.wrap(response?.body).should( @@ -91,6 +95,12 @@ describe('Manage shared exception list', () => { }); }); + it('Link rules to shared exception list', function () { + assertNumberLinkedRules(getExceptionList2().list_id, '1'); + linkRulesToExceptionList(getExceptionList2().list_id, 1); + assertNumberLinkedRules(getExceptionList2().list_id, '2'); + }); + it('Create exception list', function () { createSharedExceptionList({ name: EXCEPTION_LIST_NAME, description: 'This is my list.' }, true); @@ -118,7 +128,7 @@ describe('Manage shared exception list', () => { // just checking number of lists shown cy.contains(EXCEPTIONS_TABLE_SHOWING_LISTS, '3'); - deleteExceptionListWithRuleReference(); + deleteExceptionListWithRuleReferenceByListId(getExceptionList2().list_id); // Using cy.contains because we do not care about the exact text, // just checking number of lists shown diff --git a/x-pack/plugins/security_solution/cypress/screens/exceptions.ts b/x-pack/plugins/security_solution/cypress/screens/exceptions.ts index b650c59364423..100ab6f91ab1d 100644 --- a/x-pack/plugins/security_solution/cypress/screens/exceptions.ts +++ b/x-pack/plugins/security_solution/cypress/screens/exceptions.ts @@ -49,6 +49,9 @@ export const EXCEPTIONS_TABLE_SHOWING_LISTS = '[data-test-subj="showingException export const EXCEPTIONS_TABLE_DELETE_BTN = '[data-test-subj="sharedListOverflowCardActionItemDelete"]'; +export const EXCEPTIONS_TABLE_LINK_RULES_BTN = + '[data-test-subj="sharedListOverflowCardActionItemLinkRules"]'; + export const EXCEPTIONS_TABLE_EXPORT_MODAL_BTN = '[data-test-subj="sharedListOverflowCardActionItemExport"]'; @@ -149,6 +152,13 @@ export const CREATE_SHARED_EXCEPTION_LIST_DESCRIPTION_INPUT = export const CREATE_SHARED_EXCEPTION_LIST_BTN = 'button[data-test-subj="exception-lists-form-create-shared"]'; +export const exceptionsTableListManagementListContainerByListId = (listId: string) => + `[data-test-subj="exceptionsManagementListCard-${listId}"]`; + +export const LINKED_RULES_BADGE = '[data-test-subj="exceptionListCardLinkedRulesBadge"]'; + +export const MANAGE_RULES_SAVE = '[data-test-subj="manageListRulesSaveButton"]'; + // Exception list management export const EXCEPTIONS_LIST_MANAGEMENT_NAME = '[data-test-subj="exceptionListManagementTitleText"]'; diff --git a/x-pack/plugins/security_solution/cypress/tasks/exceptions_table.ts b/x-pack/plugins/security_solution/cypress/tasks/exceptions_table.ts index 9be5d281903c8..0f7a8e60e8c45 100644 --- a/x-pack/plugins/security_solution/cypress/tasks/exceptions_table.ts +++ b/x-pack/plugins/security_solution/cypress/tasks/exceptions_table.ts @@ -26,6 +26,11 @@ import { EXCEPTIONS_LIST_MANAGEMENT_EDIT_MODAL_DESCRIPTION_INPUT, EXCEPTIONS_LIST_EDIT_DETAILS_SAVE_BTN, EXCEPTIONS_LIST_DETAILS_HEADER, + exceptionsTableListManagementListContainerByListId, + EXCEPTIONS_TABLE_LINK_RULES_BTN, + RULE_ACTION_LINK_RULE_SWITCH, + LINKED_RULES_BADGE, + MANAGE_RULES_SAVE, } from '../screens/exceptions'; export const clearSearchSelection = () => { @@ -36,12 +41,30 @@ export const expandExceptionActions = () => { cy.get(EXCEPTIONS_OVERFLOW_ACTIONS_BTN).first().click(); }; -export const exportExceptionList = () => { - cy.get(EXCEPTIONS_OVERFLOW_ACTIONS_BTN).first().click(); +export const exportExceptionList = (listId: string) => { + cy.get(exceptionsTableListManagementListContainerByListId(listId)) + .find(EXCEPTIONS_OVERFLOW_ACTIONS_BTN) + .click(); cy.get(EXCEPTIONS_TABLE_EXPORT_MODAL_BTN).first().click(); cy.get(EXCEPTIONS_TABLE_EXPORT_CONFIRM_BTN).first().click(); }; +export const assertNumberLinkedRules = (listId: string, numberOfRulesAsString: string) => { + cy.get(exceptionsTableListManagementListContainerByListId(listId)) + .find(LINKED_RULES_BADGE) + .contains(numberOfRulesAsString); +}; + +export const linkRulesToExceptionList = (listId: string, ruleSwitch: number = 0) => { + cy.log(`Open link rules flyout for list_id: '${listId}'`); + cy.get(exceptionsTableListManagementListContainerByListId(listId)) + .find(EXCEPTIONS_OVERFLOW_ACTIONS_BTN) + .click(); + cy.get(EXCEPTIONS_TABLE_LINK_RULES_BTN).first().click(); + cy.get(RULE_ACTION_LINK_RULE_SWITCH).eq(ruleSwitch).find('button').click(); + cy.get(MANAGE_RULES_SAVE).first().click(); +}; + export const deleteExceptionListWithoutRuleReference = () => { cy.get(EXCEPTIONS_OVERFLOW_ACTIONS_BTN).first().click(); cy.get(EXCEPTIONS_TABLE_DELETE_BTN).first().click(); @@ -50,8 +73,10 @@ export const deleteExceptionListWithoutRuleReference = () => { cy.get(EXCEPTIONS_TABLE_MODAL).should('not.exist'); }; -export const deleteExceptionListWithRuleReference = () => { - cy.get(EXCEPTIONS_OVERFLOW_ACTIONS_BTN).last().click(); +export const deleteExceptionListWithRuleReferenceByListId = (listId: string) => { + cy.get(exceptionsTableListManagementListContainerByListId(listId)) + .find(EXCEPTIONS_OVERFLOW_ACTIONS_BTN) + .click(); cy.get(EXCEPTIONS_TABLE_DELETE_BTN).last().click(); cy.get(EXCEPTIONS_TABLE_MODAL).should('exist'); cy.get(EXCEPTIONS_TABLE_MODAL_CONFIRM_BTN).first().click(); diff --git a/x-pack/plugins/security_solution/public/exceptions/components/exceptions_list_card/index.tsx b/x-pack/plugins/security_solution/public/exceptions/components/exceptions_list_card/index.tsx index eb945e18e7761..95dde7239b605 100644 --- a/x-pack/plugins/security_solution/public/exceptions/components/exceptions_list_card/index.tsx +++ b/x-pack/plugins/security_solution/public/exceptions/components/exceptions_list_card/index.tsx @@ -102,7 +102,6 @@ export const ExceptionsListCard = memo( toggleAccordion, openAccordionId, menuActionItems, - listRulesCount, listDescription, exceptionItemsCount, onEditExceptionItem, @@ -184,8 +183,11 @@ export const ExceptionsListCard = memo( - - + + ( } + data-test-subj={`exceptionsManagementListCard-${listId}`} > = memo( { i18n.EXCEPTION_MANAGE_RULES_ERROR_DESCRIPTION ); setShowManageButtonLoader(false); + }) + .finally(() => { + initializeList(); }); } catch (err) { handleErrorStatus(err); @@ -348,10 +351,11 @@ export const useListDetailsView = (exceptionListId: string) => { list, getRulesToAdd, getRulesToRemove, - exceptionListId, resetManageRulesAfterSaving, - handleErrorStatus, + exceptionListId, invalidateFetchRuleByIdQuery, + handleErrorStatus, + initializeList, ]); const onCancelManageRules = useCallback(() => { setShowManageRulesFlyout(false); From afced9d47fe425dfb47a1eb543f592649519f497 Mon Sep 17 00:00:00 2001 From: Yara Tercero Date: Thu, 20 Apr 2023 11:24:26 -0700 Subject: [PATCH 39/60] [Security Solution][Exceptions] - Fix empty selection showing for exception item field selection (#155221) ## Summary Addresses https://github.com/elastic/kibana/issues/145540 - blank space no longer shows as selection option for exception item field dropdown --- .../src/field/__tests__/use_field.test.ts | 51 ++++++++++++++++++- .../src/field/use_field.tsx | 3 +- 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/packages/kbn-securitysolution-autocomplete/src/field/__tests__/use_field.test.ts b/packages/kbn-securitysolution-autocomplete/src/field/__tests__/use_field.test.ts index 84bd78a4d8fe4..221ef23fd13e5 100644 --- a/packages/kbn-securitysolution-autocomplete/src/field/__tests__/use_field.test.ts +++ b/packages/kbn-securitysolution-autocomplete/src/field/__tests__/use_field.test.ts @@ -84,7 +84,56 @@ describe('useField', () => { expect(comboOptions).toEqual([{ label: 'bytes' }, { label: 'ssl' }, { label: '@timestamp' }]); expect(selectedComboOptions).toEqual([]); }); - it('should not return an empty field as a combo option', () => { + it('should not return a selected field when empty string as a combo option', () => { + const newIndexPattern = { + ...indexPattern, + fields: [ + { + name: 'bytes', + type: 'number', + esTypes: ['long'], + count: 10, + scripted: false, + searchable: true, + aggregatable: true, + readFromDocValues: true, + }, + { + name: 'ssl', + type: 'boolean', + esTypes: ['boolean'], + count: 20, + scripted: false, + searchable: true, + aggregatable: true, + readFromDocValues: true, + }, + { + name: '@timestamp', + type: 'date', + esTypes: ['date'], + count: 30, + scripted: false, + searchable: true, + aggregatable: true, + readFromDocValues: true, + }, + ] as unknown as DataViewFieldBase[], + title: 'title1', + }; + + const { result } = renderHook(() => + useField({ + indexPattern: newIndexPattern, + onChange: onChangeMock, + selectedField: { name: '', type: 'keyword' }, + }) + ); + const { comboOptions, selectedComboOptions } = result.current; + expect(comboOptions).toEqual([{ label: 'bytes' }, { label: 'ssl' }, { label: '@timestamp' }]); + expect(selectedComboOptions).toEqual([]); + }); + it('should not return a selected field when string with spaces is written as a combo option', () => { const newIndexPattern = { ...indexPattern, fields: [ diff --git a/packages/kbn-securitysolution-autocomplete/src/field/use_field.tsx b/packages/kbn-securitysolution-autocomplete/src/field/use_field.tsx index 0e9e01bbec315..ac5286f0f038f 100644 --- a/packages/kbn-securitysolution-autocomplete/src/field/use_field.tsx +++ b/packages/kbn-securitysolution-autocomplete/src/field/use_field.tsx @@ -26,14 +26,13 @@ import { GetFieldComboBoxPropsReturn, } from './types'; import { disabledTypesWithTooltipText } from './disabled_types_with_tooltip_text'; -import { paramContainsSpace } from '../param_contains_space'; const getExistingFields = (indexPattern: DataViewBase | undefined): DataViewFieldBase[] => { return indexPattern != null ? indexPattern.fields : []; }; const getSelectedFields = (selectedField: DataViewField | undefined): DataViewFieldBase[] => { - return selectedField && !paramContainsSpace(selectedField.name) ? [selectedField] : []; + return selectedField && selectedField.name.trim() !== '' ? [selectedField] : []; }; const getAvailableFields = ( From 48aa064268ae45a8414b00f1543771154812d1b8 Mon Sep 17 00:00:00 2001 From: Jordan <51442161+JordanSh@users.noreply.github.com> Date: Thu, 20 Apr 2023 21:24:40 +0300 Subject: [PATCH 40/60] [Cloud Security] Vuln Mgmt - Copy and UX changes (#155376) ## Summary Copy changes according to [this issue](https://github.com/elastic/security-team/issues/6410) Section 1: - empty state component text changes - new learn more button instead of text link Section 5: - scanning in progress prompt text changes --------- Co-authored-by: Paulo Henrique --- .../fleet_extensions/policy_template_form.tsx | 4 --- .../components/no_vulnerabilities_states.tsx | 29 +++++++++---------- 2 files changed, 14 insertions(+), 19 deletions(-) diff --git a/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_form.tsx b/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_form.tsx index 0c5e237bfccb1..762367673cc6e 100644 --- a/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_form.tsx +++ b/x-pack/plugins/cloud_security_posture/public/components/fleet_extensions/policy_template_form.tsx @@ -182,7 +182,6 @@ export const CspPolicyTemplateForm = memo {isEditPage && } - {/* Defines the enabled policy template */} {!integration && ( <> @@ -195,11 +194,9 @@ export const CspPolicyTemplateForm = memo )} - {/* Shows info on the active policy template */} - {/* Defines the single enabled input of the active policy template */} - {/* Defines the name/description */} (

    } @@ -51,7 +52,7 @@ const ScanningVulnerabilitiesEmptyPrompt = () => (

    } @@ -72,7 +73,7 @@ const VulnerabilitiesFindingsInstalledEmptyPrompt = ({ } @@ -82,17 +83,7 @@ const VulnerabilitiesFindingsInstalledEmptyPrompt = ({

    - - - ), - }} + defaultMessage="Add the Cloud Native Vulnerability Management integration to begin" />

    } @@ -102,10 +93,18 @@ const VulnerabilitiesFindingsInstalledEmptyPrompt = ({
    + + + + + } /> From de697825311a5ec5bbc86ce3dfee55d361f4dfb7 Mon Sep 17 00:00:00 2001 From: Jiawei Wu <74562234+JiaweiWu@users.noreply.github.com> Date: Thu, 20 Apr 2023 12:44:49 -0600 Subject: [PATCH 41/60] [RAM] Fix maintenance window update not updating removal of fields (#155431) ## Summary Fix a bug where when we remove fields from `rRule` during a maintenance window update, the removed fields are not removed because of how ES does partial updates. Due to the complexity of the `rRule` schema, we decided to simply delete and re-create the maintenance window with the same ID, otherwise, we would have to diff and null each of the removed fields specifically. ### 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 --- .../methods/update.test.ts | 25 ++++------ .../methods/update.ts | 50 +++++++++---------- .../update_maintenance_window.ts | 50 +++++++++++++++++++ 3 files changed, 86 insertions(+), 39 deletions(-) diff --git a/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.test.ts b/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.test.ts index 47991a11f2bb1..481557d9d47a6 100644 --- a/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.test.ts +++ b/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.test.ts @@ -9,7 +9,7 @@ import moment from 'moment-timezone'; import { RRule } from 'rrule'; import { update } from './update'; import { savedObjectsClientMock, loggingSystemMock } from '@kbn/core/server/mocks'; -import { SavedObjectsUpdateResponse, SavedObject } from '@kbn/core/server'; +import { SavedObject } from '@kbn/core/server'; import { MaintenanceWindowClientContext, MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, @@ -72,14 +72,14 @@ describe('MaintenanceWindowClient - update', () => { id: 'test-id', } as unknown as SavedObject); - savedObjectsClient.update.mockResolvedValueOnce({ + savedObjectsClient.create.mockResolvedValueOnce({ attributes: { ...mockMaintenanceWindow, ...updatedAttributes, ...updatedMetadata, }, id: 'test-id', - } as unknown as SavedObjectsUpdateResponse); + } as unknown as SavedObject); jest.useFakeTimers().setSystemTime(new Date(secondTimestamp)); @@ -92,9 +92,8 @@ describe('MaintenanceWindowClient - update', () => { MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, 'test-id' ); - expect(savedObjectsClient.update).toHaveBeenLastCalledWith( + expect(savedObjectsClient.create).toHaveBeenLastCalledWith( MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, - 'test-id', { ...updatedAttributes, events: [ @@ -104,7 +103,7 @@ describe('MaintenanceWindowClient - update', () => { expirationDate: moment(new Date(secondTimestamp)).tz('UTC').add(1, 'year').toISOString(), ...updatedMetadata, }, - { version: '123' } + { id: 'test-id' } ); // Only these 3 properties are worth asserting since the rest come from mocks expect(result).toEqual( @@ -141,25 +140,24 @@ describe('MaintenanceWindowClient - update', () => { id: 'test-id', } as unknown as SavedObject); - savedObjectsClient.update.mockResolvedValue({ + savedObjectsClient.create.mockResolvedValue({ attributes: { ...mockMaintenanceWindow, ...updatedAttributes, ...updatedMetadata, }, id: 'test-id', - } as unknown as SavedObjectsUpdateResponse); + } as unknown as SavedObject); // Update without changing duration or rrule await update(mockContext, { id: 'test-id' }); // Events keep the previous modified events, but adds on the new events - expect(savedObjectsClient.update).toHaveBeenLastCalledWith( + expect(savedObjectsClient.create).toHaveBeenLastCalledWith( MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, - 'test-id', expect.objectContaining({ events: [...modifiedEvents, expect.any(Object), expect.any(Object), expect.any(Object)], }), - { version: '123' } + { id: 'test-id' } ); // Update with changing rrule @@ -173,16 +171,15 @@ describe('MaintenanceWindowClient - update', () => { }, }); // All events are regenerated - expect(savedObjectsClient.update).toHaveBeenLastCalledWith( + expect(savedObjectsClient.create).toHaveBeenLastCalledWith( MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, - 'test-id', expect.objectContaining({ events: [ { gte: '2023-03-26T00:00:00.000Z', lte: '2023-03-26T01:00:00.000Z' }, { gte: '2023-04-01T23:00:00.000Z', lte: '2023-04-02T00:00:00.000Z' }, ], }), - { version: '123' } + { id: 'test-id' } ); }); diff --git a/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.ts b/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.ts index 4722e820867d4..17a5d2f573ee9 100644 --- a/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.ts +++ b/x-pack/plugins/alerting/server/maintenance_window_client/methods/update.ts @@ -51,14 +51,11 @@ async function updateWithOCC( const { id, title, enabled, duration, rRule } = params; try { - const { - attributes, - version, - id: fetchedId, - } = await savedObjectsClient.get( - MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, - id - ); + const { attributes, id: fetchedId } = + await savedObjectsClient.get( + MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, + id + ); if (moment.utc(attributes.expirationDate).isBefore(new Date())) { throw Boom.badRequest('Cannot edit archived maintenance windows'); @@ -77,29 +74,32 @@ async function updateWithOCC( events = mergeEvents({ oldEvents: attributes.events, newEvents: events }); } - const result = await savedObjectsClient.update( + await savedObjectsClient.delete(MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, fetchedId); + + const updatedAttributes = { + ...attributes, + ...(title ? { title } : {}), + ...(rRule ? { rRule } : {}), + ...(typeof duration === 'number' ? { duration } : {}), + ...(typeof enabled === 'boolean' ? { enabled } : {}), + expirationDate, + events, + ...modificationMetadata, + }; + + // We are deleting and then creating rather than updating because SO.update + // performs a partial update on the rRule, we would need to null out all of the fields + // that are removed from a new rRule if that were the case. + const result = await savedObjectsClient.create( MAINTENANCE_WINDOW_SAVED_OBJECT_TYPE, - fetchedId, - { - ...attributes, - title, - enabled: typeof enabled === 'boolean' ? enabled : attributes.enabled, - expirationDate, - duration, - rRule, - events, - ...modificationMetadata, - }, + updatedAttributes, { - version, + id: fetchedId, } ); return getMaintenanceWindowFromRaw({ - attributes: { - ...attributes, - ...result.attributes, - }, + attributes: result.attributes, id: result.id, }); } catch (e) { diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/group3/tests/maintenance_window/update_maintenance_window.ts b/x-pack/test/alerting_api_integration/security_and_spaces/group3/tests/maintenance_window/update_maintenance_window.ts index 2fa8fa83a5532..40550997eed06 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/group3/tests/maintenance_window/update_maintenance_window.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/group3/tests/maintenance_window/update_maintenance_window.ts @@ -5,6 +5,7 @@ * 2.0. */ +import moment from 'moment'; import expect from '@kbn/expect'; import { UserAtSpaceScenarios } from '../../../scenarios'; import { getUrlPrefix, ObjectRemover } from '../../../../common/lib'; @@ -88,5 +89,54 @@ export default function updateMaintenanceWindowTests({ getService }: FtrProvider }); }); } + + it('should update RRule correctly when removing fields', async () => { + const { body: createdMaintenanceWindow } = await supertest + .post(`${getUrlPrefix('space1')}/internal/alerting/rules/maintenance_window`) + .set('kbn-xsrf', 'foo') + .send({ + ...createParams, + r_rule: { + ...createParams.r_rule, + count: 1, + until: moment.utc().add(1, 'week').toISOString(), + }, + }) + .expect(200); + + objectRemover.add( + 'space1', + createdMaintenanceWindow.id, + 'rules/maintenance_window', + 'alerting', + true + ); + + const updatedRRule = { + ...createParams.r_rule, + count: 2, + }; + + await supertest + .post( + `${getUrlPrefix('space1')}/internal/alerting/rules/maintenance_window/${ + createdMaintenanceWindow.id + }` + ) + .set('kbn-xsrf', 'foo') + .send({ + ...createParams, + r_rule: updatedRRule, + }) + .expect(200); + + const response = await supertest + .get(`${getUrlPrefix('space1')}/internal/alerting/rules/maintenance_window/_find`) + .set('kbn-xsrf', 'foo') + .send({}); + + expect(response.body.data[0].id).to.eql(createdMaintenanceWindow.id); + expect(response.body.data[0].r_rule).to.eql(updatedRRule); + }); }); } From d6aba14b26810be8410c3f532366229235d5fd74 Mon Sep 17 00:00:00 2001 From: Melissa Alvarez Date: Thu, 20 Apr 2023 13:07:26 -0600 Subject: [PATCH 42/60] [ML] Data Frame Analytics/Anomaly Detection: Custom URLs - entity dropdown reflects Data View update (#155096) ## Summary Related meta issue: https://github.com/elastic/kibana/issues/150375 This PR ensures that when data view is changed, the query entity dropdown values update to reflect the fields for the newly chosen data view. This makes it easier for example to build a link to Discover to view documents in a data view which contains useful contextual data, and has fields of the same name as those used in the job but which was not used to create the job e.g. data views which share a common `host.name` field. image ### 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 --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../__snapshots__/editor.test.tsx.snap | 1083 ----------------- .../custom_url_editor/editor.test.tsx | 163 --- .../custom_urls/custom_url_editor/editor.tsx | 126 +- .../custom_url_editor/get_dropdown_options.ts | 27 + .../custom_urls/custom_url_editor/utils.ts | 29 +- .../components/custom_urls/custom_urls.tsx | 34 +- .../custom_urls/custom_urls_wrapper.tsx | 49 +- 7 files changed, 135 insertions(+), 1376 deletions(-) delete mode 100644 x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/editor.test.tsx.snap delete mode 100644 x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.test.tsx create mode 100644 x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/get_dropdown_options.ts diff --git a/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/editor.test.tsx.snap b/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/editor.test.tsx.snap deleted file mode 100644 index 163bad28d8cc2..0000000000000 --- a/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/__snapshots__/editor.test.tsx.snap +++ /dev/null @@ -1,1083 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`CustomUrlEditor renders the editor for a dashboard type URL with a label 1`] = ` - - -

    - -

    -
    - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - - - - } - labelType="label" - > - - - - - -
    -`; - -exports[`CustomUrlEditor renders the editor for a discover type URL with an entity and empty time range interval 1`] = ` - - -

    - -

    -
    - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - - - - } - labelType="label" - > - - - - - - } - labelType="label" - > - - - - - -
    -`; - -exports[`CustomUrlEditor renders the editor for a discover type URL with valid time range interval 1`] = ` - - -

    - -

    -
    - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - - - - } - labelType="label" - > - - - - - - } - labelType="label" - > - - - - - -
    -`; - -exports[`CustomUrlEditor renders the editor for a new dashboard type URL with no label 1`] = ` - - -

    - -

    -
    - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - - - - } - labelType="label" - > - - - - - -
    -`; - -exports[`CustomUrlEditor renders the editor for other type of URL with duplicate label 1`] = ` - - -

    - -

    -
    - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - -
    -`; - -exports[`CustomUrlEditor renders the editor for other type of URL with unique label 1`] = ` - - -

    - -

    -
    - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - - } - labelType="label" - > - - - -
    -`; diff --git a/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.test.tsx b/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.test.tsx deleted file mode 100644 index ce7f31df4e86c..0000000000000 --- a/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.test.tsx +++ /dev/null @@ -1,163 +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. - */ - -// Mock the mlJobService that is used for testing custom URLs. -import { shallow } from 'enzyme'; - -jest.mock('../../../services/job_service', () => 'mlJobService'); - -import React from 'react'; - -import { CustomUrlEditor } from './editor'; -import { TIME_RANGE_TYPE, URL_TYPE } from './constants'; -import { CustomUrlSettings } from './utils'; -import { DataViewListItem } from '@kbn/data-views-plugin/common'; - -function prepareTest( - customUrl: CustomUrlSettings, - setEditCustomUrlFn: (url: CustomUrlSettings) => void -) { - const savedCustomUrls = [ - { - url_name: 'Show data', - time_range: 'auto', - url_value: - "discover#/?_g=(time:(from:'$earliest$',mode:absolute,to:'$latest$'))&_a=" + - '(index:e532ba80-b76f-11e8-a9dc-37914a458883,query:(language:lucene,query:\'airline:"$airline$"\'))', - }, - { - url_name: 'Show dashboard', - time_range: '1h', - url_value: - 'dashboards#/view/52ea8840-bbef-11e8-a04d-b1701b2b977e?_g=' + - "(time:(from:'$earliest$',mode:absolute,to:'$latest$'))&" + - '_a=(filters:!(),query:(language:lucene,query:\'airline:"$airline$"\'))', - }, - { - url_name: 'Show airline', - time_range: 'auto', - url_value: 'http://airlinecodes.info/airline-code-$airline$', - }, - ]; - - const dashboards = [ - { id: 'dash1', title: 'Dashboard 1' }, - { id: 'dash2', title: 'Dashboard 2' }, - ]; - - const dataViewListItems = [ - { id: 'pattern1', title: 'Data view 1' }, - { id: 'pattern2', title: 'Data view 2' }, - ] as DataViewListItem[]; - - const queryEntityFieldNames = ['airline']; - - const props = { - customUrl, - setEditCustomUrl: setEditCustomUrlFn, - savedCustomUrls, - dashboards, - dataViewListItems, - queryEntityFieldNames, - }; - - return shallow(); -} - -describe('CustomUrlEditor', () => { - const setEditCustomUrl = jest.fn(() => {}); - const dashboardUrl = { - label: '', - timeRange: { - type: TIME_RANGE_TYPE.AUTO, - interval: '', - }, - type: URL_TYPE.KIBANA_DASHBOARD, - kibanaSettings: { - queryFieldNames: [], - dashboardId: 'dash1', - }, - }; - - const discoverUrl = { - label: 'Open Discover', - timeRange: { - type: TIME_RANGE_TYPE.INTERVAL, - interval: '', - }, - type: URL_TYPE.KIBANA_DISCOVER, - kibanaSettings: { - queryFieldNames: ['airline'], - discoverIndexPatternId: 'pattern1', - }, - }; - - const otherUrl = { - label: 'Show airline', - timeRange: { - type: TIME_RANGE_TYPE.AUTO, - interval: '', - }, - type: URL_TYPE.OTHER, - otherUrlSettings: { - urlValue: 'https://www.google.co.uk/search?q=airline+code+$airline$', - }, - }; - - test('renders the editor for a new dashboard type URL with no label', () => { - const wrapper = prepareTest(dashboardUrl, setEditCustomUrl); - expect(wrapper).toMatchSnapshot(); - }); - - test('renders the editor for a dashboard type URL with a label', () => { - const dashboardUrlEdit = { - ...dashboardUrl, - label: 'Open Dashboard 1', - }; - const wrapper = prepareTest(dashboardUrlEdit, setEditCustomUrl); - expect(wrapper).toMatchSnapshot(); - }); - - test('renders the editor for a discover type URL with an entity and empty time range interval', () => { - const wrapper = prepareTest(discoverUrl, setEditCustomUrl); - expect(wrapper).toMatchSnapshot(); - }); - - test('renders the editor for a discover type URL with valid time range interval', () => { - const discoverUrlEdit = { - ...discoverUrl, - timeRange: { - type: TIME_RANGE_TYPE.INTERVAL, - interval: '1h', - }, - }; - const wrapper = prepareTest(discoverUrlEdit, setEditCustomUrl); - expect(wrapper).toMatchSnapshot(); - }); - - test('renders the editor for other type of URL with duplicate label', () => { - const wrapper = prepareTest(otherUrl, setEditCustomUrl); - expect(wrapper).toMatchSnapshot(); - }); - - test('renders the editor for other type of URL with unique label', () => { - const otherUrlEdit = { - ...otherUrl, - label: 'View airline', - }; - const wrapper = prepareTest(otherUrlEdit, setEditCustomUrl); - expect(wrapper).toMatchSnapshot(); - }); - - test('calls setEditCustomUrl on updating a custom URL field', () => { - const wrapper = prepareTest(dashboardUrl, setEditCustomUrl); - const labelInput = wrapper.find('EuiFieldText').first(); - labelInput.simulate('change', { target: { value: 'Edit' } }); - wrapper.update(); - expect(setEditCustomUrl).toHaveBeenCalled(); - }); -}); diff --git a/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx b/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx index 9eddc02b5e1a4..315c60fab6a6f 100644 --- a/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx +++ b/x-pack/plugins/ml/public/application/components/custom_urls/custom_url_editor/editor.tsx @@ -5,7 +5,7 @@ * 2.0. */ -import React, { ChangeEvent, FC } from 'react'; +import React, { ChangeEvent, useMemo, useState, useRef, useEffect, FC } from 'react'; import { EuiComboBox, @@ -25,11 +25,16 @@ import { import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; import { DataViewListItem } from '@kbn/data-views-plugin/common'; +import { DataView } from '@kbn/data-views-plugin/public'; import { CustomUrlSettings, isValidCustomUrlSettingsTimeRange } from './utils'; import { isValidLabel } from '../../../util/custom_url_utils'; +import { type DataFrameAnalyticsConfig } from '../../../../../common/types/data_frame_analytics'; +import { Job, isAnomalyDetectionJob } from '../../../../../common/types/anomaly_detection_jobs'; import { TIME_RANGE_TYPE, TimeRangeType, URL_TYPE } from './constants'; import { UrlConfig } from '../../../../../common/types/custom_urls'; +import { useMlKibana } from '../../../contexts/kibana'; +import { getDropDownOptions } from './get_dropdown_options'; function getLinkToOptions() { return [ @@ -60,8 +65,8 @@ interface CustomUrlEditorProps { savedCustomUrls: UrlConfig[]; dashboards: Array<{ id: string; title: string }>; dataViewListItems: DataViewListItem[]; - queryEntityFieldNames: string[]; showTimeRangeSelector?: boolean; + job: Job | DataFrameAnalyticsConfig; } /* @@ -73,9 +78,42 @@ export const CustomUrlEditor: FC = ({ savedCustomUrls, dashboards, dataViewListItems, - queryEntityFieldNames, - showTimeRangeSelector = true, + job, }) => { + const [queryEntityFieldNames, setQueryEntityFieldNames] = useState([]); + const isAnomalyJob = useMemo(() => isAnomalyDetectionJob(job), [job]); + + const { + services: { + data: { dataViews }, + }, + } = useMlKibana(); + + const isFirst = useRef(true); + + useEffect(() => { + async function getQueryEntityDropdownOptions() { + let dataViewToUse: DataView | undefined; + const dataViewId = customUrl?.kibanaSettings?.discoverIndexPatternId; + + try { + dataViewToUse = await dataViews.get(dataViewId ?? ''); + } catch (e) { + dataViewToUse = undefined; + } + const dropDownOptions = await getDropDownOptions(isFirst.current, job, dataViewToUse); + setQueryEntityFieldNames(dropDownOptions); + + if (isFirst.current) { + isFirst.current = false; + } + } + + if (job !== undefined) { + getQueryEntityDropdownOptions(); + } + }, [dataViews, job, customUrl?.kibanaSettings?.discoverIndexPatternId]); + if (customUrl === undefined) { return null; } @@ -112,6 +150,7 @@ export const CustomUrlEditor: FC = ({ kibanaSettings: { ...kibanaSettings, discoverIndexPatternId: e.target.value, + queryFieldNames: [], }, }); }; @@ -307,58 +346,57 @@ export const CustomUrlEditor: FC = ({ )} - {(type === URL_TYPE.KIBANA_DASHBOARD || type === URL_TYPE.KIBANA_DISCOVER) && - showTimeRangeSelector && ( - <> - - - + {(type === URL_TYPE.KIBANA_DASHBOARD || type === URL_TYPE.KIBANA_DISCOVER) && isAnomalyJob && ( + <> + + + + + } + className="url-time-range" + display="rowCompressed" + > + + + + {timeRange.type === TIME_RANGE_TYPE.INTERVAL && ( + } className="url-time-range" + error={invalidIntervalError} + isInvalid={isInvalidTimeRange} display="rowCompressed" > - - {timeRange.type === TIME_RANGE_TYPE.INTERVAL && ( - - - } - className="url-time-range" - error={invalidIntervalError} - isInvalid={isInvalidTimeRange} - display="rowCompressed" - > - - - - )} - - - )} + )} + + + )} {type === URL_TYPE.OTHER && ( 0) { indicesName = job.dest.index; + backupIndicesName = job.source.index[0]; query = job.source?.query ?? {}; jobId = job.id; } const defaultDataViewId = dataViews.find((dv) => dv.title === indicesName)?.id; - kibanaSettings.discoverIndexPatternId = defaultDataViewId; + if (defaultDataViewId === undefined && backupIndicesName !== undefined) { + backupDataViewId = dataViews.find((dv) => dv.title === backupIndicesName)?.id; + } + kibanaSettings.discoverIndexPatternId = defaultDataViewId ?? backupDataViewId ?? ''; kibanaSettings.filters = defaultDataViewId === null ? [] : getFiltersForDSLQuery(query, defaultDataViewId, jobId); @@ -134,17 +141,23 @@ export function getNewCustomUrlDefaults( // Returns the list of supported field names that can be used // to add to the query used when linking to a Kibana dashboard or Discover. export function getSupportedFieldNames( - job: DataFrameAnalyticsConfig, + job: DataFrameAnalyticsConfig | Job, dataView: DataView ): string[] { - const resultsField = job.dest.results_field; const sortedFields = dataView.fields.getAll().sort((a, b) => a.name.localeCompare(b.name)) ?? []; - const categoryFields = sortedFields.filter( - (f) => + let filterFunction: (field: DataViewField) => boolean = (field: DataViewField) => + categoryFieldTypes.some((type) => { + return field.esTypes?.includes(type); + }); + + if (isDataFrameAnalyticsConfigs(job)) { + const resultsField = job.dest.results_field; + filterFunction = (f) => categoryFieldTypes.some((type) => { return f.esTypes?.includes(type); - }) && !f.name.startsWith(resultsField ?? DEFAULT_RESULTS_FIELD) - ); + }) && !f.name.startsWith(resultsField ?? DEFAULT_RESULTS_FIELD); + } + const categoryFields = sortedFields.filter(filterFunction); return categoryFields.map((field) => field.name); } diff --git a/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls.tsx b/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls.tsx index 7ebab7b3a1359..9d3db04fa40de 100644 --- a/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls.tsx +++ b/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls.tsx @@ -22,7 +22,6 @@ import { EuiModalFooter, } from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; -import { DataView } from '@kbn/data-views-plugin/public'; import { i18n } from '@kbn/i18n'; import { withKibana } from '@kbn/kibana-react-plugin/public'; @@ -31,8 +30,6 @@ import { MlKibanaReactContextValue } from '../../contexts/kibana'; import { CustomUrlEditor, CustomUrlList } from './custom_url_editor'; import { getNewCustomUrlDefaults, - getQueryEntityFieldNames, - getSupportedFieldNames, isValidCustomUrlSettings, buildCustomUrlFromSettings, getTestUrl, @@ -43,22 +40,8 @@ import { loadDataViewListItems, } from '../../jobs/jobs_list/components/edit_job_flyout/edit_utils'; import { openCustomUrlWindow } from '../../util/custom_url_utils'; -import { Job, isAnomalyDetectionJob } from '../../../../common/types/anomaly_detection_jobs'; import { UrlConfig } from '../../../../common/types/custom_urls'; import type { CustomUrlsWrapperProps } from './custom_urls_wrapper'; -import { - isDataFrameAnalyticsConfigs, - type DataFrameAnalyticsConfig, -} from '../../../../common/types/data_frame_analytics'; - -function getDropDownOptions(job: Job | DataFrameAnalyticsConfig, dataView?: DataView) { - if (isAnomalyDetectionJob(job)) { - return getQueryEntityFieldNames(job); - } else if (isDataFrameAnalyticsConfigs(job) && dataView !== undefined) { - return getSupportedFieldNames(job, dataView); - } - return []; -} const MAX_NUMBER_DASHBOARDS = 1000; @@ -66,14 +49,12 @@ interface CustomUrlsState { customUrls: UrlConfig[]; dashboards: Array<{ id: string; title: string }>; dataViewListItems: DataViewListItem[]; - queryEntityFieldNames: string[]; editorOpen: boolean; editorSettings?: CustomUrlSettings; supportedFilterFields: string[]; } interface CustomUrlsProps extends CustomUrlsWrapperProps { kibana: MlKibanaReactContextValue; - dataView?: DataView; currentTimeFilter?: EsQueryTimeRange; } @@ -85,7 +66,6 @@ class CustomUrlsUI extends Component { customUrls: [], dashboards: [], dataViewListItems: [], - queryEntityFieldNames: [], editorOpen: false, supportedFilterFields: [], }; @@ -95,8 +75,6 @@ class CustomUrlsUI extends Component { return { job: props.job, customUrls: props.jobCustomUrls, - // For DFA uses the destination index Data View to get the query entities and falls back to source index Data View. - queryEntityFieldNames: getDropDownOptions(props.job, props.dataView), }; } @@ -223,25 +201,17 @@ class CustomUrlsUI extends Component { }; renderEditor() { - const { - customUrls, - editorOpen, - editorSettings, - dashboards, - dataViewListItems, - queryEntityFieldNames, - } = this.state; + const { customUrls, editorOpen, editorSettings, dashboards, dataViewListItems } = this.state; const editMode = this.props.editMode ?? 'inline'; const editor = ( ); diff --git a/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls_wrapper.tsx b/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls_wrapper.tsx index a4a125d7cb52f..175b16dca74ea 100644 --- a/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls_wrapper.tsx +++ b/x-pack/plugins/ml/public/application/components/custom_urls/custom_urls_wrapper.tsx @@ -5,16 +5,11 @@ * 2.0. */ -import React, { useEffect, useState, FC } from 'react'; -import { DataView } from '@kbn/data-views-plugin/public'; +import React, { FC } from 'react'; import { useMlKibana } from '../../contexts/kibana'; import { Job } from '../../../../common/types/anomaly_detection_jobs'; import { UrlConfig } from '../../../../common/types/custom_urls'; -import { getDataViewIdFromName } from '../../util/index_utils'; -import { - isDataFrameAnalyticsConfigs, - type DataFrameAnalyticsConfig, -} from '../../../../common/types/data_frame_analytics'; +import { type DataFrameAnalyticsConfig } from '../../../../common/types/data_frame_analytics'; import { CustomUrls } from './custom_urls'; export interface CustomUrlsWrapperProps { @@ -25,12 +20,9 @@ export interface CustomUrlsWrapperProps { } export const CustomUrlsWrapper: FC = (props) => { - const [dataView, setDataView] = useState(); - const { services: { data: { - dataViews, query: { timefilter: { timefilter }, }, @@ -38,40 +30,5 @@ export const CustomUrlsWrapper: FC = (props) => { }, } = useMlKibana(); - useEffect(() => { - let active = true; - - async function loadDataView() { - if (isDataFrameAnalyticsConfigs(props.job)) { - const destIndex = props.job.dest.index; - const sourceIndex = props.job.source.index[0]; - let dataViewIdSource: string | null; - let dataViewIdDest: string | null; - let dv: DataView | undefined; - - try { - dataViewIdSource = await getDataViewIdFromName(sourceIndex); - dataViewIdDest = await getDataViewIdFromName(destIndex); - dv = await dataViews.get(dataViewIdDest ?? dataViewIdSource ?? ''); - - if (dv === undefined) { - dv = await dataViews.get(dataViewIdSource ?? ''); - } - if (!active) return; - setDataView(dv); - } catch (e) { - dv = undefined; - } - - return dv; - } - } - - loadDataView(); - return () => { - active = false; - }; - }, [dataViews, props.job]); - - return ; + return ; }; From 45449acc0136d9b5bed320476cec6ede838d3d84 Mon Sep 17 00:00:00 2001 From: "Christiane (Tina) Heiligers" Date: Thu, 20 Apr 2023 12:14:48 -0700 Subject: [PATCH 43/60] [Saved Objects] Add a root level managed property to all saved object documents (#154515) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../src/apis/create.ts | 8 + .../src/simple_saved_object.ts | 8 + .../src/lib/included_fields.test.ts | 1 + .../src/lib/included_fields.ts | 1 + .../src/lib/internal_utils.test.ts | 27 ++ .../src/lib/internal_utils.ts | 29 ++ .../src/lib/repository.test.ts | 247 +++++++++++++++++- .../src/lib/repository.ts | 18 +- .../test_helpers/repository.test.common.ts | 19 +- .../src/apis/bulk_create.ts | 8 + .../src/apis/create.ts | 8 + .../src/apis/increment_counter.ts | 10 + .../src/serialization/serializer.test.ts | 40 +++ .../src/serialization/serializer.ts | 5 +- .../src/validation/schema.ts | 1 + .../src/saved_objects_client.ts | 3 +- .../src/simple_saved_object.ts | 4 + .../src/simple_saved_object.mock.ts | 2 + .../src/server_types.ts | 8 + .../kibana_migrator.test.ts.snap | 4 + .../build_active_mappings.test.ts.snap | 8 + .../src/core/build_active_mappings.ts | 3 + .../document_migrator.test.ts | 10 + .../src/document_migrator/migrations/index.ts | 10 +- .../transform_set_managed_default.test.ts | 40 +++ .../transform_set_managed_default.ts | 14 + .../src/routes/bulk_create.ts | 1 + .../lib/import_dashboards.test.ts | 7 +- .../lib/import_dashboards.ts | 4 +- .../src/serialization.ts | 2 + .../group2/batch_size_bytes.test.ts | 4 +- .../migrations/group3/rewriting_id.test.ts | 4 + .../data_sets/ecommerce/saved_objects.ts | 2 + .../data_sets/flights/saved_objects.ts | 3 + .../data_sets/logs/saved_objects.ts | 5 + .../apis/saved_objects/bulk_create.ts | 1 + .../apis/saved_objects/bulk_get.ts | 2 + .../apis/saved_objects/create.ts | 2 + .../apis/saved_objects/export.ts | 6 + .../api_integration/apis/saved_objects/get.ts | 2 + .../apis/saved_objects/resolve.ts | 2 + 41 files changed, 565 insertions(+), 18 deletions(-) create mode 100644 packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.test.ts create mode 100644 packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.ts diff --git a/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts b/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts index a58b4b4a2868d..b9db75e204119 100644 --- a/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts +++ b/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts @@ -35,4 +35,12 @@ export interface SavedObjectsCreateOptions { typeMigrationVersion?: string; /** Array of referenced saved objects. */ references?: SavedObjectReference[]; + /** + * Flag indicating if a saved object is managed by Kibana (default=false) + * + * This can be leveraged by applications to e.g. prevent edits to a managed + * saved object. Instead, users can be guided to create a copy first and + * make their edits to the copy. + */ + managed?: boolean; } diff --git a/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts b/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts index 12486a32a8c03..2f3cb8dc8fc08 100644 --- a/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts +++ b/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts @@ -49,6 +49,14 @@ export interface SimpleSavedObject { * `namespaceType: 'agnostic'`. */ namespaces: SavedObjectType['namespaces']; + /** + * Flag indicating if a saved object is managed by Kibana (default=false) + * + * This can be leveraged by applications to e.g. prevent edits to a managed + * saved object. Instead, users can be guided to create a copy first and + * make their edits to the copy. + */ + managed: SavedObjectType['managed']; /** * Gets an attribute of this object diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.test.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.test.ts index 13dacc4f07a64..3ccfd5ca6f2a9 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.test.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.test.ts @@ -20,6 +20,7 @@ describe('getRootFields', () => { "migrationVersion", "coreMigrationVersion", "typeMigrationVersion", + "managed", "updated_at", "created_at", "originId", diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.ts index 8ee3f70585452..20e980f4707a1 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/included_fields.ts @@ -18,6 +18,7 @@ const ROOT_FIELDS = [ 'migrationVersion', 'coreMigrationVersion', 'typeMigrationVersion', + 'managed', 'updated_at', 'created_at', 'originId', diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.test.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.test.ts index 569142ef8dc5d..cba31cbd02162 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.test.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.test.ts @@ -18,6 +18,7 @@ import { normalizeNamespace, rawDocExistsInNamespace, rawDocExistsInNamespaces, + setManaged, } from './internal_utils'; describe('#getBulkOperationError', () => { @@ -99,6 +100,7 @@ describe('#getSavedObjectFromSource', () => { const originId = 'originId'; // eslint-disable-next-line @typescript-eslint/naming-convention const updated_at = 'updatedAt'; + const managed = false; function createRawDoc( type: string, @@ -115,6 +117,7 @@ describe('#getSavedObjectFromSource', () => { migrationVersion, coreMigrationVersion, typeMigrationVersion, + managed, originId, updated_at, ...namespaceAttrs, @@ -131,6 +134,7 @@ describe('#getSavedObjectFromSource', () => { attributes, coreMigrationVersion, typeMigrationVersion, + managed, id, migrationVersion, namespaces: expect.anything(), // see specific test cases below @@ -406,3 +410,26 @@ describe('#getCurrentTime', () => { expect(getCurrentTime()).toEqual('2021-09-10T21:00:00.000Z'); }); }); + +describe('#setManaged', () => { + it('returns false if no arguments are provided', () => { + expect(setManaged({})).toEqual(false); + }); + + it('returns false if only one argument is provided as false', () => { + expect(setManaged({ optionsManaged: false })).toEqual(false); + expect(setManaged({ objectManaged: false })).toEqual(false); + }); + + it('returns true if only one argument is provided as true', () => { + expect(setManaged({ optionsManaged: true })).toEqual(true); + expect(setManaged({ objectManaged: true })).toEqual(true); + }); + + it('overrides objectManaged with optionsManaged', () => { + expect(setManaged({ optionsManaged: false, objectManaged: true })).toEqual(false); + expect(setManaged({ optionsManaged: true, objectManaged: false })).toEqual(true); + expect(setManaged({ optionsManaged: false, objectManaged: false })).toEqual(false); + expect(setManaged({ optionsManaged: true, objectManaged: true })).toEqual(true); + }); +}); diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.ts index 03f3c2c698c3e..afafd67fcab3a 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.ts @@ -144,6 +144,7 @@ export function getSavedObjectFromSource( created_at: createdAt, coreMigrationVersion, typeMigrationVersion, + managed, migrationVersion = migrationVersionCompatibility === 'compatible' && typeMigrationVersion ? { [type]: typeMigrationVersion } : undefined, @@ -169,6 +170,7 @@ export function getSavedObjectFromSource( version: encodeHitVersion(doc), attributes: doc._source[type], references: doc._source.references || [], + managed, }; } @@ -272,3 +274,30 @@ export function normalizeNamespace(namespace?: string) { export function getCurrentTime() { return new Date(Date.now()).toISOString(); } + +/** + * Returns the managed boolean to apply to a document as it's managed value. + * For use by applications to modify behavior for managed saved objects. + * The behavior is as follows: + * If `optionsManaged` is set, it will override any existing `managed` value in all the documents being created + * If `optionsManaged` is not provided, then the documents are created with whatever may be assigned to their `managed` property + * or default to `false`. + * + * @internal + */ + +export function setManaged({ + optionsManaged, + objectManaged, +}: { + optionsManaged?: boolean; + objectManaged?: boolean; +}): boolean { + if (optionsManaged !== undefined) { + return optionsManaged; + } else if (optionsManaged === undefined && objectManaged !== undefined) { + return objectManaged; + } else { + return false; + } +} diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts index ccbe414bf82f4..f0aea1afaf5fd 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts @@ -189,6 +189,7 @@ describe('SavedObjectsRepository', () => { ...(doc.attributes?.title && { title: `${doc.attributes.title}!!` }), }, migrationVersion: mockMigrationVersion, + managed: doc.managed ?? false, references: [{ name: 'search_0', type: 'search', id: '123' }], }); @@ -205,12 +206,14 @@ describe('SavedObjectsRepository', () => { id: '6.0.0-alpha1', attributes: { title: 'Test One' }, references: [{ name: 'ref_0', type: 'test', id: '1' }], + managed: false, }; const obj2 = { type: 'index-pattern', id: 'logstash-*', attributes: { title: 'Test Two' }, references: [{ name: 'ref_0', type: 'test', id: '2' }], + managed: false, }; const namespace = 'foo-namespace'; @@ -259,7 +262,6 @@ describe('SavedObjectsRepository', () => { ...mockTimestampFields, }), ]; - describe('client calls', () => { it(`should use the ES bulk action by default`, async () => { await bulkCreateSuccess(client, repository, [obj1, obj2]); @@ -318,6 +320,7 @@ describe('SavedObjectsRepository', () => { const obj1WithSeq = { ...obj1, + managed: obj1.managed, if_seq_no: mockVersionProps._seq_no, if_primary_term: mockVersionProps._primary_term, }; @@ -330,6 +333,19 @@ describe('SavedObjectsRepository', () => { expectClientCallArgsAction([obj1, obj2], { method: 'create' }); }); + it(`should use the ES index method if ID is defined, overwrite=true and managed=true in a document`, async () => { + await bulkCreateSuccess(client, repository, [obj1, obj2], { + overwrite: true, + managed: true, + }); + expectClientCallArgsAction([obj1, obj2], { method: 'index' }); + }); + + it(`should use the ES create method if ID is defined, overwrite=false and managed=true in a document`, async () => { + await bulkCreateSuccess(client, repository, [obj1, obj2], { managed: true }); + expectClientCallArgsAction([obj1, obj2], { method: 'create' }); + }); + it(`formats the ES request`, async () => { await bulkCreateSuccess(client, repository, [obj1, obj2]); const body = [...expectObjArgs(obj1), ...expectObjArgs(obj2)]; @@ -338,6 +354,17 @@ describe('SavedObjectsRepository', () => { expect.anything() ); }); + // this test only ensures that the client accepts the managed field in a document + it(`formats the ES request with managed=true in a document`, async () => { + const obj1WithManagedTrue = { ...obj1, managed: true }; + const obj2WithManagedTrue = { ...obj2, managed: true }; + await bulkCreateSuccess(client, repository, [obj1WithManagedTrue, obj2WithManagedTrue]); + const body = [...expectObjArgs(obj1WithManagedTrue), ...expectObjArgs(obj2WithManagedTrue)]; + expect(client.bulk).toHaveBeenCalledWith( + expect.objectContaining({ body }), + expect.anything() + ); + }); describe('originId', () => { it(`returns error if originId is set for non-multi-namespace type`, async () => { @@ -439,6 +466,27 @@ describe('SavedObjectsRepository', () => { ); }); + // this only ensures we don't override any other options + it(`adds managed=false to request body if declared for any types that are single-namespace`, async () => { + await bulkCreateSuccess(client, repository, [obj1, obj2], { namespace, managed: false }); + const expected = expect.objectContaining({ namespace, managed: false }); + const body = [expect.any(Object), expected, expect.any(Object), expected]; + expect(client.bulk).toHaveBeenCalledWith( + expect.objectContaining({ body }), + expect.anything() + ); + }); + // this only ensures we don't override any other options + it(`adds managed=true to request body if declared for any types that are single-namespace`, async () => { + await bulkCreateSuccess(client, repository, [obj1, obj2], { namespace, managed: true }); + const expected = expect.objectContaining({ namespace, managed: true }); + const body = [expect.any(Object), expected, expect.any(Object), expected]; + expect(client.bulk).toHaveBeenCalledWith( + expect.objectContaining({ body }), + expect.anything() + ); + }); + it(`normalizes options.namespace from 'default' to undefined`, async () => { await bulkCreateSuccess(client, repository, [obj1, obj2], { namespace: 'default' }); const expected = expect.not.objectContaining({ namespace: 'default' }); @@ -825,10 +873,8 @@ describe('SavedObjectsRepository', () => { it(`migrates the docs and serializes the migrated docs`, async () => { migrator.migrateDocument.mockImplementation(mockMigrateDocument); const modifiedObj1 = { ...obj1, coreMigrationVersion: '8.0.0' }; - await bulkCreateSuccess(client, repository, [modifiedObj1, obj2]); const docs = [modifiedObj1, obj2].map((x) => ({ ...x, ...mockTimestampFieldsWithCreated })); - expectMigrationArgs(docs[0], true, 1); expectMigrationArgs(docs[1], true, 2); @@ -964,6 +1010,96 @@ describe('SavedObjectsRepository', () => { expect.stringMatching(/^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$/) ); expect(result.saved_objects[1].id).toEqual(obj2.id); + + // Assert that managed is not changed + expect(result.saved_objects[0].managed).toBeFalsy(); + expect(result.saved_objects[1].managed).toEqual(obj2.managed); + }); + + it(`sets managed=false if not already set`, async () => { + const obj1WithoutManaged = { + type: 'config', + id: '6.0.0-alpha1', + attributes: { title: 'Test One' }, + references: [{ name: 'ref_0', type: 'test', id: '1' }], + }; + const obj2WithoutManaged = { + type: 'index-pattern', + id: 'logstash-*', + attributes: { title: 'Test Two' }, + references: [{ name: 'ref_0', type: 'test', id: '2' }], + }; + const result = await bulkCreateSuccess(client, repository, [ + obj1WithoutManaged, + obj2WithoutManaged, + ]); + expect(result).toEqual({ + saved_objects: [obj1, obj2].map((x) => expectCreateResult(x)), + }); + }); + + it(`sets managed=false only on documents without managed already set`, async () => { + const objWithoutManaged = { + type: 'config', + id: '6.0.0-alpha1', + attributes: { title: 'Test One' }, + references: [{ name: 'ref_0', type: 'test', id: '1' }], + }; + const result = await bulkCreateSuccess(client, repository, [objWithoutManaged, obj2]); + expect(result).toEqual({ + saved_objects: [obj1, obj2].map((x) => expectCreateResult(x)), + }); + }); + + it(`sets managed=true if provided as an override`, async () => { + const obj1WithoutManaged = { + type: 'config', + id: '6.0.0-alpha1', + attributes: { title: 'Test One' }, + references: [{ name: 'ref_0', type: 'test', id: '1' }], + }; + const obj2WithoutManaged = { + type: 'index-pattern', + id: 'logstash-*', + attributes: { title: 'Test Two' }, + references: [{ name: 'ref_0', type: 'test', id: '2' }], + }; + const result = await bulkCreateSuccess( + client, + repository, + [obj1WithoutManaged, obj2WithoutManaged], + { managed: true } + ); + expect(result).toEqual({ + saved_objects: [ + { ...obj1WithoutManaged, managed: true }, + { ...obj2WithoutManaged, managed: true }, + ].map((x) => expectCreateResult(x)), + }); + }); + + it(`sets managed=false if provided as an override`, async () => { + const obj1WithoutManaged = { + type: 'config', + id: '6.0.0-alpha1', + attributes: { title: 'Test One' }, + references: [{ name: 'ref_0', type: 'test', id: '1' }], + }; + const obj2WithoutManaged = { + type: 'index-pattern', + id: 'logstash-*', + attributes: { title: 'Test Two' }, + references: [{ name: 'ref_0', type: 'test', id: '2' }], + }; + const result = await bulkCreateSuccess( + client, + repository, + [obj1WithoutManaged, obj2WithoutManaged], + { managed: false } + ); + expect(result).toEqual({ + saved_objects: [obj1, obj2].map((x) => expectCreateResult(x)), + }); }); }); }); @@ -2392,18 +2528,42 @@ describe('SavedObjectsRepository', () => { }; describe('client calls', () => { - it(`should use the ES index action if ID is not defined and overwrite=true`, async () => { + it(`should use the ES index action if ID is not defined`, async () => { await createSuccess(type, attributes, { overwrite: true }); expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); expect(client.index).toHaveBeenCalled(); }); + it(`should use the ES index action if ID is not defined and a doc has managed=true`, async () => { + await createSuccess(type, attributes, { overwrite: true, managed: true }); + expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); + expect(client.index).toHaveBeenCalled(); + }); + + it(`should use the ES index action if ID is not defined and a doc has managed=false`, async () => { + await createSuccess(type, attributes, { overwrite: true, managed: false }); + expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); + expect(client.index).toHaveBeenCalled(); + }); + it(`should use the ES create action if ID is not defined and overwrite=false`, async () => { await createSuccess(type, attributes); expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); expect(client.create).toHaveBeenCalled(); }); + it(`should use the ES create action if ID is not defined, overwrite=false and a doc has managed=true`, async () => { + await createSuccess(type, attributes, { managed: true }); + expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); + expect(client.create).toHaveBeenCalled(); + }); + + it(`should use the ES create action if ID is not defined, overwrite=false and a doc has managed=false`, async () => { + await createSuccess(type, attributes, { managed: false }); + expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); + expect(client.create).toHaveBeenCalled(); + }); + it(`should use the ES index with version if ID and version are defined and overwrite=true`, async () => { await createSuccess(type, attributes, { id, overwrite: true, version: mockVersion }); expect(mockPreflightCheckForCreate).not.toHaveBeenCalled(); @@ -2885,17 +3045,20 @@ describe('SavedObjectsRepository', () => { it(`migrates a document and serializes the migrated doc`, async () => { const migrationVersion = mockMigrationVersion; const coreMigrationVersion = '8.0.0'; + const managed = false; await createSuccess(type, attributes, { id, references, migrationVersion, coreMigrationVersion, + managed, }); const doc = { type, id, attributes, references, + managed, migrationVersion, coreMigrationVersion, ...mockTimestampFieldsWithCreated, @@ -2906,6 +3069,60 @@ describe('SavedObjectsRepository', () => { expect(serializer.savedObjectToRaw).toHaveBeenLastCalledWith(migratedDoc); }); + it(`migrates a document, adds managed=false and serializes the migrated doc`, async () => { + const migrationVersion = mockMigrationVersion; + const coreMigrationVersion = '8.0.0'; + await createSuccess(type, attributes, { + id, + references, + migrationVersion, + coreMigrationVersion, + managed: undefined, + }); + const doc = { + type, + id, + attributes, + references, + managed: undefined, + migrationVersion, + coreMigrationVersion, + ...mockTimestampFieldsWithCreated, + }; + expectMigrationArgs({ ...doc, managed: false }); + + const migratedDoc = migrator.migrateDocument(doc); + expect(migratedDoc.managed).toBe(false); + expect(serializer.savedObjectToRaw).toHaveBeenLastCalledWith(migratedDoc); + }); + + it(`migrates a document, does not change managed=true to managed=false and serializes the migrated doc`, async () => { + const migrationVersion = mockMigrationVersion; + const coreMigrationVersion = '8.0.0'; + await createSuccess(type, attributes, { + id, + references, + migrationVersion, + coreMigrationVersion, + managed: true, + }); + const doc = { + type, + id, + attributes, + references, + managed: true, + migrationVersion, + coreMigrationVersion, + ...mockTimestampFieldsWithCreated, + }; + expectMigrationArgs(doc); + + const migratedDoc = migrator.migrateDocument(doc); + expect(migratedDoc.managed).toBe(true); + expect(serializer.savedObjectToRaw).toHaveBeenLastCalledWith(migratedDoc); + }); + it(`adds namespace to body when providing namespace for single-namespace type`, async () => { await createSuccess(type, attributes, { id, namespace }); expectMigrationArgs({ namespace }); @@ -2962,6 +3179,27 @@ describe('SavedObjectsRepository', () => { namespaces: [namespace ?? 'default'], coreMigrationVersion: expect.any(String), typeMigrationVersion: '1.1.1', + managed: false, + }); + }); + it(`allows setting 'managed' to true`, async () => { + const result = await createSuccess(MULTI_NAMESPACE_TYPE, attributes, { + id, + namespace, + references, + managed: true, + }); + expect(result).toEqual({ + type: MULTI_NAMESPACE_TYPE, + id, + ...mockTimestampFieldsWithCreated, + version: mockVersion, + attributes, + references, + namespaces: [namespace ?? 'default'], + coreMigrationVersion: expect.any(String), + typeMigrationVersion: '1.1.1', + managed: true, }); }); }); @@ -3549,6 +3787,7 @@ describe('SavedObjectsRepository', () => { 'migrationVersion', 'coreMigrationVersion', 'typeMigrationVersion', + 'managed', 'updated_at', 'created_at', 'originId', diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts index a84f6313d462c..0bde80ea0f32f 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts @@ -120,6 +120,7 @@ import { type Either, isLeft, isRight, + setManaged, } from './internal_utils'; import { collectMultiNamespaceReferences } from './collect_multi_namespace_references'; import { updateObjectsSpaces } from './update_objects_spaces'; @@ -309,6 +310,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { migrationVersion, coreMigrationVersion, typeMigrationVersion, + managed, overwrite = false, references = [], refresh = DEFAULT_REFRESH_SETTING, @@ -389,6 +391,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { migrationVersion, coreMigrationVersion, typeMigrationVersion, + managed: setManaged({ optionsManaged: managed }), created_at: time, updated_at: time, ...(Array.isArray(references) && { references }), @@ -442,6 +445,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { migrationVersionCompatibility, overwrite = false, refresh = DEFAULT_REFRESH_SETTING, + managed: optionsManaged, } = options; const time = getCurrentTime(); @@ -455,9 +459,10 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { } >; const expectedResults = objects.map((object) => { - const { type, id: requestId, initialNamespaces, version } = object; + const { type, id: requestId, initialNamespaces, version, managed } = object; let error: DecoratedError | undefined; let id: string = ''; // Assign to make TS happy, the ID will be validated (or randomly generated if needed) during getValidId below + const objectManaged = managed; if (!this._allowedTypes.includes(type)) { error = SavedObjectsErrorHelpers.createUnsupportedTypeError(type); } else { @@ -484,7 +489,11 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { tag: 'Right', value: { method, - object: { ...object, id }, + object: { + ...object, + id, + managed: setManaged({ optionsManaged, objectManaged }), + }, ...(requiresNamespacesCheck && { preflightCheckIndex: preflightCheckIndexCounter++ }), }, }; @@ -606,6 +615,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { typeMigrationVersion: object.typeMigrationVersion, ...(savedObjectNamespace && { namespace: savedObjectNamespace }), ...(savedObjectNamespaces && { namespaces: savedObjectNamespaces }), + managed: setManaged({ optionsManaged, objectManaged: object.managed }), updated_at: time, created_at: time, references: object.references || [], @@ -686,7 +696,6 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { ); }), }; - return this.optionallyDecryptAndRedactBulkResult(result, authorizationResult?.typeMap, objects); } @@ -2338,6 +2347,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { refresh = DEFAULT_REFRESH_SETTING, initialize = false, upsertAttributes, + managed, } = options; if (!id) { @@ -2409,6 +2419,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { }, migrationVersion, typeMigrationVersion, + managed, updated_at: time, }); @@ -2462,6 +2473,7 @@ export class SavedObjectsRepository implements ISavedObjectsRepository { references: body.get?._source.references ?? [], version: encodeHitVersion(body), attributes: body.get?._source[type], + ...(managed && { managed }), }; } diff --git a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/test_helpers/repository.test.common.ts b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/test_helpers/repository.test.common.ts index 570a1704ab854..43892f6719c19 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server-internal/src/test_helpers/repository.test.common.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server-internal/src/test_helpers/repository.test.common.ts @@ -583,13 +583,23 @@ export const expectBulkGetResult = ( export const getMockBulkCreateResponse = ( objects: SavedObjectsBulkCreateObject[], - namespace?: string + namespace?: string, + managed?: boolean ) => { return { errors: false, took: 1, items: objects.map( - ({ type, id, originId, attributes, references, migrationVersion, typeMigrationVersion }) => ({ + ({ + type, + id, + originId, + attributes, + references, + migrationVersion, + typeMigrationVersion, + managed: docManaged, + }) => ({ create: { // status: 1, // _index: '.kibana', @@ -602,6 +612,7 @@ export const getMockBulkCreateResponse = ( references, ...mockTimestampFieldsWithCreated, typeMigrationVersion: typeMigrationVersion || migrationVersion?.[type] || '1.1.1', + managed: managed ?? docManaged ?? false, }, ...mockVersionProps, }, @@ -616,7 +627,7 @@ export const bulkCreateSuccess = async ( objects: SavedObjectsBulkCreateObject[], options?: SavedObjectsCreateOptions ) => { - const mockResponse = getMockBulkCreateResponse(objects, options?.namespace); + const mockResponse = getMockBulkCreateResponse(objects, options?.namespace, options?.managed); client.bulk.mockResponse(mockResponse); const result = await repository.bulkCreate(objects, options); return result; @@ -626,10 +637,12 @@ export const expectCreateResult = (obj: { type: string; namespace?: string; namespaces?: string[]; + managed?: boolean; }) => ({ ...obj, coreMigrationVersion: expect.any(String), typeMigrationVersion: '1.1.1', + managed: obj.managed ?? false, version: mockVersion, namespaces: obj.namespaces ?? [obj.namespace ?? 'default'], ...mockTimestampFieldsWithCreated, diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts index a933c1be438e9..276682995a4f1 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts @@ -55,4 +55,12 @@ export interface SavedObjectsBulkCreateObject { * * For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used. */ initialNamespaces?: string[]; + /** + * Flag indicating if a saved object is managed by Kibana (default=false) + * + * This can be leveraged by applications to e.g. prevent edits to a managed + * saved object. Instead, users can be guided to create a copy first and + * make their edits to the copy. + */ + managed?: boolean; } diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts index 60b219056f935..fe509b65252da 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts @@ -61,6 +61,14 @@ export interface SavedObjectsCreateOptions extends SavedObjectsBaseOptions { * * For global object types (registered with `namespaceType: 'agnostic'`): this option cannot be used. */ initialNamespaces?: string[]; + /** + * Flag indicating if a saved object is managed by Kibana (default=false) + * + * This can be leveraged by applications to e.g. prevent edits to a managed + * saved object. Instead, users can be guided to create a copy first and + * make their edits to the copy. + */ + managed?: boolean; /** {@link SavedObjectsRawDocParseOptions.migrationVersionCompatibility} */ migrationVersionCompatibility?: 'compatible' | 'raw'; } diff --git a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts index 3e186f38916de..7edb0fc97ae13 100644 --- a/packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts +++ b/packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts @@ -39,6 +39,16 @@ export interface SavedObjectsIncrementCounterOptions * Attributes to use when upserting the document if it doesn't exist. */ upsertAttributes?: Attributes; + /** + * Flag indicating if a saved object is managed by Kibana (default=false). + * Only used when upserting a saved object. If the saved object already + * exist this option has no effect. + * + * This can be leveraged by applications to e.g. prevent edits to a managed + * saved object. Instead, users can be guided to create a copy first and + * make their edits to the copy. + */ + managed?: boolean; } /** diff --git a/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.test.ts b/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.test.ts index c3ac7222e20c8..85035bfc38610 100644 --- a/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.test.ts +++ b/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.test.ts @@ -218,6 +218,27 @@ describe('#rawToSavedObject', () => { expect(actual).not.toHaveProperty('coreMigrationVersion'); }); + test('if specified it copies the _source.managed property to managed', () => { + const actual = singleNamespaceSerializer.rawToSavedObject({ + _id: 'foo:bar', + _source: { + type: 'foo', + managed: false, + }, + }); + expect(actual).toHaveProperty('managed', false); + }); + + test(`if _source.managed is unspecified it doesn't set managed`, () => { + const actual = singleNamespaceSerializer.rawToSavedObject({ + _id: 'foo:bar', + _source: { + type: 'foo', + }, + }); + expect(actual).not.toHaveProperty('managed'); + }); + test(`if version is unspecified it doesn't set version`, () => { const actual = singleNamespaceSerializer.rawToSavedObject({ _id: 'foo:bar', @@ -756,6 +777,25 @@ describe('#savedObjectToRaw', () => { expect(actual._source).not.toHaveProperty('coreMigrationVersion'); }); + test('if specified, copies managed property to _source.managed', () => { + const actual = singleNamespaceSerializer.savedObjectToRaw({ + type: '', + attributes: {}, + managed: false, + } as any); + + expect(actual._source).toHaveProperty('managed', false); + }); + + test(`if unspecified it doesn't add managed property to _source`, () => { + const actual = singleNamespaceSerializer.savedObjectToRaw({ + type: '', + attributes: {}, + } as any); + + expect(actual._source.managed).toBe(undefined); + }); + test('it decodes the version property to _seq_no and _primary_term', () => { const actual = singleNamespaceSerializer.savedObjectToRaw({ type: '', diff --git a/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.ts b/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.ts index f18cc1e832ada..96eded287975c 100644 --- a/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.ts +++ b/packages/core/saved-objects/core-saved-objects-base-server-internal/src/serialization/serializer.ts @@ -94,6 +94,7 @@ export class SavedObjectsSerializer implements ISavedObjectsSerializer { references, coreMigrationVersion, typeMigrationVersion, + managed, migrationVersion = migrationVersionCompatibility === 'compatible' && typeMigrationVersion ? { [type]: typeMigrationVersion } : undefined, @@ -116,6 +117,7 @@ export class SavedObjectsSerializer implements ISavedObjectsSerializer { ...(originId && { originId }), attributes: _source[type], references: references || [], + ...(managed != null ? { managed } : {}), ...(migrationVersion && { migrationVersion }), ...(coreMigrationVersion && { coreMigrationVersion }), ...(typeMigrationVersion != null ? { typeMigrationVersion } : {}), @@ -146,11 +148,13 @@ export class SavedObjectsSerializer implements ISavedObjectsSerializer { references, coreMigrationVersion, typeMigrationVersion, + managed, } = savedObj; const source = { [type]: attributes, type, references, + ...(managed != null ? { managed } : {}), ...(namespace && this.registry.isSingleNamespace(type) && { namespace }), ...(namespaces && this.registry.isMultiNamespace(type) && { namespaces }), ...(originId && { originId }), @@ -160,7 +164,6 @@ export class SavedObjectsSerializer implements ISavedObjectsSerializer { ...(updated_at && { updated_at }), ...(createdAt && { created_at: createdAt }), }; - return { _id: this.generateRawId(namespace, type, id), _source: source, diff --git a/packages/core/saved-objects/core-saved-objects-base-server-internal/src/validation/schema.ts b/packages/core/saved-objects/core-saved-objects-base-server-internal/src/validation/schema.ts index 21c4c04d25afe..009bf2d89cf46 100644 --- a/packages/core/saved-objects/core-saved-objects-base-server-internal/src/validation/schema.ts +++ b/packages/core/saved-objects/core-saved-objects-base-server-internal/src/validation/schema.ts @@ -47,4 +47,5 @@ export const createSavedObjectSanitizedDocSchema = (attributesSchema: SavedObjec created_at: schema.maybe(schema.string()), version: schema.maybe(schema.string()), originId: schema.maybe(schema.string()), + managed: schema.maybe(schema.boolean()), }); diff --git a/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts b/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts index d500bbfcd7716..0493652b1192f 100644 --- a/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts +++ b/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts @@ -207,6 +207,7 @@ export class SavedObjectsClient implements SavedObjectsClientContract { attributes, migrationVersion: options.migrationVersion, typeMigrationVersion: options.typeMigrationVersion, + managed: options.managed, references: options.references, }), }); @@ -217,7 +218,7 @@ export class SavedObjectsClient implements SavedObjectsClientContract { /** * Creates multiple documents at once * - * @param {array} objects - [{ type, id, attributes, references, migrationVersion, typeMigrationVersion }] + * @param {array} objects - [{ type, id, attributes, references, migrationVersion, typeMigrationVersion, managed }] * @param {object} [options={}] * @property {boolean} [options.overwrite=false] * @returns The result of the create operation containing created saved objects. diff --git a/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts b/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts index 751d33f69e7e0..0d57526c065e3 100644 --- a/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts +++ b/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts @@ -29,6 +29,7 @@ export class SimpleSavedObjectImpl implements SimpleSavedObject public migrationVersion: SavedObjectType['migrationVersion']; public coreMigrationVersion: SavedObjectType['coreMigrationVersion']; public typeMigrationVersion: SavedObjectType['typeMigrationVersion']; + public managed: SavedObjectType['managed']; public error: SavedObjectType['error']; public references: SavedObjectType['references']; public updatedAt: SavedObjectType['updated_at']; @@ -47,6 +48,7 @@ export class SimpleSavedObjectImpl implements SimpleSavedObject migrationVersion, coreMigrationVersion, typeMigrationVersion, + managed, namespaces, updated_at: updatedAt, created_at: createdAt, @@ -60,6 +62,7 @@ export class SimpleSavedObjectImpl implements SimpleSavedObject this.migrationVersion = migrationVersion; this.coreMigrationVersion = coreMigrationVersion; this.typeMigrationVersion = typeMigrationVersion; + this.managed = managed; this.namespaces = namespaces; this.updatedAt = updatedAt; this.createdAt = createdAt; @@ -96,6 +99,7 @@ export class SimpleSavedObjectImpl implements SimpleSavedObject migrationVersion: this.migrationVersion, coreMigrationVersion: this.coreMigrationVersion, typeMigrationVersion: this.typeMigrationVersion, + managed: this.managed, references: this.references, }) .then((sso) => { diff --git a/packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts b/packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts index 6268c796a5b82..396b7cfa3a965 100644 --- a/packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts +++ b/packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts @@ -26,6 +26,7 @@ const simpleSavedObjectMockDefaults: Partial> = { updatedAt: '', createdAt: '', namespaces: undefined, + managed: false, }; const createSimpleSavedObjectMock = ( @@ -40,6 +41,7 @@ const createSimpleSavedObjectMock = ( migrationVersion: savedObject.migrationVersion, coreMigrationVersion: savedObject.coreMigrationVersion, typeMigrationVersion: savedObject.typeMigrationVersion, + managed: savedObject.managed, error: savedObject.error, references: savedObject.references, updatedAt: savedObject.updated_at, diff --git a/packages/core/saved-objects/core-saved-objects-common/src/server_types.ts b/packages/core/saved-objects/core-saved-objects-common/src/server_types.ts index fbdacb73309fa..9ea8f1c9f0668 100644 --- a/packages/core/saved-objects/core-saved-objects-common/src/server_types.ts +++ b/packages/core/saved-objects/core-saved-objects-common/src/server_types.ts @@ -101,4 +101,12 @@ export interface SavedObject { * space. */ originId?: string; + /** + * Flag indicating if a saved object is managed by Kibana (default=false) + * + * This can be leveraged by applications to e.g. prevent edits to a managed + * saved object. Instead, users can be guided to create a copy first and + * make their edits to the copy. + */ + managed?: boolean; } diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/__snapshots__/kibana_migrator.test.ts.snap b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/__snapshots__/kibana_migrator.test.ts.snap index efbdf0da12f26..b035c64617ca2 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/__snapshots__/kibana_migrator.test.ts.snap +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/__snapshots__/kibana_migrator.test.ts.snap @@ -8,6 +8,7 @@ Object { "bmap": "510f1f0adb69830cf8a1c5ce2923ed82", "coreMigrationVersion": "2f4316de49999235636386fe51dc06c1", "created_at": "00da57df13e94e9d98437d13ace4bfe0", + "managed": "88cf246b441a6362458cb6a56ca3f7d7", "namespace": "2f4316de49999235636386fe51dc06c1", "namespaces": "2f4316de49999235636386fe51dc06c1", "originId": "2f4316de49999235636386fe51dc06c1", @@ -39,6 +40,9 @@ Object { "created_at": Object { "type": "date", }, + "managed": Object { + "type": "boolean", + }, "namespace": Object { "type": "keyword", }, diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/__snapshots__/build_active_mappings.test.ts.snap b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/__snapshots__/build_active_mappings.test.ts.snap index 42aaff1b7f0df..9941f2a70e696 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/__snapshots__/build_active_mappings.test.ts.snap +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/__snapshots__/build_active_mappings.test.ts.snap @@ -8,6 +8,7 @@ Object { "bbb": "18c78c995965207ed3f6e7fc5c6e55fe", "coreMigrationVersion": "2f4316de49999235636386fe51dc06c1", "created_at": "00da57df13e94e9d98437d13ace4bfe0", + "managed": "88cf246b441a6362458cb6a56ca3f7d7", "namespace": "2f4316de49999235636386fe51dc06c1", "namespaces": "2f4316de49999235636386fe51dc06c1", "originId": "2f4316de49999235636386fe51dc06c1", @@ -31,6 +32,9 @@ Object { "created_at": Object { "type": "date", }, + "managed": Object { + "type": "boolean", + }, "namespace": Object { "type": "keyword", }, @@ -74,6 +78,7 @@ Object { "coreMigrationVersion": "2f4316de49999235636386fe51dc06c1", "created_at": "00da57df13e94e9d98437d13ace4bfe0", "firstType": "635418ab953d81d93f1190b70a8d3f57", + "managed": "88cf246b441a6362458cb6a56ca3f7d7", "namespace": "2f4316de49999235636386fe51dc06c1", "namespaces": "2f4316de49999235636386fe51dc06c1", "originId": "2f4316de49999235636386fe51dc06c1", @@ -101,6 +106,9 @@ Object { }, }, }, + "managed": Object { + "type": "boolean", + }, "namespace": Object { "type": "keyword", }, diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/build_active_mappings.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/build_active_mappings.ts index 12ed0931ce0c3..7dd13acbe8c7f 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/build_active_mappings.ts +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/build_active_mappings.ts @@ -156,6 +156,9 @@ export function getBaseMappings(): IndexMapping { typeMigrationVersion: { type: 'version', }, + managed: { + type: 'boolean', + }, }, }; } diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts index de44f163ec94e..df710068da324 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/document_migrator.test.ts @@ -817,6 +817,7 @@ describe('DocumentMigrator', () => { references: [{ id: 'favorite', type: 'toy', name: 'BALL!' }], coreMigrationVersion: '8.8.0', typeMigrationVersion: '1.0.0', + managed: false, }, ]); }); @@ -832,6 +833,7 @@ describe('DocumentMigrator', () => { references: [{ id: 'favorite', type: 'toy', name: 'BALL!' }], coreMigrationVersion: '8.8.0', typeMigrationVersion: '1.0.0', + managed: false, namespace: 'foo-namespace', }, ]); @@ -865,6 +867,7 @@ describe('DocumentMigrator', () => { attributes: { name: 'Sweet Peach' }, references: [{ id: 'favorite', type: 'toy', name: 'BALL!' }], // no change coreMigrationVersion: '8.8.0', + managed: false, }, ]); }); @@ -881,6 +884,7 @@ describe('DocumentMigrator', () => { references: [{ id: 'uuidv5', type: 'toy', name: 'BALL!' }], // changed coreMigrationVersion: '8.8.0', namespace: 'foo-namespace', + managed: false, }, ]); }); @@ -978,6 +982,7 @@ describe('DocumentMigrator', () => { references: [{ id: 'favorite', type: 'toy', name: 'BALL!' }], // no change coreMigrationVersion: '8.8.0', typeMigrationVersion: '1.0.0', + managed: false, namespaces: ['default'], }, ]); @@ -1008,6 +1013,7 @@ describe('DocumentMigrator', () => { typeMigrationVersion: '1.0.0', namespaces: ['foo-namespace'], originId: 'cute', + managed: false, }, { id: 'foo-namespace:dog:cute', @@ -1063,6 +1069,7 @@ describe('DocumentMigrator', () => { references: [{ id: 'favorite', type: 'toy', name: 'BALL!' }], // no change coreMigrationVersion: '8.8.0', typeMigrationVersion: '2.0.0', + managed: false, }, ]); }); @@ -1080,6 +1087,7 @@ describe('DocumentMigrator', () => { coreMigrationVersion: '8.8.0', typeMigrationVersion: '2.0.0', namespace: 'foo-namespace', + managed: false, }, ]); }); @@ -1190,6 +1198,7 @@ describe('DocumentMigrator', () => { coreMigrationVersion: '8.8.0', typeMigrationVersion: '2.0.0', namespaces: ['default'], + managed: false, }, ]); }); @@ -1219,6 +1228,7 @@ describe('DocumentMigrator', () => { typeMigrationVersion: '2.0.0', namespaces: ['foo-namespace'], originId: 'pretty', + managed: false, }, { id: 'foo-namespace:dog:pretty', diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/index.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/index.ts index f5a8b313a96e7..04b33a5cc2ac2 100644 --- a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/index.ts +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/index.ts @@ -6,9 +6,17 @@ * Side Public License, v 1. */ +import { flow } from 'lodash'; +import get from 'lodash/fp/get'; import { TransformFn } from '../types'; import { transformMigrationVersion } from './transform_migration_version'; +import { transformSetManagedDefault } from './transform_set_managed_default'; export const migrations = { - '8.8.0': transformMigrationVersion, + '8.8.0': flow( + transformMigrationVersion, + // extract transformedDoc from TransformResult as input to next transform + get('transformedDoc'), + transformSetManagedDefault + ), } as Record; diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.test.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.test.ts new file mode 100644 index 0000000000000..1b355a176ab6f --- /dev/null +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.test.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 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 { transformSetManagedDefault } from './transform_set_managed_default'; + +describe('transformAddManaged', () => { + it('should add managed if not defined', () => { + expect( + transformSetManagedDefault({ + id: 'a', + attributes: {}, + type: 'something', + }) + ).toHaveProperty('transformedDoc.managed'); + }); + it('should not change managed if already defined', () => { + const docWithManagedFalse = transformSetManagedDefault({ + id: 'a', + attributes: {}, + type: 'something', + managed: false, + }); + const docWithManagedTrue = transformSetManagedDefault({ + id: 'a', + attributes: {}, + type: 'something', + managed: true, + }); + [docWithManagedFalse, docWithManagedTrue].forEach((doc) => { + expect(doc.transformedDoc.managed).toBeDefined(); + }); + expect(docWithManagedFalse.transformedDoc.managed).not.toBeTruthy(); + expect(docWithManagedTrue.transformedDoc.managed).toBeTruthy(); + }); +}); diff --git a/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.ts b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.ts new file mode 100644 index 0000000000000..8e3e1b82bc8cd --- /dev/null +++ b/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/document_migrator/migrations/transform_set_managed_default.ts @@ -0,0 +1,14 @@ +/* + * 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 { SavedObjectUnsanitizedDoc } from '@kbn/core-saved-objects-server'; + +export const transformSetManagedDefault = (doc: SavedObjectUnsanitizedDoc) => ({ + transformedDoc: { ...doc, managed: doc.managed ?? false }, + additionalDocs: [], +}); diff --git a/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts b/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts index 68d1a52e63eda..c9341a0af49a4 100644 --- a/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts +++ b/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts @@ -76,6 +76,7 @@ export const registerBulkCreateRoute = ( if (!allowHttpApiAccess) { throwIfAnyTypeNotVisibleByAPI(typesToCheck, savedObjects.typeRegistry); } + const result = await savedObjects.client.bulkCreate(req.body, { overwrite, migrationVersionCompatibility: 'compatible', diff --git a/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.test.ts b/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.test.ts index 0496db94fa1d6..d6382efd673fa 100644 --- a/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.test.ts +++ b/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.test.ts @@ -26,7 +26,12 @@ describe('importDashboards(req)', () => { references: [], version: 'foo', }, - { id: 'panel-01', type: 'visualization', attributes: { visState: '{}' }, references: [] }, + { + id: 'panel-01', + type: 'visualization', + attributes: { visState: '{}' }, + references: [], + }, ]; }); diff --git a/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts b/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts index 0c32f158abd67..808ed9aa9d592 100644 --- a/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts +++ b/packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/lib/import_dashboards.ts @@ -21,8 +21,8 @@ export async function importDashboards( // docs are not seen as automatically up-to-date. const docs = objects .filter((item) => !exclude.includes(item.type)) - // filter out any document version, if present - .map(({ version, ...doc }) => ({ + // filter out any document version and managed, if present + .map(({ version, managed, ...doc }) => ({ ...doc, ...(!doc.migrationVersion && !doc.typeMigrationVersion ? { typeMigrationVersion: '' } : {}), })); diff --git a/packages/core/saved-objects/core-saved-objects-server/src/serialization.ts b/packages/core/saved-objects/core-saved-objects-server/src/serialization.ts index 873dff4ac1b33..8b3b6b4924d79 100644 --- a/packages/core/saved-objects/core-saved-objects-server/src/serialization.ts +++ b/packages/core/saved-objects/core-saved-objects-server/src/serialization.ts @@ -84,6 +84,7 @@ export interface SavedObjectsRawDocSource { created_at?: string; references?: SavedObjectReference[]; originId?: string; + managed?: boolean; [typeMapping: string]: any; } @@ -106,6 +107,7 @@ interface SavedObjectDoc { updated_at?: string; created_at?: string; originId?: string; + managed?: boolean; } /** diff --git a/src/core/server/integration_tests/saved_objects/migrations/group2/batch_size_bytes.test.ts b/src/core/server/integration_tests/saved_objects/migrations/group2/batch_size_bytes.test.ts index cba827a6e4d5a..7f468e11bae4a 100644 --- a/src/core/server/integration_tests/saved_objects/migrations/group2/batch_size_bytes.test.ts +++ b/src/core/server/integration_tests/saved_objects/migrations/group2/batch_size_bytes.test.ts @@ -118,7 +118,7 @@ describe('migration v2', () => { await root.preboot(); await root.setup(); await expect(root.start()).rejects.toMatchInlineSnapshot( - `[Error: Unable to complete saved object migrations for the [.kibana] index: The document with _id "canvas-workpad-template:workpad-template-061d7868-2b4e-4dc8-8bf7-3772b52926e5" is 1715248 bytes which exceeds the configured maximum batch size of 1015275 bytes. To proceed, please increase the 'migrations.maxBatchSizeBytes' Kibana configuration option and ensure that the Elasticsearch 'http.max_content_length' configuration option is set to an equal or larger value.]` + `[Error: Unable to complete saved object migrations for the [.kibana] index: The document with _id "canvas-workpad-template:workpad-template-061d7868-2b4e-4dc8-8bf7-3772b52926e5" is 1715264 bytes which exceeds the configured maximum batch size of 1015275 bytes. To proceed, please increase the 'migrations.maxBatchSizeBytes' Kibana configuration option and ensure that the Elasticsearch 'http.max_content_length' configuration option is set to an equal or larger value.]` ); await retryAsync( @@ -131,7 +131,7 @@ describe('migration v2', () => { expect( records.find((rec) => rec.message.startsWith( - `Unable to complete saved object migrations for the [.kibana] index: The document with _id "canvas-workpad-template:workpad-template-061d7868-2b4e-4dc8-8bf7-3772b52926e5" is 1715248 bytes which exceeds the configured maximum batch size of 1015275 bytes. To proceed, please increase the 'migrations.maxBatchSizeBytes' Kibana configuration option and ensure that the Elasticsearch 'http.max_content_length' configuration option is set to an equal or larger value.` + `Unable to complete saved object migrations for the [.kibana] index: The document with _id "canvas-workpad-template:workpad-template-061d7868-2b4e-4dc8-8bf7-3772b52926e5" is 1715264 bytes which exceeds the configured maximum batch size of 1015275 bytes. To proceed, please increase the 'migrations.maxBatchSizeBytes' Kibana configuration option and ensure that the Elasticsearch 'http.max_content_length' configuration option is set to an equal or larger value.` ) ) ).toBeDefined(); diff --git a/src/core/server/integration_tests/saved_objects/migrations/group3/rewriting_id.test.ts b/src/core/server/integration_tests/saved_objects/migrations/group3/rewriting_id.test.ts index b5cad9ec53449..6079469cf4982 100644 --- a/src/core/server/integration_tests/saved_objects/migrations/group3/rewriting_id.test.ts +++ b/src/core/server/integration_tests/saved_objects/migrations/group3/rewriting_id.test.ts @@ -189,6 +189,7 @@ describe('migration v2', () => { namespaces: ['default'], coreMigrationVersion: expect.any(String), typeMigrationVersion: '8.0.0', + managed: false, }, { id: `foo:${newFooId}`, @@ -199,6 +200,7 @@ describe('migration v2', () => { originId: '1', coreMigrationVersion: expect.any(String), typeMigrationVersion: '8.0.0', + managed: false, }, { // new object for spacex:foo:1 @@ -223,6 +225,7 @@ describe('migration v2', () => { namespaces: ['default'], coreMigrationVersion: expect.any(String), typeMigrationVersion: '8.0.0', + managed: false, }, { id: `bar:${newBarId}`, @@ -233,6 +236,7 @@ describe('migration v2', () => { originId: '1', coreMigrationVersion: expect.any(String), typeMigrationVersion: '8.0.0', + managed: false, }, { // new object for spacex:bar:1 diff --git a/src/plugins/home/server/services/sample_data/data_sets/ecommerce/saved_objects.ts b/src/plugins/home/server/services/sample_data/data_sets/ecommerce/saved_objects.ts index ba8f3c31fc742..687372ed0a559 100644 --- a/src/plugins/home/server/services/sample_data/data_sets/ecommerce/saved_objects.ts +++ b/src/plugins/home/server/services/sample_data/data_sets/ecommerce/saved_objects.ts @@ -28,6 +28,7 @@ export const getSavedObjects = (): SavedObject[] => [ id: 'ff959d40-b880-11e8-a6d9-e546fe2bba5f', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.11.0', + managed: false, references: [], type: 'index-pattern', updated_at: '2021-08-05T12:23:57.577Z', @@ -50,6 +51,7 @@ export const getSavedObjects = (): SavedObject[] => [ id: 'b80e6540-b891-11e8-a6d9-e546fe2bba5f', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.14.0', + managed: false, references: [ { id: 'ff959d40-b880-11e8-a6d9-e546fe2bba5f', diff --git a/src/plugins/home/server/services/sample_data/data_sets/flights/saved_objects.ts b/src/plugins/home/server/services/sample_data/data_sets/flights/saved_objects.ts index afc9033efa493..7aa32a5c5584c 100644 --- a/src/plugins/home/server/services/sample_data/data_sets/flights/saved_objects.ts +++ b/src/plugins/home/server/services/sample_data/data_sets/flights/saved_objects.ts @@ -19,6 +19,7 @@ export const getSavedObjects = (): SavedObject[] => [ version: '1', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.9.3', + managed: false, attributes: { title: i18n.translate('home.sampleData.flightsSpec.flightLogTitle', { defaultMessage: '[Flights] Flight Log', @@ -78,6 +79,7 @@ export const getSavedObjects = (): SavedObject[] => [ version: '1', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.14.0', + managed: false, attributes: { title: i18n.translate('home.sampleData.flightsSpec.departuresCountMapTitle', { defaultMessage: '[Flights] Departures Count Map', @@ -290,5 +292,6 @@ export const getSavedObjects = (): SavedObject[] => [ ], coreMigrationVersion: '8.8.0', typeMigrationVersion: '8.7.0', + managed: false, }, ]; diff --git a/src/plugins/home/server/services/sample_data/data_sets/logs/saved_objects.ts b/src/plugins/home/server/services/sample_data/data_sets/logs/saved_objects.ts index 6d8a2b46f4e72..c0140bd89283d 100644 --- a/src/plugins/home/server/services/sample_data/data_sets/logs/saved_objects.ts +++ b/src/plugins/home/server/services/sample_data/data_sets/logs/saved_objects.ts @@ -18,6 +18,7 @@ export const getSavedObjects = (): SavedObject[] => [ version: '1', coreMigrationVersion: '8.8.0', typeMigrationVersion: '8.0.0', + managed: false, attributes: { title: i18n.translate('home.sampleData.logsSpec.visitorsMapTitle', { defaultMessage: '[Logs] Visitors Map', @@ -47,6 +48,7 @@ export const getSavedObjects = (): SavedObject[] => [ version: '1', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.14.0', + managed: false, attributes: { title: i18n.translate('home.sampleData.logsSpec.heatmapTitle', { defaultMessage: '[Logs] Unique Destination Heatmap', @@ -89,6 +91,7 @@ export const getSavedObjects = (): SavedObject[] => [ version: '1', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.14.0', + managed: false, attributes: { title: i18n.translate('home.sampleData.logsSpec.bytesDistributionTitle', { defaultMessage: '[Logs] Bytes distribution', @@ -399,6 +402,7 @@ export const getSavedObjects = (): SavedObject[] => [ ], coreMigrationVersion: '8.8.0', typeMigrationVersion: '8.7.0', + managed: false, }, { id: '2f360f30-ea74-11eb-b4c6-3d2afc1cb389', @@ -407,6 +411,7 @@ export const getSavedObjects = (): SavedObject[] => [ version: '1', coreMigrationVersion: '8.8.0', typeMigrationVersion: '7.9.3', + managed: false, attributes: { title: i18n.translate('home.sampleData.logsSpec.discoverTitle', { defaultMessage: '[Logs] Visits', diff --git a/test/api_integration/apis/saved_objects/bulk_create.ts b/test/api_integration/apis/saved_objects/bulk_create.ts index 975eb73a49532..b365df10f7d74 100644 --- a/test/api_integration/apis/saved_objects/bulk_create.ts +++ b/test/api_integration/apis/saved_objects/bulk_create.ts @@ -75,6 +75,7 @@ export default function ({ getService }: FtrProviderContext) { }, coreMigrationVersion: '8.8.0', typeMigrationVersion: resp.body.saved_objects[1].typeMigrationVersion, + managed: resp.body.saved_objects[1].managed, references: [], namespaces: [SPACE_ID], }, diff --git a/test/api_integration/apis/saved_objects/bulk_get.ts b/test/api_integration/apis/saved_objects/bulk_get.ts index d1873b22b0d62..6c97efd94d70a 100644 --- a/test/api_integration/apis/saved_objects/bulk_get.ts +++ b/test/api_integration/apis/saved_objects/bulk_get.ts @@ -74,6 +74,7 @@ export default function ({ getService }: FtrProviderContext) { migrationVersion: resp.body.saved_objects[0].migrationVersion, coreMigrationVersion: '8.8.0', typeMigrationVersion: resp.body.saved_objects[0].typeMigrationVersion, + managed: resp.body.saved_objects[0].managed, namespaces: ['default'], references: [ { @@ -106,6 +107,7 @@ export default function ({ getService }: FtrProviderContext) { migrationVersion: resp.body.saved_objects[2].migrationVersion, coreMigrationVersion: '8.8.0', typeMigrationVersion: resp.body.saved_objects[2].typeMigrationVersion, + managed: resp.body.saved_objects[2].managed, references: [], }, ], diff --git a/test/api_integration/apis/saved_objects/create.ts b/test/api_integration/apis/saved_objects/create.ts index c1977589255a7..865eb44596ec1 100644 --- a/test/api_integration/apis/saved_objects/create.ts +++ b/test/api_integration/apis/saved_objects/create.ts @@ -52,6 +52,7 @@ export default function ({ getService }: FtrProviderContext) { migrationVersion: resp.body.migrationVersion, coreMigrationVersion: '8.8.0', typeMigrationVersion: resp.body.typeMigrationVersion, + managed: resp.body.managed, updated_at: resp.body.updated_at, created_at: resp.body.created_at, version: resp.body.version, @@ -63,6 +64,7 @@ export default function ({ getService }: FtrProviderContext) { }); expect(resp.body.migrationVersion).to.be.ok(); expect(resp.body.typeMigrationVersion).to.be.ok(); + expect(resp.body.managed).to.not.be.ok(); }); }); diff --git a/test/api_integration/apis/saved_objects/export.ts b/test/api_integration/apis/saved_objects/export.ts index bec4305ab7d4c..ec7b82453ffce 100644 --- a/test/api_integration/apis/saved_objects/export.ts +++ b/test/api_integration/apis/saved_objects/export.ts @@ -350,6 +350,7 @@ export default function ({ getService }: FtrProviderContext) { id: 'be3733a0-9efe-11e7-acb3-3dab96693fab', coreMigrationVersion: '8.8.0', typeMigrationVersion: objects[0].typeMigrationVersion, + managed: objects[0].managed, references: [ { id: 'dd7caf20-9efd-11e7-acb3-3dab96693fab', @@ -363,6 +364,7 @@ export default function ({ getService }: FtrProviderContext) { version: objects[0].version, }); expect(objects[0].typeMigrationVersion).to.be.ok(); + expect(objects[0].managed).to.not.be.ok(); expect(() => JSON.parse(objects[0].attributes.kibanaSavedObjectMeta.searchSourceJSON) ).not.to.throwError(); @@ -411,6 +413,7 @@ export default function ({ getService }: FtrProviderContext) { id: 'be3733a0-9efe-11e7-acb3-3dab96693fab', coreMigrationVersion: '8.8.0', typeMigrationVersion: objects[0].typeMigrationVersion, + managed: objects[0].managed, references: [ { id: 'dd7caf20-9efd-11e7-acb3-3dab96693fab', @@ -424,6 +427,7 @@ export default function ({ getService }: FtrProviderContext) { version: objects[0].version, }); expect(objects[0].typeMigrationVersion).to.be.ok(); + expect(objects[0].managed).to.not.be.ok(); expect(() => JSON.parse(objects[0].attributes.kibanaSavedObjectMeta.searchSourceJSON) ).not.to.throwError(); @@ -477,6 +481,7 @@ export default function ({ getService }: FtrProviderContext) { id: 'be3733a0-9efe-11e7-acb3-3dab96693fab', coreMigrationVersion: '8.8.0', typeMigrationVersion: objects[0].typeMigrationVersion, + managed: objects[0].managed, references: [ { id: 'dd7caf20-9efd-11e7-acb3-3dab96693fab', @@ -490,6 +495,7 @@ export default function ({ getService }: FtrProviderContext) { version: objects[0].version, }); expect(objects[0].typeMigrationVersion).to.be.ok(); + expect(objects[0].managed).to.not.be.ok(); expect(() => JSON.parse(objects[0].attributes.kibanaSavedObjectMeta.searchSourceJSON) ).not.to.throwError(); diff --git a/test/api_integration/apis/saved_objects/get.ts b/test/api_integration/apis/saved_objects/get.ts index db127924b5ec6..a7b1f58c531f4 100644 --- a/test/api_integration/apis/saved_objects/get.ts +++ b/test/api_integration/apis/saved_objects/get.ts @@ -39,6 +39,7 @@ export default function ({ getService }: FtrProviderContext) { migrationVersion: resp.body.migrationVersion, coreMigrationVersion: '8.8.0', typeMigrationVersion: resp.body.typeMigrationVersion, + managed: resp.body.managed, attributes: { title: 'Count of requests', description: '', @@ -59,6 +60,7 @@ export default function ({ getService }: FtrProviderContext) { }); expect(resp.body.migrationVersion).to.be.ok(); expect(resp.body.typeMigrationVersion).to.be.ok(); + expect(resp.body.managed).to.not.be.ok(); })); describe('doc does not exist', () => { diff --git a/test/api_integration/apis/saved_objects/resolve.ts b/test/api_integration/apis/saved_objects/resolve.ts index eaae0cb1be4c2..73f7ad03582cf 100644 --- a/test/api_integration/apis/saved_objects/resolve.ts +++ b/test/api_integration/apis/saved_objects/resolve.ts @@ -44,6 +44,7 @@ export default function ({ getService }: FtrProviderContext) { migrationVersion: resp.body.saved_object.migrationVersion, coreMigrationVersion: '8.8.0', typeMigrationVersion: resp.body.saved_object.typeMigrationVersion, + managed: resp.body.saved_object.managed, attributes: { title: 'Count of requests', description: '', @@ -66,6 +67,7 @@ export default function ({ getService }: FtrProviderContext) { }); expect(resp.body.saved_object.migrationVersion).to.be.ok(); expect(resp.body.saved_object.typeMigrationVersion).to.be.ok(); + expect(resp.body.saved_object.managed).to.not.be.ok(); })); describe('doc does not exist', () => { From d44eaaa3cbefa385dabdcb8e3e38d7d6b88b0d9f Mon Sep 17 00:00:00 2001 From: Jiawei Wu <74562234+JiaweiWu@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:28:02 -0600 Subject: [PATCH 44/60] [RAM] Fix maintenance window status not archived when there are no events, but past expiration date (#155433) ## Summary Fix a small bug when the user archives a maintenance window with no events, the maintenance window is considered finished, but it should be archived. ### 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 --- .../get_maintenance_window_date_and_status.test.ts | 10 ++++++++++ .../get_maintenance_window_date_and_status.ts | 7 +++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.test.ts b/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.test.ts index 944c78b7fe774..c0a61f7097f80 100644 --- a/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.test.ts +++ b/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.test.ts @@ -69,6 +69,16 @@ describe('getMaintenanceWindowDateAndStatus', () => { expect(result.eventEndTime).toEqual('2023-03-25T01:00:00.000Z'); expect(result.status).toEqual('archived'); + result = getMaintenanceWindowDateAndStatus({ + events: [], + dateToCompare: new Date(), + expirationDate: moment().subtract(1, 'minute').toDate(), + }); + + expect(result.eventStartTime).toEqual(null); + expect(result.eventEndTime).toEqual(null); + expect(result.status).toEqual('archived'); + jest.useFakeTimers().setSystemTime(new Date('2023-03-28T00:30:00.000Z')); result = getMaintenanceWindowDateAndStatus({ events, diff --git a/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.ts b/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.ts index 73a5cea9ff671..4cd1e3322134b 100644 --- a/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.ts +++ b/x-pack/plugins/alerting/server/maintenance_window_client/get_maintenance_window_date_and_status.ts @@ -30,12 +30,15 @@ export const getMaintenanceWindowDateAndStatus = ({ dateToCompare: Date; expirationDate: Date; }): MaintenanceWindowDateAndStatus => { - // No events, status is finished + // No events, status is finished or archived if (!events.length) { + const status = moment.utc(expirationDate).isBefore(dateToCompare) + ? MaintenanceWindowStatus.Archived + : MaintenanceWindowStatus.Finished; return { eventStartTime: null, eventEndTime: null, - status: MaintenanceWindowStatus.Finished, + status, }; } From ef218cd70423916763e5622d04029e722d209be2 Mon Sep 17 00:00:00 2001 From: Carlos Crespo Date: Thu, 20 Apr 2023 16:31:27 -0300 Subject: [PATCH 45/60] [Infrastructure UI] New Infra api (#155084) closes: [#152103](https://github.com/elastic/kibana/issues/152103) fixes: https://github.com/elastic/kibana/issues/151768 ## Summary This PR adds a new API to return host metrics for the Hosts View page. The difference between this API and Snapshot API is that this one runs a terms aggregation and the API can return a range of 1 to 500 hosts, preventing it from returning all data. It uses Inventory Model aggregations, so the performance should be similar to that of the Snapshot API. The `limit` parameter is what will allow the client to try to get a better response time from the API. #### Snapshot API Returns all 500 hosts 15 minutes image 1 day image 1 week image #### Hosts API 100 hosts limit 15 minutes image 1 day image 1 week image ### How to test ```bash curl --location -u elastic:changeme 'http://0.0.0.0:5601/ftw/api/metrics/infra' \ --header 'kbn-xsrf: xxxx' \ --header 'Content-Type: application/json' \ --data '{ "type": "host", "limit": 100, "metrics": [ { "type": "rx" }, { "type": "tx" }, { "type": "memory" }, { "type": "cpu" }, { "type": "diskLatency" }, { "type": "memoryTotal" } ], "query": { "bool": { "must": [], "filter": [], "should": [], "must_not": [] } }, "range": { "from": "2023-04-18T11:15:31.407Z", "to": "2023-04-18T11:30:31.407Z" }, "sourceId": "default" }' ``` --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- packages/kbn-io-ts-utils/index.ts | 8 + .../kbn-io-ts-utils/src/date_rt/index.test.ts | 24 ++ packages/kbn-io-ts-utils/src/date_rt/index.ts | 22 ++ .../src/in_range_rt/index.test.ts | 24 ++ .../kbn-io-ts-utils/src/in_range_rt/index.ts | 23 ++ .../src/is_greater_or_equal/index.test.ts | 24 ++ .../src/is_greater_or_equal/index.ts | 23 ++ .../src/route_validation/index.ts | 53 ++++ packages/kbn-io-ts-utils/tsconfig.json | 3 +- x-pack/plugins/infra/common/http_api/index.ts | 1 + .../http_api/infra/get_infra_metrics.ts | 80 ++++++ .../infra/common/http_api/infra/index.ts | 8 + x-pack/plugins/infra/server/infra_server.ts | 2 + .../infra/server/routes/infra/README.md | 115 ++++++++ .../infra/server/routes/infra/index.ts | 62 ++++ .../server/routes/infra/lib/constants.ts | 34 +++ .../server/routes/infra/lib/helpers/query.ts | 100 +++++++ .../routes/infra/lib/host/get_all_hosts.ts | 77 +++++ .../infra/lib/host/get_filtered_hosts.ts | 65 +++++ .../server/routes/infra/lib/host/get_hosts.ts | 35 +++ .../server/routes/infra/lib/mapper.test.ts | 113 ++++++++ .../infra/server/routes/infra/lib/mapper.ts | 94 +++++++ .../infra/server/routes/infra/lib/types.ts | 92 ++++++ .../server/routes/infra/lib/utils.test.ts | 61 ++++ .../infra/server/routes/infra/lib/utils.ts | 49 ++++ .../api_integration/apis/metrics_ui/index.js | 1 + .../api_integration/apis/metrics_ui/infra.ts | 265 ++++++++++++++++++ 27 files changed, 1457 insertions(+), 1 deletion(-) create mode 100644 packages/kbn-io-ts-utils/src/date_rt/index.test.ts create mode 100644 packages/kbn-io-ts-utils/src/date_rt/index.ts create mode 100644 packages/kbn-io-ts-utils/src/in_range_rt/index.test.ts create mode 100644 packages/kbn-io-ts-utils/src/in_range_rt/index.ts create mode 100644 packages/kbn-io-ts-utils/src/is_greater_or_equal/index.test.ts create mode 100644 packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts create mode 100644 packages/kbn-io-ts-utils/src/route_validation/index.ts create mode 100644 x-pack/plugins/infra/common/http_api/infra/get_infra_metrics.ts create mode 100644 x-pack/plugins/infra/common/http_api/infra/index.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/README.md create mode 100644 x-pack/plugins/infra/server/routes/infra/index.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/constants.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/helpers/query.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/host/get_all_hosts.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/host/get_filtered_hosts.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/host/get_hosts.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/mapper.test.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/mapper.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/types.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/utils.test.ts create mode 100644 x-pack/plugins/infra/server/routes/infra/lib/utils.ts create mode 100644 x-pack/test/api_integration/apis/metrics_ui/infra.ts diff --git a/packages/kbn-io-ts-utils/index.ts b/packages/kbn-io-ts-utils/index.ts index 4e3eaeb9af92b..e52e4d429829e 100644 --- a/packages/kbn-io-ts-utils/index.ts +++ b/packages/kbn-io-ts-utils/index.ts @@ -20,3 +20,11 @@ export { toBooleanRt } from './src/to_boolean_rt'; export { toJsonSchema } from './src/to_json_schema'; export { nonEmptyStringRt } from './src/non_empty_string_rt'; export { createLiteralValueFromUndefinedRT } from './src/literal_value_from_undefined_rt'; +export { createRouteValidationFunction } from './src/route_validation'; +export { inRangeRt, type InRangeBrand, type InRange } from './src/in_range_rt'; +export { dateRt } from './src/date_rt'; +export { + isGreaterOrEqualRt, + type IsGreaterOrEqualBrand, + type IsGreaterOrEqual, +} from './src/is_greater_or_equal'; diff --git a/packages/kbn-io-ts-utils/src/date_rt/index.test.ts b/packages/kbn-io-ts-utils/src/date_rt/index.test.ts new file mode 100644 index 0000000000000..088caf133e62c --- /dev/null +++ b/packages/kbn-io-ts-utils/src/date_rt/index.test.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 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 { dateRt } from '.'; +import { isRight } from 'fp-ts/lib/Either'; + +describe('dateRt', () => { + it('passes if it is a valide date/time', () => { + expect(isRight(dateRt.decode('2019-08-20T11:18:31.407Z'))).toBe(true); + }); + + it('passes if it is a valide date', () => { + expect(isRight(dateRt.decode('2019-08-20'))).toBe(true); + }); + + it('fails if it is an invalide date/time', () => { + expect(isRight(dateRt.decode('2019-02-30T11:18:31.407Z'))).toBe(false); + }); +}); diff --git a/packages/kbn-io-ts-utils/src/date_rt/index.ts b/packages/kbn-io-ts-utils/src/date_rt/index.ts new file mode 100644 index 0000000000000..c3a8d40a1db57 --- /dev/null +++ b/packages/kbn-io-ts-utils/src/date_rt/index.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 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 * as rt from 'io-ts'; +import moment from 'moment'; + +export interface DateBrand { + readonly Date: unique symbol; +} + +export type Date = rt.Branded; + +export const dateRt = rt.brand( + rt.string, + (date): date is Date => moment(date, true).isValid(), + 'Date' +); diff --git a/packages/kbn-io-ts-utils/src/in_range_rt/index.test.ts b/packages/kbn-io-ts-utils/src/in_range_rt/index.test.ts new file mode 100644 index 0000000000000..488e8d2bbd4fa --- /dev/null +++ b/packages/kbn-io-ts-utils/src/in_range_rt/index.test.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 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 { inRangeRt } from '.'; +import { isRight } from 'fp-ts/lib/Either'; + +describe('inRangeRT', () => { + test('passes if value is within range', () => { + expect(isRight(inRangeRt(1, 100).decode(50))).toBe(true); + }); + + test('fails if value above the range', () => { + expect(isRight(inRangeRt(1, 100).decode(101))).toBe(false); + }); + + test('fails if value below the range', () => { + expect(isRight(inRangeRt(1, 100).decode(0))).toBe(false); + }); +}); diff --git a/packages/kbn-io-ts-utils/src/in_range_rt/index.ts b/packages/kbn-io-ts-utils/src/in_range_rt/index.ts new file mode 100644 index 0000000000000..ae3da3d7d2d69 --- /dev/null +++ b/packages/kbn-io-ts-utils/src/in_range_rt/index.ts @@ -0,0 +1,23 @@ +/* + * 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 * as rt from 'io-ts'; + +export interface InRangeBrand { + readonly InRange: unique symbol; +} + +export type InRange = rt.Branded; + +export const inRangeRt = (start: number, end: number) => + rt.brand( + rt.number, // codec + (n): n is InRange => n >= start && n <= end, + // refinement of the number type + 'InRange' // name of this codec + ); diff --git a/packages/kbn-io-ts-utils/src/is_greater_or_equal/index.test.ts b/packages/kbn-io-ts-utils/src/is_greater_or_equal/index.test.ts new file mode 100644 index 0000000000000..0698fe0485436 --- /dev/null +++ b/packages/kbn-io-ts-utils/src/is_greater_or_equal/index.test.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 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 { isGreaterOrEqualRt } from '.'; +import { isRight } from 'fp-ts/lib/Either'; + +describe('inRangeRT', () => { + test('passes if value is a positive number', () => { + expect(isRight(isGreaterOrEqualRt(0).decode(1))).toBe(true); + }); + + test('passes if value is 0', () => { + expect(isRight(isGreaterOrEqualRt(0).decode(0))).toBe(true); + }); + + test('fails if value is a negative number', () => { + expect(isRight(isGreaterOrEqualRt(0).decode(-1))).toBe(false); + }); +}); diff --git a/packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts b/packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts new file mode 100644 index 0000000000000..0eb59269485b2 --- /dev/null +++ b/packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts @@ -0,0 +1,23 @@ +/* + * 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 * as rt from 'io-ts'; + +export interface IsGreaterOrEqualBrand { + readonly IsGreaterOrEqual: unique symbol; +} + +export type IsGreaterOrEqual = rt.Branded; + +export const isGreaterOrEqualRt = (value: number) => + rt.brand( + rt.number, // codec + (n): n is IsGreaterOrEqual => n >= value, + // refinement of the number type + 'IsGreaterOrEqual' // name of this codec + ); diff --git a/packages/kbn-io-ts-utils/src/route_validation/index.ts b/packages/kbn-io-ts-utils/src/route_validation/index.ts new file mode 100644 index 0000000000000..85532c2d5f9eb --- /dev/null +++ b/packages/kbn-io-ts-utils/src/route_validation/index.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 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 type { RouteValidationFunction } from '@kbn/core/server'; +import { fold } from 'fp-ts/lib/Either'; +import { pipe } from 'fp-ts/lib/pipeable'; +import { Context, Errors, IntersectionType, Type, UnionType, ValidationError } from 'io-ts'; + +type ValdidationResult = ReturnType>; + +export const createRouteValidationFunction = + ( + runtimeType: Type + ): RouteValidationFunction => + (inputValue, { badRequest, ok }) => + pipe( + runtimeType.decode(inputValue), + fold>( + (errors: Errors) => badRequest(formatErrors(errors)), + (result: DecodedValue) => ok(result) + ) + ); + +const getErrorPath = ([first, ...rest]: Context): string[] => { + if (typeof first === 'undefined') { + return []; + } else if (first.type instanceof IntersectionType) { + const [, ...next] = rest; + return getErrorPath(next); + } else if (first.type instanceof UnionType) { + const [, ...next] = rest; + return [first.key, ...getErrorPath(next)]; + } + + return [first.key, ...getErrorPath(rest)]; +}; + +const getErrorType = ({ context }: ValidationError) => + context[context.length - 1]?.type?.name ?? 'unknown'; + +const formatError = (error: ValidationError) => + error.message ?? + `in ${getErrorPath(error.context).join('/')}: ${JSON.stringify( + error.value + )} does not match expected type ${getErrorType(error)}`; + +export const formatErrors = (errors: ValidationError[]) => + `Failed to validate: \n${errors.map((error) => ` ${formatError(error)}`).join('\n')}`; diff --git a/packages/kbn-io-ts-utils/tsconfig.json b/packages/kbn-io-ts-utils/tsconfig.json index d5fd475db97a1..e44c93a0c24b0 100644 --- a/packages/kbn-io-ts-utils/tsconfig.json +++ b/packages/kbn-io-ts-utils/tsconfig.json @@ -11,7 +11,8 @@ "**/*.ts" ], "kbn_references": [ - "@kbn/config-schema" + "@kbn/config-schema", + "@kbn/core" ], "exclude": [ "target/**/*", diff --git a/x-pack/plugins/infra/common/http_api/index.ts b/x-pack/plugins/infra/common/http_api/index.ts index 52906bcabb65a..934e4200cb31c 100644 --- a/x-pack/plugins/infra/common/http_api/index.ts +++ b/x-pack/plugins/infra/common/http_api/index.ts @@ -13,3 +13,4 @@ export * from './metrics_api'; export * from './log_alerts'; export * from './snapshot_api'; export * from './host_details'; +export * from './infra'; diff --git a/x-pack/plugins/infra/common/http_api/infra/get_infra_metrics.ts b/x-pack/plugins/infra/common/http_api/infra/get_infra_metrics.ts new file mode 100644 index 0000000000000..bcfeeafcee06f --- /dev/null +++ b/x-pack/plugins/infra/common/http_api/infra/get_infra_metrics.ts @@ -0,0 +1,80 @@ +/* + * 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 { createLiteralValueFromUndefinedRT, inRangeRt, dateRt } from '@kbn/io-ts-utils'; +import * as rt from 'io-ts'; + +export const InfraMetricTypeRT = rt.keyof({ + cpu: null, + diskLatency: null, + memory: null, + memoryTotal: null, + rx: null, + tx: null, +}); + +export const RangeRT = rt.type({ + from: dateRt, + to: dateRt, +}); + +export const InfraAssetMetadataTypeRT = rt.keyof({ + 'host.os.name': null, + 'cloud.provider': null, +}); + +export const InfraAssetMetricsRT = rt.type({ + name: InfraMetricTypeRT, + value: rt.union([rt.number, rt.null]), +}); + +export const InfraAssetMetadataRT = rt.type({ + // keep the actual field name from the index mappings + name: InfraAssetMetadataTypeRT, + value: rt.union([rt.string, rt.number, rt.null]), +}); + +export const GetInfraMetricsRequestBodyPayloadRT = rt.intersection([ + rt.partial({ + query: rt.UnknownRecord, + }), + rt.type({ + type: rt.literal('host'), + limit: rt.union([inRangeRt(1, 500), createLiteralValueFromUndefinedRT(20)]), + metrics: rt.array(rt.type({ type: InfraMetricTypeRT })), + sourceId: rt.string, + range: RangeRT, + }), +]); + +export const InfraAssetMetricsItemRT = rt.type({ + name: rt.string, + metrics: rt.array(InfraAssetMetricsRT), + metadata: rt.array(InfraAssetMetadataRT), +}); + +export const GetInfraMetricsResponsePayloadRT = rt.type({ + type: rt.literal('host'), + nodes: rt.array(InfraAssetMetricsItemRT), +}); + +export type InfraAssetMetrics = rt.TypeOf; +export type InfraAssetMetadata = rt.TypeOf; +export type InfraAssetMetricType = rt.TypeOf; +export type InfraAssetMetricsItem = rt.TypeOf; + +export type GetInfraMetricsRequestBodyPayload = Omit< + rt.TypeOf, + 'limit' | 'range' +> & { + limit?: number; + range: { + from: string; + to: string; + }; +}; +export type GetInfraMetricsResponsePayload = rt.TypeOf; diff --git a/x-pack/plugins/infra/common/http_api/infra/index.ts b/x-pack/plugins/infra/common/http_api/infra/index.ts new file mode 100644 index 0000000000000..75b58fbcf2442 --- /dev/null +++ b/x-pack/plugins/infra/common/http_api/infra/index.ts @@ -0,0 +1,8 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +export * from './get_infra_metrics'; diff --git a/x-pack/plugins/infra/server/infra_server.ts b/x-pack/plugins/infra/server/infra_server.ts index 18f6c943f234b..bdd4f7d841217 100644 --- a/x-pack/plugins/infra/server/infra_server.ts +++ b/x-pack/plugins/infra/server/infra_server.ts @@ -35,6 +35,7 @@ import { initNodeDetailsRoute } from './routes/node_details'; import { initOverviewRoute } from './routes/overview'; import { initProcessListRoute } from './routes/process_list'; import { initSnapshotRoute } from './routes/snapshot'; +import { initInfraMetricsRoute } from './routes/infra'; export const initInfraServer = (libs: InfraBackendLibs) => { initIpToHostName(libs); @@ -63,4 +64,5 @@ export const initInfraServer = (libs: InfraBackendLibs) => { initGetLogAlertsChartPreviewDataRoute(libs); initProcessListRoute(libs); initOverviewRoute(libs); + initInfraMetricsRoute(libs); }; diff --git a/x-pack/plugins/infra/server/routes/infra/README.md b/x-pack/plugins/infra/server/routes/infra/README.md new file mode 100644 index 0000000000000..50a65ce9c89ba --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/README.md @@ -0,0 +1,115 @@ +# Infra Hosts API + +This API returns a list of hosts and their metrics. + +**POST /api/metrics/infra** +parameters: + +- type: asset type. 'host' is the only one supported now +- metrics: list of metrics to be calculated and returned for each host +- sourceId: sourceId to retrieve configuration such as index-pattern used to query the results +- limit: max number of hosts - max 500 +- timeRange: time range object containing start and end attributes - passed in timestamp +- (optional) query: filter + +The response includes: + +- hosts: array of metrics and metadata +- metrics: object containing name of the metric and value +- metadata: object containing name of the metadata and value + +## Examples + +Request + +```bash +curl --location -u elastic:changeme 'http://0.0.0.0:5601/ftw/api/metrics/infra' \ +--header 'kbn-xsrf: xxxx' \ +--header 'Content-Type: application/json' \ +--data '{ + "type": 'host', + "limit": 100, + "metrics": [ + { + "type": "rx" + }, + { + "type": "tx" + }, + { + "type": "memory" + }, + { + "type": "cpu" + }, + { + "type": "diskLatency" + }, + { + "type": "memoryTotal" + } + ], + "query": { + "bool": { + "must": [], + "filter": [], + "should": [], + "must_not": [] + } + }, + "range": { + "from": "2023-04-18T11:15:31.407Z", + "to": "2023-04-18T11:30:31.407Z" + }, + "sourceId": "default" +}' +``` + +Response + +```json +{ + "type": "host", + "nodes":[ + { + "metadata":[ + { + "name":"host.os.name", + "value":null + }, + { + "name":"cloud.provider", + "value":null + } + ], + "metrics":[ + { + "name":"cpu", + "value":0.13271302652800487 + }, + { + "name":"diskLatency", + "value":0 + }, + { + "name":"memory", + "value":0.542838307852529 + }, + { + "name":"memoryTotal", + "value":66640704.099216014 + }, + { + "name":"rx", + "value":3959.4930095127706 + }, + { + "name":"tx", + "value":100.26926542816672 + } + ], + "name":"host-0" + } + ] +} +``` diff --git a/x-pack/plugins/infra/server/routes/infra/index.ts b/x-pack/plugins/infra/server/routes/infra/index.ts new file mode 100644 index 0000000000000..d98e8034e6207 --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/index.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 Boom from '@hapi/boom'; +import { createRouteValidationFunction } from '@kbn/io-ts-utils'; + +import { + GetInfraMetricsRequestBodyPayloadRT, + GetInfraMetricsRequestBodyPayload, + GetInfraMetricsResponsePayloadRT, +} from '../../../common/http_api/infra'; +import { InfraBackendLibs } from '../../lib/infra_types'; +import { getHosts } from './lib/host/get_hosts'; + +export const initInfraMetricsRoute = (libs: InfraBackendLibs) => { + const validateBody = createRouteValidationFunction(GetInfraMetricsRequestBodyPayloadRT); + + const { framework } = libs; + + framework.registerRoute( + { + method: 'post', + path: '/api/metrics/infra', + validate: { + body: validateBody, + }, + }, + async (_, request, response) => { + const [{ savedObjects }, { data }] = await libs.getStartServices(); + const params: GetInfraMetricsRequestBodyPayload = request.body; + + try { + const searchClient = data.search.asScoped(request); + const soClient = savedObjects.getScopedClient(request); + const source = await libs.sources.getSourceConfiguration(soClient, params.sourceId); + + const hosts = await getHosts({ searchClient, sourceConfig: source.configuration, params }); + return response.ok({ + body: GetInfraMetricsResponsePayloadRT.encode(hosts), + }); + } catch (err) { + if (Boom.isBoom(err)) { + return response.customError({ + statusCode: err.output.statusCode, + body: { message: err.output.payload.message }, + }); + } + + return response.customError({ + statusCode: err.statusCode ?? 500, + body: { + message: err.message ?? 'An unexpected error occurred', + }, + }); + } + } + ); +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/constants.ts b/x-pack/plugins/infra/server/routes/infra/lib/constants.ts new file mode 100644 index 0000000000000..bc9131d1d52fc --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/constants.ts @@ -0,0 +1,34 @@ +/* + * 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 { estypes } from '@elastic/elasticsearch'; + +export const BUCKET_KEY = 'host.name'; +export const METADATA_AGGREGATION_NAME = 'metadata'; +export const FILTER_AGGREGATION_SUB_AGG_NAME = 'result'; +export const INVENTORY_MODEL_NODE_TYPE = 'host'; + +export const MAX_SIZE = 500; + +export const METADATA_AGGREGATION: Record = { + [METADATA_AGGREGATION_NAME]: { + top_metrics: { + metrics: [ + { + field: 'host.os.name', + }, + { + field: 'cloud.provider', + }, + ], + size: 1, + sort: { + '@timestamp': 'desc', + }, + }, + }, +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/helpers/query.ts b/x-pack/plugins/infra/server/routes/infra/lib/helpers/query.ts new file mode 100644 index 0000000000000..30a65333987fb --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/helpers/query.ts @@ -0,0 +1,100 @@ +/* + * 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 { estypes } from '@elastic/elasticsearch'; +import { ISearchClient } from '@kbn/data-plugin/common'; +import { ESSearchRequest } from '@kbn/es-types'; +import { catchError, map, Observable } from 'rxjs'; +import { findInventoryModel } from '../../../../../common/inventory_models'; +import { + GetInfraMetricsRequestBodyPayload, + InfraAssetMetricType, +} from '../../../../../common/http_api/infra'; +import { INVENTORY_MODEL_NODE_TYPE } from '../constants'; + +export const createFilters = ({ + params, + extraFilter, + hostNamesShortList = [], +}: { + params: GetInfraMetricsRequestBodyPayload; + hostNamesShortList?: string[]; + extraFilter?: estypes.QueryDslQueryContainer; +}) => { + const extrafilterClause = extraFilter?.bool?.filter; + const extraFilterList = !!extrafilterClause + ? Array.isArray(extrafilterClause) + ? extrafilterClause + : [extrafilterClause] + : []; + + const hostNamesFilter = + hostNamesShortList.length > 0 + ? [ + { + terms: { + 'host.name': hostNamesShortList, + }, + }, + ] + : []; + + return [ + ...hostNamesFilter, + ...extraFilterList, + { + range: { + '@timestamp': { + gte: new Date(params.range.from).getTime(), + lte: new Date(params.range.to).getTime(), + format: 'epoch_millis', + }, + }, + }, + { + exists: { + field: 'host.name', + }, + }, + ]; +}; + +export const runQuery = ( + serchClient: ISearchClient, + queryRequest: ESSearchRequest, + decoder: (aggregation: Record | undefined) => T | undefined +): Observable => { + return serchClient + .search({ + params: queryRequest, + }) + .pipe( + map((res) => decoder(res.rawResponse.aggregations)), + catchError((err) => { + const error = { + message: err.message, + statusCode: err.statusCode, + attributes: err.errBody?.error, + }; + + throw error; + }) + ); +}; + +export const getInventoryModelAggregations = ( + metrics: InfraAssetMetricType[] +): Record => { + const inventoryModel = findInventoryModel(INVENTORY_MODEL_NODE_TYPE); + return metrics.reduce( + (acc, metric) => ({ + ...acc, + ...inventoryModel.metrics.snapshot?.[metric], + }), + {} + ); +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/host/get_all_hosts.ts b/x-pack/plugins/infra/server/routes/infra/lib/host/get_all_hosts.ts new file mode 100644 index 0000000000000..e63f0d78b367d --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/host/get_all_hosts.ts @@ -0,0 +1,77 @@ +/* + * 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 { estypes } from '@elastic/elasticsearch'; +import { lastValueFrom } from 'rxjs'; +import { ESSearchRequest } from '@kbn/es-types'; +import { InfraStaticSourceConfiguration } from '../../../../lib/sources'; +import { decodeOrThrow } from '../../../../../common/runtime_types'; +import { GetInfraMetricsRequestBodyPayload } from '../../../../../common/http_api/infra'; +import { BUCKET_KEY, MAX_SIZE, METADATA_AGGREGATION } from '../constants'; +import { + GetHostsArgs, + HostsMetricsSearchAggregationResponse, + HostsMetricsSearchAggregationResponseRT, +} from '../types'; +import { createFilters, getInventoryModelAggregations, runQuery } from '../helpers/query'; + +export const getAllHosts = async ( + { searchClient, sourceConfig, params }: GetHostsArgs, + hostNamesShortList: string[] = [] +): Promise => { + const query = createQuery(params, sourceConfig, hostNamesShortList); + return lastValueFrom( + runQuery(searchClient, query, decodeOrThrow(HostsMetricsSearchAggregationResponseRT)) + ); +}; + +const createQuery = ( + params: GetInfraMetricsRequestBodyPayload, + sourceConfig: InfraStaticSourceConfiguration, + hostNamesShortList: string[] +): ESSearchRequest => { + const metricAggregations = getInventoryModelAggregations(params.metrics.map((p) => p.type)); + + return { + allow_no_indices: true, + ignore_unavailable: true, + index: sourceConfig.metricAlias, + body: { + size: 0, + query: { + bool: { + filter: createFilters({ + params, + hostNamesShortList, + }), + }, + }, + aggs: createAggregations(params, metricAggregations), + }, + }; +}; + +const createAggregations = ( + { limit }: GetInfraMetricsRequestBodyPayload, + metricAggregations: Record +): Record => { + return { + nodes: { + terms: { + field: BUCKET_KEY, + size: limit ?? MAX_SIZE, + order: { + _key: 'asc', + }, + }, + aggs: { + ...metricAggregations, + ...METADATA_AGGREGATION, + }, + }, + }; +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/host/get_filtered_hosts.ts b/x-pack/plugins/infra/server/routes/infra/lib/host/get_filtered_hosts.ts new file mode 100644 index 0000000000000..95b8753487cf7 --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/host/get_filtered_hosts.ts @@ -0,0 +1,65 @@ +/* + * 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 { ESSearchRequest } from '@kbn/es-types'; +import { lastValueFrom } from 'rxjs'; + +import { InfraStaticSourceConfiguration } from '../../../../lib/sources'; +import { decodeOrThrow } from '../../../../../common/runtime_types'; +import { GetInfraMetricsRequestBodyPayload } from '../../../../../common/http_api/infra'; +import { + FilteredHostsSearchAggregationResponseRT, + FilteredHostsSearchAggregationResponse, + GetHostsArgs, +} from '../types'; +import { BUCKET_KEY, MAX_SIZE } from '../constants'; +import { assertQueryStructure } from '../utils'; +import { createFilters, runQuery } from '../helpers/query'; + +export const getFilteredHosts = async ({ + searchClient, + sourceConfig, + params, +}: GetHostsArgs): Promise => { + const query = createQuery(params, sourceConfig); + return lastValueFrom( + runQuery(searchClient, query, decodeOrThrow(FilteredHostsSearchAggregationResponseRT)) + ); +}; + +const createQuery = ( + params: GetInfraMetricsRequestBodyPayload, + sourceConfig: InfraStaticSourceConfiguration +): ESSearchRequest => { + assertQueryStructure(params.query); + + return { + allow_no_indices: true, + ignore_unavailable: true, + index: sourceConfig.metricAlias, + body: { + size: 0, + query: { + bool: { + ...params.query.bool, + filter: createFilters({ params, extraFilter: params.query }), + }, + }, + aggs: { + nodes: { + terms: { + size: params.limit ?? MAX_SIZE, + field: BUCKET_KEY, + order: { + _key: 'asc', + }, + }, + }, + }, + }, + }; +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/host/get_hosts.ts b/x-pack/plugins/infra/server/routes/infra/lib/host/get_hosts.ts new file mode 100644 index 0000000000000..6d44224661750 --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/host/get_hosts.ts @@ -0,0 +1,35 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { GetInfraMetricsResponsePayload } from '../../../../../common/http_api/infra'; +import { getFilteredHosts } from './get_filtered_hosts'; +import { mapToApiResponse } from '../mapper'; +import { hasFilters } from '../utils'; +import { GetHostsArgs } from '../types'; +import { getAllHosts } from './get_all_hosts'; + +export const getHosts = async (args: GetHostsArgs): Promise => { + const runFilterQuery = hasFilters(args.params.query); + // filter first to prevent filter clauses from impacting the metrics aggregations. + const hostNamesShortList = runFilterQuery ? await getFilteredHostNames(args) : []; + if (runFilterQuery && hostNamesShortList.length === 0) { + return { + type: 'host', + nodes: [], + }; + } + + const result = await getAllHosts(args, hostNamesShortList); + return mapToApiResponse(args.params, result?.nodes.buckets); +}; + +const getFilteredHostNames = async (args: GetHostsArgs) => { + const filteredHosts = await getFilteredHosts(args); + + const { nodes } = filteredHosts ?? {}; + return nodes?.buckets.map((p) => p.key) ?? []; +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/mapper.test.ts b/x-pack/plugins/infra/server/routes/infra/lib/mapper.test.ts new file mode 100644 index 0000000000000..67cd31dc090de --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/mapper.test.ts @@ -0,0 +1,113 @@ +/* + * 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 { mapToApiResponse } from './mapper'; +import { GetInfraMetricsRequestBodyPayload } from '../../../../common/http_api/infra'; + +const metricsApiRequest: GetInfraMetricsRequestBodyPayload = { + type: 'host', + limit: 20, + metrics: [ + { + type: 'cpu', + }, + { + type: 'diskLatency', + }, + { + type: 'memory', + }, + { + type: 'memoryTotal', + }, + { + type: 'rx', + }, + { + type: 'tx', + }, + ], + range: { + from: '2023-04-18T11:15:31.407Z', + to: '2023-04-18T11:15:31.407Z', + }, + query: { bool: [{ must_not: [], filter: [], should: [], must: [] }] }, + sourceId: 'id', +}; + +describe('mapper', () => { + test('should map the aggregation object to the expected response object', () => { + const hosts = mapToApiResponse(metricsApiRequest, [ + { + key: 'host-0', + doc_count: 155, + diskLatency: { + doc_count: 0, + result: { + value: null, + }, + }, + memory: { + value: 0.542838307852529, + }, + tx: { + doc_count: 155, + result: { + value: 100.26926542816672, + }, + }, + rx: { + doc_count: 155, + result: { + value: 3959.4930095127706, + }, + }, + memoryTotal: { + value: 66640704.099216014, + }, + cpu: { + doc_count: 155, + result: { + value: 0.13271302652800487, + }, + }, + metadata: { + top: [ + { + sort: ['2023-04-04T06:35:13.793Z'], + metrics: { + 'host.os.name': null, + 'cloud.provider': '', + }, + }, + ], + }, + }, + ]); + + expect(hosts).toEqual({ + type: 'host', + nodes: [ + { + metadata: [ + { name: 'host.os.name', value: null }, + { name: 'cloud.provider', value: null }, + ], + metrics: [ + { name: 'cpu', value: 0.13271302652800487 }, + { name: 'diskLatency', value: 0 }, + { name: 'memory', value: 0.542838307852529 }, + { name: 'memoryTotal', value: 66640704.099216014 }, + { name: 'rx', value: 3959.4930095127706 }, + { name: 'tx', value: 100.26926542816672 }, + ], + name: 'host-0', + }, + ], + }); + }); +}); diff --git a/x-pack/plugins/infra/server/routes/infra/lib/mapper.ts b/x-pack/plugins/infra/server/routes/infra/lib/mapper.ts new file mode 100644 index 0000000000000..89d2e71b364f9 --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/mapper.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 { BasicMetricValueRT, TopMetricsTypeRT } from '../../../lib/metrics/types'; +import { + GetInfraMetricsRequestBodyPayload, + GetInfraMetricsResponsePayload, + InfraAssetMetadata, + InfraAssetMetrics, +} from '../../../../common/http_api/infra'; + +import { + FilteredMetricsTypeRT, + HostsMetricsSearchBucket, + HostsMetricsSearchValue, + HostsMetricsSearchValueRT, +} from './types'; +import { METADATA_AGGREGATION_NAME } from './constants'; + +export const mapToApiResponse = ( + params: GetInfraMetricsRequestBodyPayload, + buckets?: HostsMetricsSearchBucket[] | undefined +): GetInfraMetricsResponsePayload => { + if (!buckets) { + return { + type: params.type, + nodes: [], + }; + } + + const hosts = buckets.map((bucket) => { + const metrics = convertMetricBucket(params, bucket); + const metadata = convertMetadataBucket(bucket); + + return { name: bucket.key as string, metrics, metadata }; + }); + + return { + type: params.type, + nodes: hosts, + }; +}; + +const normalizeValue = (value: string | number | null) => { + if (typeof value === 'string') { + return value?.trim().length === 0 ? null : value; + } + + return value; +}; + +const convertMetadataBucket = (bucket: HostsMetricsSearchBucket): InfraAssetMetadata[] => { + const metadataAggregation = bucket[METADATA_AGGREGATION_NAME]; + return TopMetricsTypeRT.is(metadataAggregation) + ? metadataAggregation.top + .flatMap((top) => Object.entries(top.metrics)) + .map( + ([key, value]) => + ({ + name: key, + value: normalizeValue(value), + } as InfraAssetMetadata) + ) + : []; +}; + +const convertMetricBucket = ( + params: GetInfraMetricsRequestBodyPayload, + bucket: HostsMetricsSearchBucket +): InfraAssetMetrics[] => { + return params.metrics.map((returnedMetric) => { + const metricBucket = bucket[returnedMetric.type]; + return { + name: returnedMetric.type, + value: HostsMetricsSearchValueRT.is(metricBucket) ? getMetricValue(metricBucket) ?? 0 : null, + } as InfraAssetMetrics; + }); +}; + +export const getMetricValue = (valueObject: HostsMetricsSearchValue) => { + if (FilteredMetricsTypeRT.is(valueObject)) { + return valueObject.result.value; + } + + if (BasicMetricValueRT.is(valueObject)) { + return valueObject.value; + } + + return valueObject; +}; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/types.ts b/x-pack/plugins/infra/server/routes/infra/lib/types.ts new file mode 100644 index 0000000000000..d9800112e7dfe --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/types.ts @@ -0,0 +1,92 @@ +/* + * 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 { estypes } from '@elastic/elasticsearch'; +import { ISearchClient } from '@kbn/data-plugin/common'; +import * as rt from 'io-ts'; +import { InfraStaticSourceConfiguration } from '../../../../common/source_configuration/source_configuration'; + +import { GetInfraMetricsRequestBodyPayload } from '../../../../common/http_api/infra'; +import { BasicMetricValueRT, TopMetricsTypeRT } from '../../../lib/metrics/types'; + +export const FilteredMetricsTypeRT = rt.type({ + doc_count: rt.number, + result: BasicMetricValueRT, +}); + +export const HostsMetricsSearchValueRT = rt.union([ + BasicMetricValueRT, + FilteredMetricsTypeRT, + TopMetricsTypeRT, +]); + +export const HostsMetricsSearchBucketRT = rt.record( + rt.union([rt.string, rt.undefined]), + rt.union([ + rt.string, + rt.number, + HostsMetricsSearchValueRT, + rt.record(rt.string, rt.string), + rt.type({ doc_count: rt.number }), + ]) +); + +export const HostsNameBucketRT = rt.type({ + key: rt.string, + doc_count: rt.number, +}); + +export const HostsMetricsSearchAggregationResponseRT = rt.union([ + rt.type({ + nodes: rt.intersection([ + rt.partial({ + sum_other_doc_count: rt.number, + doc_count_error_upper_bound: rt.number, + }), + rt.type({ buckets: rt.array(HostsMetricsSearchBucketRT) }), + ]), + }), + rt.undefined, +]); + +export const FilteredHostsSearchAggregationResponseRT = rt.union([ + rt.type({ + nodes: rt.intersection([ + rt.partial({ + sum_other_doc_count: rt.number, + doc_count_error_upper_bound: rt.number, + }), + rt.type({ + buckets: rt.array(HostsNameBucketRT), + }), + ]), + }), + rt.undefined, +]); + +export interface HostsMetricsAggregationQueryConfig { + fieldName: string; + aggregation: estypes.AggregationsAggregationContainer; + runtimeField?: estypes.MappingRuntimeFields; +} + +export interface GetHostsArgs { + searchClient: ISearchClient; + sourceConfig: InfraStaticSourceConfiguration; + params: GetInfraMetricsRequestBodyPayload; +} + +export type HostsMetricsSearchValue = rt.TypeOf; +export type HostsMetricsSearchBucket = rt.TypeOf; + +export type FilteredHostsSearchAggregationResponse = rt.TypeOf< + typeof FilteredHostsSearchAggregationResponseRT +>; + +export type HostsMetricsSearchAggregationResponse = rt.TypeOf< + typeof HostsMetricsSearchAggregationResponseRT +>; diff --git a/x-pack/plugins/infra/server/routes/infra/lib/utils.test.ts b/x-pack/plugins/infra/server/routes/infra/lib/utils.test.ts new file mode 100644 index 0000000000000..504585db478cd --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/utils.test.ts @@ -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 { assertQueryStructure, hasFilters } from './utils'; + +const query = { bool: { must_not: [], filter: [], should: [], must: [] } }; + +describe('utils', () => { + describe('assertQueryStructure', () => { + test('should successfully parse a partial query object', () => { + const partialQuery = { + ...query, + bool: { + filter: [], + }, + }; + + expect(() => assertQueryStructure(partialQuery)).not.toThrow(); + }); + + test('should successfully parse query object', () => { + expect(() => assertQueryStructure(query)).not.toThrow(); + }); + + test('should fail to parse query object', () => { + const anyObject = { test: [{ a: 1 }] }; + expect(() => assertQueryStructure(anyObject)).toThrow(); + }); + + test('should fail to parse query object without any filter clause', () => { + const anyObject = { bool: {} }; + expect(() => assertQueryStructure(anyObject)).toThrow(); + }); + }); + describe('hasFilters', () => { + test('should return true if there is any filter', () => { + const result = hasFilters({ + ...query, + bool: { + filter: [ + { + term: { + 'host.name': 'host', + }, + }, + ], + }, + }); + expect(result).toEqual(true); + }); + + test('should return false when there is not filter', () => { + const result = hasFilters(query); + expect(result).toEqual(false); + }); + }); +}); diff --git a/x-pack/plugins/infra/server/routes/infra/lib/utils.ts b/x-pack/plugins/infra/server/routes/infra/lib/utils.ts new file mode 100644 index 0000000000000..7ea5a3d0b4fee --- /dev/null +++ b/x-pack/plugins/infra/server/routes/infra/lib/utils.ts @@ -0,0 +1,49 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import { estypes } from '@elastic/elasticsearch'; +import Boom from '@hapi/boom'; + +type FilterClauses = keyof estypes.QueryDslBoolQuery; +const validClauses: FilterClauses[] = ['must', 'filter', 'must_not', 'should']; + +interface BoolQuery { + bool: estypes.QueryDslBoolQuery; +} + +const isValidFilter = (query: any): query is BoolQuery => { + const boolClause = (query as estypes.QueryDslQueryContainer).bool; + + if (!boolClause || Object.keys(boolClause).length === 0) { + return false; + } + + return [boolClause.filter, boolClause.must, boolClause.must_not, boolClause.should] + .filter(Boolean) + .every((clause) => Array.isArray(clause) || clause === undefined); +}; + +export const assertQueryStructure: (query: any) => asserts query is BoolQuery = (query) => { + if (!isValidFilter(query)) { + throw Boom.badRequest('Invalid query'); + } +}; + +export const hasFilters = (query?: any) => { + if (!query) { + return false; + } + + assertQueryStructure(query); + + // ignores minimum_should_match + return Object.entries(query.bool) + .filter(([key, _]) => validClauses.includes(key as FilterClauses)) + .some(([_, filter]) => { + return Array.isArray(filter) ? filter.length > 0 : !!filter; + }); +}; diff --git a/x-pack/test/api_integration/apis/metrics_ui/index.js b/x-pack/test/api_integration/apis/metrics_ui/index.js index 150a123121051..8a4b7d3398d1c 100644 --- a/x-pack/test/api_integration/apis/metrics_ui/index.js +++ b/x-pack/test/api_integration/apis/metrics_ui/index.js @@ -22,6 +22,7 @@ export default function ({ loadTestFile }) { loadTestFile(require.resolve('./metrics_process_list')); loadTestFile(require.resolve('./metrics_process_list_chart')); loadTestFile(require.resolve('./infra_log_analysis_validation_log_entry_datasets')); + loadTestFile(require.resolve('./infra')); loadTestFile(require.resolve('./inventory_threshold_alert')); }); } diff --git a/x-pack/test/api_integration/apis/metrics_ui/infra.ts b/x-pack/test/api_integration/apis/metrics_ui/infra.ts new file mode 100644 index 0000000000000..4749492982b9d --- /dev/null +++ b/x-pack/test/api_integration/apis/metrics_ui/infra.ts @@ -0,0 +1,265 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +import expect from '@kbn/expect'; + +import { + GetInfraMetricsRequestBodyPayload, + GetInfraMetricsResponsePayload, +} from '@kbn/infra-plugin/common/http_api/infra'; +import { DATES } from './constants'; +import { FtrProviderContext } from '../../ftr_provider_context'; + +const ENDPOINT = '/api/metrics/infra'; + +const normalizeNewLine = (text: string) => { + return text.replaceAll(/(\s{2,}|\\n\\s)/g, ' '); +}; +export default function ({ getService }: FtrProviderContext) { + const esArchiver = getService('esArchiver'); + const supertest = getService('supertest'); + + const basePayload: GetInfraMetricsRequestBodyPayload = { + type: 'host', + limit: 10, + metrics: [ + { + type: 'cpu', + }, + { + type: 'diskLatency', + }, + { + type: 'memory', + }, + { + type: 'memoryTotal', + }, + { + type: 'rx', + }, + { + type: 'tx', + }, + ], + range: { + from: new Date(DATES['8.0.0'].logs_and_metrics.min).toISOString(), + to: new Date(DATES['8.0.0'].logs_and_metrics.max).toISOString(), + }, + query: { bool: { must_not: [], filter: [], should: [], must: [] } }, + sourceId: 'default', + }; + + const makeRequest = async ({ + body, + invalidBody, + expectedHTTPCode, + }: { + body?: GetInfraMetricsRequestBodyPayload; + invalidBody?: any; + expectedHTTPCode: number; + }) => { + return supertest + .post(ENDPOINT) + .set('kbn-xsrf', 'xxx') + .send(body ?? invalidBody) + .expect(expectedHTTPCode); + }; + + describe('Hosts', () => { + before(() => + esArchiver.load('x-pack/test/functional/es_archives/infra/8.0.0/logs_and_metrics') + ); + after(() => + esArchiver.unload('x-pack/test/functional/es_archives/infra/8.0.0/logs_and_metrics') + ); + + describe('fetch hosts', () => { + it('should return metrics for a host', async () => { + const body: GetInfraMetricsRequestBodyPayload = { ...basePayload, limit: 1 }; + const response = await makeRequest({ body, expectedHTTPCode: 200 }); + + expect(response.body.nodes).length(1); + expect(response.body.nodes).eql([ + { + metadata: [ + { name: 'host.os.name', value: 'CentOS Linux' }, + { name: 'cloud.provider', value: 'gcp' }, + ], + metrics: [ + { name: 'cpu', value: 0.44708333333333333 }, + { name: 'diskLatency', value: null }, + { name: 'memory', value: 0.4563333333333333 }, + { name: 'memoryTotal', value: 15768948736 }, + { name: 'rx', value: null }, + { name: 'tx', value: null }, + ], + name: 'gke-observability-8--observability-8--bc1afd95-f0zc', + }, + ]); + }); + + it('should return all hosts if query params is not sent', async () => { + const body: GetInfraMetricsRequestBodyPayload = { + ...basePayload, + metrics: [ + { + type: 'memory', + }, + ], + query: undefined, + }; + + const response = await makeRequest({ body, expectedHTTPCode: 200 }); + expect(response.body.nodes).eql([ + { + metadata: [ + { name: 'host.os.name', value: 'CentOS Linux' }, + { name: 'cloud.provider', value: 'gcp' }, + ], + metrics: [{ name: 'memory', value: 0.4563333333333333 }], + name: 'gke-observability-8--observability-8--bc1afd95-f0zc', + }, + { + metadata: [ + { name: 'host.os.name', value: 'CentOS Linux' }, + { name: 'cloud.provider', value: 'gcp' }, + ], + metrics: [{ name: 'memory', value: 0.32066666666666666 }], + name: 'gke-observability-8--observability-8--bc1afd95-ngmh', + }, + { + metadata: [ + { name: 'host.os.name', value: 'CentOS Linux' }, + { name: 'cloud.provider', value: 'gcp' }, + ], + metrics: [{ name: 'memory', value: 0.2346666666666667 }], + name: 'gke-observability-8--observability-8--bc1afd95-nhhw', + }, + ]); + }); + + it('should return 3 hosts when filtered by "host.os.name=CentOS Linux"', async () => { + const body: GetInfraMetricsRequestBodyPayload = { + ...basePayload, + metrics: [ + { + type: 'cpu', + }, + ], + query: { bool: { filter: [{ term: { 'host.os.name': 'CentOS Linux' } }] } }, + }; + const response = await makeRequest({ body, expectedHTTPCode: 200 }); + + const names = (response.body as GetInfraMetricsResponsePayload).nodes.map((p) => p.name); + expect(names).eql([ + 'gke-observability-8--observability-8--bc1afd95-f0zc', + 'gke-observability-8--observability-8--bc1afd95-ngmh', + 'gke-observability-8--observability-8--bc1afd95-nhhw', + ]); + }); + + it('should return 0 hosts when filtered by "host.os.name=Ubuntu"', async () => { + const body: GetInfraMetricsRequestBodyPayload = { + ...basePayload, + metrics: [ + { + type: 'cpu', + }, + ], + query: { bool: { filter: [{ term: { 'host.os.name': 'Ubuntu' } }] } }, + }; + const response = await makeRequest({ body, expectedHTTPCode: 200 }); + + const names = (response.body as GetInfraMetricsResponsePayload).nodes.map((p) => p.name); + expect(names).eql([]); + }); + }); + + it('should return 0 hosts when filtered by not "host.name=gke-observability-8--observability-8--bc1afd95-nhhw"', async () => { + const body: GetInfraMetricsRequestBodyPayload = { + ...basePayload, + metrics: [ + { + type: 'cpu', + }, + ], + query: { + bool: { + must_not: [ + { term: { 'host.name': 'gke-observability-8--observability-8--bc1afd95-nhhw' } }, + ], + }, + }, + }; + const response = await makeRequest({ body, expectedHTTPCode: 200 }); + + const names = (response.body as GetInfraMetricsResponsePayload).nodes.map((p) => p.name); + expect(names).eql([ + 'gke-observability-8--observability-8--bc1afd95-f0zc', + 'gke-observability-8--observability-8--bc1afd95-ngmh', + ]); + }); + + describe('endpoint validations', () => { + it('should fail when limit is 0', async () => { + const body: GetInfraMetricsRequestBodyPayload = { ...basePayload, limit: 0 }; + const response = await makeRequest({ body, expectedHTTPCode: 400 }); + + expect(normalizeNewLine(response.body.message)).to.be( + '[request body]: Failed to validate: in limit: 0 does not match expected type InRange in limit: 0 does not match expected type pipe(undefined, BooleanFromString)' + ); + }); + + it('should fail when limit is negative', async () => { + const body: GetInfraMetricsRequestBodyPayload = { ...basePayload, limit: -2 }; + const response = await makeRequest({ body, expectedHTTPCode: 400 }); + + expect(normalizeNewLine(response.body.message)).to.be( + '[request body]: Failed to validate: in limit: -2 does not match expected type InRange in limit: -2 does not match expected type pipe(undefined, BooleanFromString)' + ); + }); + + it('should fail when limit above 500', async () => { + const body: GetInfraMetricsRequestBodyPayload = { ...basePayload, limit: 501 }; + const response = await makeRequest({ body, expectedHTTPCode: 400 }); + + expect(normalizeNewLine(response.body.message)).to.be( + '[request body]: Failed to validate: in limit: 501 does not match expected type InRange in limit: 501 does not match expected type pipe(undefined, BooleanFromString)' + ); + }); + + it('should fail when metric is invalid', async () => { + const invalidBody = { ...basePayload, metrics: [{ type: 'any' }] }; + const response = await makeRequest({ invalidBody, expectedHTTPCode: 400 }); + + expect(normalizeNewLine(response.body.message)).to.be( + '[request body]: Failed to validate: in metrics/0/type: "any" does not match expected type "cpu" | "diskLatency" | "memory" | "memoryTotal" | "rx" | "tx"' + ); + }); + + it('should pass when limit is 1', async () => { + const body: GetInfraMetricsRequestBodyPayload = { ...basePayload, limit: 1 }; + await makeRequest({ body, expectedHTTPCode: 200 }); + }); + + it('should pass when limit is 500', async () => { + const body: GetInfraMetricsRequestBodyPayload = { ...basePayload, limit: 500 }; + await makeRequest({ body, expectedHTTPCode: 200 }); + }); + + it('should fail when range is not informed', async () => { + const invalidBody = { ...basePayload, range: undefined }; + const response = await makeRequest({ invalidBody, expectedHTTPCode: 400 }); + + expect(normalizeNewLine(response.body.message)).to.be( + '[request body]: Failed to validate: in range: undefined does not match expected type { from: Date, to: Date }' + ); + }); + }); + }); +} From 2773faa05e9324aefdbbae031ba42fc6ca56ef23 Mon Sep 17 00:00:00 2001 From: Ryland Herrick Date: Thu, 20 Apr 2023 16:13:26 -0400 Subject: [PATCH 46/60] [Security Solution] Mapping cleanup for Signals Migration Saved Object (#154949) ## Summary These fields are captured in schema elsewhere (and validated there as well). This effort is part of elastic/security-team#6268. --- .../group2/check_registered_types.test.ts | 2 +- .../migrations/saved_objects.ts | 34 ++----------------- 2 files changed, 4 insertions(+), 32 deletions(-) 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 0adc6e5f084fd..6c7e00b1822b7 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 @@ -130,7 +130,7 @@ describe('checking migration metadata changes on all registered SO types', () => "search-session": "fae0dfc63274d6a3b90ca583802c48cab8760637", "search-telemetry": "1bbaf2db531b97fa04399440fa52d46e86d54dd8", "security-rule": "151108f4906744a137ddc89f5988310c5b9ba8b6", - "security-solution-signals-migration": "c2db409c1857d330beb3d6fd188fa186f920302c", + "security-solution-signals-migration": "0be3bed0f2ff4fe460493751b8be610a785c5c98", "siem-detection-engine-rule-actions": "123c130dc38120a470d8db9fed9a4cebd2046445", "siem-ui-timeline": "e9d6b3a9fd7af6dc502293c21cbdb309409f3996", "siem-ui-timeline-note": "13c9d4c142f96624a93a623c6d7cba7e1ae9b5a6", diff --git a/x-pack/plugins/security_solution/server/lib/detection_engine/migrations/saved_objects.ts b/x-pack/plugins/security_solution/server/lib/detection_engine/migrations/saved_objects.ts index 8a168d3c43ba0..fcb6aede4973f 100644 --- a/x-pack/plugins/security_solution/server/lib/detection_engine/migrations/saved_objects.ts +++ b/x-pack/plugins/security_solution/server/lib/detection_engine/migrations/saved_objects.ts @@ -10,44 +10,16 @@ import type { SavedObjectsType } from '@kbn/core/server'; export const signalsMigrationType = 'security-solution-signals-migration'; export const signalsMigrationMappings: SavedObjectsType['mappings'] = { + dynamic: false, properties: { sourceIndex: { type: 'keyword', }, - destinationIndex: { - type: 'keyword', - index: false, - }, - version: { - type: 'long', - }, - error: { - type: 'text', - index: false, - }, - taskId: { - type: 'keyword', - index: false, - }, - status: { - type: 'keyword', - index: false, - }, - created: { - type: 'date', - index: false, - }, - createdBy: { - type: 'text', - index: false, - }, updated: { type: 'date', - index: false, }, - updatedBy: { - type: 'text', - index: false, + version: { + type: 'long', }, }, }; From f359b6ab4133b625da708cbf9ccad9fe090c15e8 Mon Sep 17 00:00:00 2001 From: Ido Cohen <90558359+CohenIdo@users.noreply.github.com> Date: Thu, 20 Apr 2023 23:13:47 +0300 Subject: [PATCH 47/60] [Cloud Security] first telemetry for vulnerability (#155031) --- .../collectors/indices_stats_collector.ts | 8 ++++- .../server/lib/telemetry/collectors/schema.ts | 28 ++++++++++++++++ .../server/lib/telemetry/collectors/types.ts | 2 ++ .../schema/xpack_plugins.json | 32 +++++++++++++++++++ 4 files changed, 69 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/indices_stats_collector.ts b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/indices_stats_collector.ts index fabd8cd6581bc..7797bdd521cc3 100644 --- a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/indices_stats_collector.ts +++ b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/indices_stats_collector.ts @@ -14,6 +14,8 @@ import { BENCHMARK_SCORE_INDEX_DEFAULT_NS, FINDINGS_INDEX_DEFAULT_NS, LATEST_FINDINGS_INDEX_DEFAULT_NS, + LATEST_VULNERABILITIES_INDEX_DEFAULT_NS, + VULNERABILITIES_INDEX_DEFAULT_NS, } from '../../../../common/constants'; const getIndexDocCount = (esClient: ElasticsearchClient, index: string) => @@ -76,9 +78,11 @@ export const getIndicesStats = async ( coreServices: Promise<[CoreStart, CspServerPluginStartDeps, CspServerPluginStart]>, logger: Logger ): Promise => { - const [findings, latestFindings, score] = await Promise.all([ + const [findings, latestFindings, vulMng, vulMngLatest, score] = await Promise.all([ getIndexStats(esClient, FINDINGS_INDEX_DEFAULT_NS, logger), getIndexStats(esClient, LATEST_FINDINGS_INDEX_DEFAULT_NS, logger), + getIndexStats(esClient, VULNERABILITIES_INDEX_DEFAULT_NS, logger), + getIndexStats(esClient, LATEST_VULNERABILITIES_INDEX_DEFAULT_NS, logger), getIndexStats(esClient, BENCHMARK_SCORE_INDEX_DEFAULT_NS, logger), ]); @@ -100,6 +104,8 @@ export const getIndicesStats = async ( return { findings, latest_findings: latestFindings, + vulnerabilities: vulMng, + latest_vulnerabilities: vulMngLatest, score, latestPackageVersion: status.latestPackageVersion, diff --git a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/schema.ts b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/schema.ts index 77f24d98f24a6..4fb7bfee22692 100644 --- a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/schema.ts +++ b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/schema.ts @@ -38,6 +38,34 @@ export const cspmUsageSchema: MakeSchemaFrom = { type: 'date', }, }, + vulnerabilities: { + doc_count: { + type: 'long', + }, + deleted: { + type: 'long', + }, + size_in_bytes: { + type: 'long', + }, + last_doc_timestamp: { + type: 'date', + }, + }, + latest_vulnerabilities: { + doc_count: { + type: 'long', + }, + deleted: { + type: 'long', + }, + size_in_bytes: { + type: 'long', + }, + last_doc_timestamp: { + type: 'date', + }, + }, score: { doc_count: { type: 'long', diff --git a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/types.ts b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/types.ts index ebfc02b7c3e3a..8651a3f577c1d 100644 --- a/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/types.ts +++ b/x-pack/plugins/cloud_security_posture/server/lib/telemetry/collectors/types.ts @@ -17,6 +17,8 @@ export interface CspmUsage { export interface CspmIndicesStats { findings: IndexStats | {}; latest_findings: IndexStats | {}; + vulnerabilities: IndexStats | {}; + latest_vulnerabilities: IndexStats | {}; score: IndexStats | {}; latestPackageVersion: string; cspm: BaseCspSetupBothPolicy; diff --git a/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json b/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json index 594373a71e188..88270d7102caa 100644 --- a/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json +++ b/x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @@ -5454,6 +5454,38 @@ } } }, + "vulnerabilities": { + "properties": { + "doc_count": { + "type": "long" + }, + "deleted": { + "type": "long" + }, + "size_in_bytes": { + "type": "long" + }, + "last_doc_timestamp": { + "type": "date" + } + } + }, + "latest_vulnerabilities": { + "properties": { + "doc_count": { + "type": "long" + }, + "deleted": { + "type": "long" + }, + "size_in_bytes": { + "type": "long" + }, + "last_doc_timestamp": { + "type": "date" + } + } + }, "score": { "properties": { "doc_count": { From 04f151d27ce8fc51f0ae4d9b40f4763899bd0644 Mon Sep 17 00:00:00 2001 From: Yara Tercero Date: Thu, 20 Apr 2023 13:14:05 -0700 Subject: [PATCH 48/60] [Security Solution][Exceptions] - Fix issue with tags in shared exception list manage rules component (#155219) ## Summary Addresses https://github.com/elastic/kibana/issues/153077, https://github.com/elastic/kibana/issues/153077 This PR addresses two bugs in the manage rules component for shared exception lists: - Fixes issue where numeric tags were getting overwritten after selecting a tag after it - Fixes issue where tag selection was not "exact" match, to be the same behavior as in the manage rules table --- .../add_to_rules_table/index.tsx | 10 ++--- .../use_add_to_rules_table.test.tsx | 1 + .../use_add_to_rules_table.tsx | 7 ++-- .../flyout_components/translations.ts | 22 +++++++++++ .../components/flyout_components/utils.tsx | 37 +++++++++++++++++-- 5 files changed, 64 insertions(+), 13 deletions(-) diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/index.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/index.tsx index 4760371ce5e81..dbd11e0c486f3 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/index.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/index.tsx @@ -7,7 +7,8 @@ import React from 'react'; -import { EuiSpacer, EuiPanel, EuiText, EuiInMemoryTable, EuiLoadingContent } from '@elastic/eui'; +import type { Search } from '@elastic/eui'; +import { EuiSkeletonText, EuiSpacer, EuiPanel, EuiText, EuiInMemoryTable } from '@elastic/eui'; import type { Rule } from '../../../../rule_management/logic/types'; import { useAddToRulesTable } from './use_add_to_rules_table'; @@ -40,7 +41,7 @@ const ExceptionsAddToRulesTableComponent: React.FC tableLayout="auto" - search={searchOptions} + search={searchOptions as Search} data-test-subj="addExceptionToRulesTable" tableCaption="Rules table" items={sortedRulesByLinkedRulesOnTop} @@ -48,10 +49,7 @@ const ExceptionsAddToRulesTableComponent: React.FC + ) : undefined } pagination={pagination} diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.test.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.test.tsx index 42fbc6dce160e..5ec0af8ae9fd0 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.test.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.test.tsx @@ -146,6 +146,7 @@ describe('useAddToRulesTable', () => { const { options } = filters[0]; expect(options).toEqual([ { + field: 'tags', name: 'some fake tag 1', value: 'some fake tag 1', }, diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.tsx index eead15990f521..74b7905a37b17 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/add_to_rules_table/use_add_to_rules_table.tsx @@ -70,18 +70,19 @@ export const useAddToRulesTable = ({ tags.forEach((tag) => acc.add(tag)); return acc; }, new Set()); - return [...uniqueTags].map((tag) => ({ value: tag, name: tag })); + return Array.from(uniqueTags).map((tag) => ({ value: tag, name: tag, field: 'tags' })); }, [sortedRulesByLinkedRulesOnTop]); const searchOptions = useMemo( () => ({ box: { incremental: true, + schema: true, }, filters: [ { type: 'field_value_selection' as const, - field: 'tags', + operator: 'exact', name: i18n.translate( 'xpack.securitySolution.exceptions.addToRulesTable.tagsFilterLabel', { @@ -103,7 +104,7 @@ export const useAddToRulesTable = ({ name: commonI18n.LINK_COLUMN, align: 'left' as HorizontalAlignment, 'data-test-subj': 'ruleActionLinkRuleSwitch', - render: (_, rule: Rule) => ( + render: (_: unknown, rule: Rule) => ( ), }, diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/translations.ts b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/translations.ts index 752e15bd86a43..7c352e5f6ce19 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/translations.ts +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/translations.ts @@ -20,9 +20,31 @@ export const VIEW_RULE_DETAIL_ACTION = i18n.translate( defaultMessage: 'View rule detail', } ); + export const LINK_COLUMN = i18n.translate( 'xpack.securitySolution.rule_exceptions.flyoutComponents.addToRulesTableSelection.link_column', { defaultMessage: 'Link', } ); + +export const NAME_COLUMN = i18n.translate( + 'xpack.securitySolution.rule_exceptions.flyoutComponents.addToRulesTableSelection.name_column', + { + defaultMessage: 'Name', + } +); + +export const ACTION_COLUMN = i18n.translate( + 'xpack.securitySolution.rule_exceptions.flyoutComponents.addToRulesTableSelection.action_column', + { + defaultMessage: 'Action', + } +); + +export const TAGS_COLUMN = i18n.translate( + 'xpack.securitySolution.rule_exceptions.flyoutComponents.addToRulesTableSelection.tags_column', + { + defaultMessage: 'Tags', + } +); diff --git a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/utils.tsx b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/utils.tsx index 4d1570ba3b491..98e59d12681cc 100644 --- a/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/utils.tsx +++ b/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions/components/flyout_components/utils.tsx @@ -13,11 +13,13 @@ import { ExceptionListTypeEnum } from '@kbn/securitysolution-io-ts-list-types'; import type { ExceptionsBuilderReturnExceptionItem } from '@kbn/securitysolution-list-utils'; import type { HorizontalAlignment } from '@elastic/eui'; +import { EuiBadge } from '@elastic/eui'; import type { Moment } from 'moment'; import { HeaderMenu, generateLinkedRulesMenuItems, } from '@kbn/securitysolution-exception-list-components'; +import { PopoverItems } from '../../../../common/components/popover_items'; import { SecurityPageName } from '../../../../../common/constants'; import { ListDetailsLinkAnchor } from '../../../../exceptions/components'; import { @@ -204,7 +206,7 @@ export const enrichExceptionItemsForUpdate = ({ export const getSharedListsTableColumns = () => [ { field: 'name', - name: 'Name', + name: i18n.NAME_COLUMN, sortable: true, 'data-test-subj': 'exceptionListNameCell', }, @@ -230,7 +232,7 @@ export const getSharedListsTableColumns = () => [ ), }, { - name: 'Action', + name: i18n.ACTION_COLUMN, 'data-test-subj': 'exceptionListRulesActionCell', render: (list: ExceptionListRuleReferencesSchema) => { @@ -255,13 +257,40 @@ export const getRulesTableColumn = () => [ { field: 'name', align: 'left' as HorizontalAlignment, - name: 'Name', + name: i18n.NAME_COLUMN, sortable: true, 'data-test-subj': 'ruleNameCell', truncateText: false, }, { - name: 'Action', + field: 'tags', + align: 'left' as HorizontalAlignment, + name: i18n.TAGS_COLUMN, + 'data-test-subj': 'ruleNameCell', + render: (tags: Rule['tags']) => { + if (tags.length === 0) { + return null; + } + + const renderItem = (tag: string, i: number) => ( + + {tag} + + ); + return ( + + ); + }, + }, + { + name: i18n.ACTION_COLUMN, 'data-test-subj': 'ruleAction-view', render: (rule: Rule) => { return ( From e4ae398e6d1bb95aaaacbde3328a72daad348bc5 Mon Sep 17 00:00:00 2001 From: Lisa Cawley Date: Thu, 20 Apr 2023 13:20:52 -0700 Subject: [PATCH 49/60] [ResponseOps] Edit snooze recurring label (#155338) --- x-pack/plugins/translations/translations/fr-FR.json | 1 - x-pack/plugins/translations/translations/ja-JP.json | 1 - x-pack/plugins/translations/translations/zh-CN.json | 1 - .../sections/rules_list/components/rule_snooze/scheduler.tsx | 4 ++-- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/x-pack/plugins/translations/translations/fr-FR.json b/x-pack/plugins/translations/translations/fr-FR.json index 969438e555138..7a86a2d49d1ba 100644 --- a/x-pack/plugins/translations/translations/fr-FR.json +++ b/x-pack/plugins/translations/translations/fr-FR.json @@ -36320,7 +36320,6 @@ "xpack.triggersActionsUI.ruleSnoozeScheduler.recurYearly": "Annuel", "xpack.triggersActionsUI.ruleSnoozeScheduler.repeatIntervalLabel": "Chaque", "xpack.triggersActionsUI.ruleSnoozeScheduler.repeatLabel": "Répéter", - "xpack.triggersActionsUI.ruleSnoozeScheduler.reucrringSwitch": "Rendre récurrent", "xpack.triggersActionsUI.ruleSnoozeScheduler.saveSchedule": "Enregistrer le calendrier", "xpack.triggersActionsUI.ruleSnoozeScheduler.timezoneLabel": "Fuseau horaire", "xpack.triggersActionsUI.rulesSettings.flapping.alertFlappingDetection": "Détection de bagotement d'alerte", diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index 9bad4964ca71c..a8c59ef19152c 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -36288,7 +36288,6 @@ "xpack.triggersActionsUI.ruleSnoozeScheduler.recurYearly": "年ごと", "xpack.triggersActionsUI.ruleSnoozeScheduler.repeatIntervalLabel": "毎", "xpack.triggersActionsUI.ruleSnoozeScheduler.repeatLabel": "繰り返し", - "xpack.triggersActionsUI.ruleSnoozeScheduler.reucrringSwitch": "繰り返しにする", "xpack.triggersActionsUI.ruleSnoozeScheduler.saveSchedule": "スケジュールを保存", "xpack.triggersActionsUI.ruleSnoozeScheduler.timezoneLabel": "タイムゾーン", "xpack.triggersActionsUI.rulesSettings.flapping.alertFlappingDetection": "アラートフラップ検出", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index d800cf3c9c612..9ad3258100c35 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -36315,7 +36315,6 @@ "xpack.triggersActionsUI.ruleSnoozeScheduler.recurYearly": "每年", "xpack.triggersActionsUI.ruleSnoozeScheduler.repeatIntervalLabel": "每", "xpack.triggersActionsUI.ruleSnoozeScheduler.repeatLabel": "重复", - "xpack.triggersActionsUI.ruleSnoozeScheduler.reucrringSwitch": "设为定期", "xpack.triggersActionsUI.ruleSnoozeScheduler.saveSchedule": "保存计划", "xpack.triggersActionsUI.ruleSnoozeScheduler.timezoneLabel": "时区", "xpack.triggersActionsUI.rulesSettings.flapping.alertFlappingDetection": "告警摆动检测", diff --git a/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/scheduler.tsx b/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/scheduler.tsx index 3c65a2afba551..1520255f21a80 100644 --- a/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/scheduler.tsx +++ b/x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_snooze/scheduler.tsx @@ -330,8 +330,8 @@ const RuleSnoozeSchedulerPanel: React.FunctionComponent = ({ setIsRecurring(!isRecurring)} checked={isRecurring} From 45f102f0febae8ba1f921b59252784bcc58467c2 Mon Sep 17 00:00:00 2001 From: Jeramy Soucy Date: Thu, 20 Apr 2023 16:28:06 -0400 Subject: [PATCH 50/60] Fixes security plugin capabilities switcher to handle opt-out and default behaviors (#154098) Closes https://github.com/elastic/kibana/issues/153817 ## Summary This PR implements logical checks within the security plugin's capabilities switcher to account for features that opt out of the Kibana security model (e.g. Enterprise Search features). It also more explicitly handles default cases (when a feature is neither a Kibana or ES feature), exclusions (features handled exclusively by other plugins), and the catalogue feature (we now qualify each catalogue feature capability). In these cases (opt-out, default, exclusion, etc.), the capabilities switcher will ignore the capability and neither enable nor disable it (see detailed list below). We are now effectively ignoring only these: - `spaces` feature ID (handled by spaces plugin capabilities switcher) - `fileUpload` feature ID (handled by file_upload plugin capabilities switcher) - `catalogue` capabilities that are not 'spaces' and are not referenced by at least one Kibana or ES feature - `navLinks` that are not referenced by at least one Kibana feature - Anything that is not a global settings, management, catalogue, nav link, Kibana, or ES feature On the flip side we always affect everything under the `management` feature. This PR _should_ unblock the ability to implement parallel execution of capabilities switchers, https://github.com/elastic/kibana/pull/152982. ### Related Tests - x-pack/plugins/security/server/authorization/disable_ui_capabilities.test.ts - x-pack/test/ui_capabilities/security_and_spaces/config.ts - x-pack/test/functional/apps/home/config.ts --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> --- .../disable_ui_capabilities.test.ts | 559 +++++++++--------- .../authorization/disable_ui_capabilities.ts | 56 +- 2 files changed, 329 insertions(+), 286 deletions(-) diff --git a/x-pack/plugins/security/server/authorization/disable_ui_capabilities.test.ts b/x-pack/plugins/security/server/authorization/disable_ui_capabilities.test.ts index dd07324835303..7d0039c9106d2 100644 --- a/x-pack/plugins/security/server/authorization/disable_ui_capabilities.test.ts +++ b/x-pack/plugins/security/server/authorization/disable_ui_capabilities.test.ts @@ -66,8 +66,145 @@ const createMockUser = (user: Partial = {}) => ...user, } as AuthenticatedUser); +const kibanaFeature1 = new KibanaFeature({ + id: 'kibanaFeature1', + name: 'KibanaFeature1', + app: ['app1'], + category: { id: 'foo', label: 'foo' }, + privileges: { + all: { + app: ['foo'], + catalogue: ['foo'], + savedObject: { + all: ['foo'], + read: [], + }, + ui: ['save', 'show'], + }, + read: { + app: ['foo'], + catalogue: ['foo'], + savedObject: { + all: [], + read: ['foo'], + }, + ui: ['show'], + }, + }, +}); + +const kibanaFeature2 = new KibanaFeature({ + id: 'kibanaFeature2', + name: 'KibanaFeature2', + app: ['app1', 'app2'], + category: { id: 'foo', label: 'foo' }, + privileges: { + all: { + app: ['foo'], + catalogue: ['foo'], + savedObject: { + all: ['foo'], + read: [], + }, + ui: ['save', 'show'], + }, + read: { + app: ['foo'], + catalogue: ['foo'], + savedObject: { + all: [], + read: ['foo'], + }, + ui: ['show'], + }, + }, +}); + +const optOutKibanaFeature = new KibanaFeature({ + id: 'optOutFeature', + name: 'Feature that opts out of Kibana sec model', + app: [], + category: { id: 'optOut', label: 'optOut' }, + privileges: null, +}); + +const esManagementFeature = new ElasticsearchFeature({ + id: 'esManagementFeature', + management: { + kibana: ['esManagement'], + }, + privileges: [ + { + requiredClusterPrivileges: ['manage_security'], + ui: [], + }, + ], +}); + describe('usingPrivileges', () => { describe('checkPrivileges errors', () => { + const inputCapabilities = Object.freeze({ + navLinks: { + app1: true, + app2: true, + app3: true, + }, + management: { + kibana: { + indices: true, + }, + }, + catalogue: {}, + kibanaFeature2: { + foo: true, + bar: true, + }, + optOutFeature: { + foo: true, + bar: true, + }, + esManagementFeature: { + foo: true, + bar: true, + }, + unregisteredFeature: { + foo: true, + bar: true, + }, + }); + + const expectedDisabled = Object.freeze({ + navLinks: { + app1: false, + app2: false, + app3: true, // will not diable unregistered app link + }, + management: { + kibana: { + indices: false, + }, + }, + catalogue: {}, + kibanaFeature2: { + foo: false, + bar: false, + }, + optOutFeature: { + // will not disbale features that opt out of Kibana security + foo: true, + bar: true, + }, + esManagementFeature: { + foo: false, + bar: false, + }, + unregisteredFeature: { + // will not disble unregistered features + foo: true, + bar: true, + }, + }); + test(`disables uiCapabilities when a 401 is thrown`, async () => { const mockAuthz = createMockAuthz({ rejectCheckPrivileges: { statusCode: 401, message: 'super informative message' }, @@ -76,76 +213,16 @@ describe('usingPrivileges', () => { const { usingPrivileges } = disableUICapabilitiesFactory( mockRequest, - [ - new KibanaFeature({ - id: 'fooFeature', - name: 'Foo KibanaFeature', - app: ['fooApp', 'foo'], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - ], - [ - new ElasticsearchFeature({ - id: 'esFeature', - privileges: [ - { - requiredClusterPrivileges: [], - ui: [], - }, - ], - }), - ], + [kibanaFeature2, optOutKibanaFeature], + [esManagementFeature], mockLoggers.get(), mockAuthz, createMockUser() ); - const result = await usingPrivileges( - Object.freeze({ - navLinks: { - foo: true, - fooApp: true, - bar: true, - }, - management: { - kibana: { - indices: true, - }, - }, - catalogue: {}, - fooFeature: { - foo: true, - bar: true, - }, - barFeature: { - foo: true, - bar: true, - }, - }) - ); + const result = await usingPrivileges(inputCapabilities); - expect(result).toEqual({ - navLinks: { - foo: false, - fooApp: false, - bar: true, - }, - management: { - kibana: { - indices: false, - }, - }, - catalogue: {}, - fooFeature: { - foo: false, - bar: false, - }, - barFeature: { - foo: false, - bar: false, - }, - }); + expect(result).toEqual(expectedDisabled); expect(loggingSystemMock.collect(mockLoggers).debug).toMatchInlineSnapshot(` Array [ @@ -164,74 +241,17 @@ describe('usingPrivileges', () => { const { usingPrivileges } = disableUICapabilitiesFactory( mockRequest, - [ - new KibanaFeature({ - id: 'fooFeature', - name: 'Foo KibanaFeature', - app: ['foo'], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - ], - [ - new ElasticsearchFeature({ - id: 'esFeature', - privileges: [ - { - requiredClusterPrivileges: [], - ui: [], - }, - ], - }), - ], + [kibanaFeature2, optOutKibanaFeature], + [esManagementFeature], mockLoggers.get(), mockAuthz, createMockUser() ); - const result = await usingPrivileges( - Object.freeze({ - navLinks: { - foo: true, - bar: true, - }, - management: { - kibana: { - indices: true, - }, - }, - catalogue: {}, - fooFeature: { - foo: true, - bar: true, - }, - barFeature: { - foo: true, - bar: true, - }, - }) - ); + const result = await usingPrivileges(inputCapabilities); + + expect(result).toEqual(expectedDisabled); - expect(result).toEqual({ - navLinks: { - foo: false, - bar: true, - }, - management: { - kibana: { - indices: false, - }, - }, - catalogue: {}, - fooFeature: { - foo: false, - bar: false, - }, - barFeature: { - foo: false, - bar: false, - }, - }); expect(loggingSystemMock.collect(mockLoggers).debug).toMatchInlineSnapshot(` Array [ Array [ @@ -284,24 +304,64 @@ describe('usingPrivileges', () => { }); }); + const esFeatures = [ + new ElasticsearchFeature({ + id: 'esFeature', + privileges: [ + { + requiredClusterPrivileges: ['manage'], + ui: ['es_manage'], + }, + { + requiredClusterPrivileges: ['monitor'], + ui: ['es_monitor'], + }, + ], + }), + new ElasticsearchFeature({ + id: 'esSecurityFeature', + privileges: [ + { + requiredClusterPrivileges: ['manage_security'], + ui: ['es_manage_sec'], + }, + ], + }), + new ElasticsearchFeature({ + id: 'esManagementFeature', + management: { + kibana: ['esManagement'], + }, + privileges: [ + { + requiredClusterPrivileges: ['manage_security'], + ui: [], + }, + ], + }), + ]; + test(`disables ui capabilities when they don't have privileges`, async () => { + // grant some privileges const mockAuthz = createMockAuthz({ resolveCheckPrivileges: { privileges: { kibana: [ - { privilege: actions.ui.get('navLinks', 'foo'), authorized: true }, - { privilege: actions.ui.get('navLinks', 'bar'), authorized: false }, - { privilege: actions.ui.get('navLinks', 'quz'), authorized: false }, + { privilege: actions.ui.get('navLinks', 'app1'), authorized: true }, + { privilege: actions.ui.get('navLinks', 'app2'), authorized: false }, + { privilege: actions.ui.get('navLinks', 'app3'), authorized: false }, { privilege: actions.ui.get('management', 'kibana', 'indices'), authorized: true }, { privilege: actions.ui.get('management', 'kibana', 'settings'), authorized: false }, { privilege: actions.ui.get('management', 'kibana', 'esManagement'), authorized: false, }, - { privilege: actions.ui.get('fooFeature', 'foo'), authorized: true }, - { privilege: actions.ui.get('fooFeature', 'bar'), authorized: false }, - { privilege: actions.ui.get('barFeature', 'foo'), authorized: true }, - { privilege: actions.ui.get('barFeature', 'bar'), authorized: false }, + { privilege: actions.ui.get('kibanaFeature1', 'foo'), authorized: true }, + { privilege: actions.ui.get('kibanaFeature1', 'bar'), authorized: false }, + { privilege: actions.ui.get('kibanaFeature2', 'foo'), authorized: true }, + { privilege: actions.ui.get('kibanaFeature2', 'bar'), authorized: false }, + { privilege: actions.ui.get('optOutFeature', 'foo'), authorized: false }, + { privilege: actions.ui.get('optOutFeature', 'bar'), authorized: false }, ], elasticsearch: { cluster: [ @@ -317,58 +377,8 @@ describe('usingPrivileges', () => { const { usingPrivileges } = disableUICapabilitiesFactory( mockRequest, - [ - new KibanaFeature({ - id: 'fooFeature', - name: 'Foo KibanaFeature', - app: [], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - new KibanaFeature({ - id: 'barFeature', - name: 'Bar KibanaFeature', - app: ['bar'], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - ], - [ - new ElasticsearchFeature({ - id: 'esFeature', - privileges: [ - { - requiredClusterPrivileges: ['manage'], - ui: ['es_manage'], - }, - { - requiredClusterPrivileges: ['monitor'], - ui: ['es_monitor'], - }, - ], - }), - new ElasticsearchFeature({ - id: 'esSecurityFeature', - privileges: [ - { - requiredClusterPrivileges: ['manage_security'], - ui: ['es_manage_sec'], - }, - ], - }), - new ElasticsearchFeature({ - id: 'esManagementFeature', - management: { - kibana: ['esManagement'], - }, - privileges: [ - { - requiredClusterPrivileges: ['manage_security'], - ui: [], - }, - ], - }), - ], + [kibanaFeature1, kibanaFeature2, optOutKibanaFeature], + esFeatures, loggingSystemMock.create().get(), mockAuthz, createMockUser() @@ -377,9 +387,9 @@ describe('usingPrivileges', () => { const result = await usingPrivileges( Object.freeze({ navLinks: { - foo: true, - bar: true, - quz: true, + app1: true, + app2: true, + app3: true, }, management: { kibana: { @@ -389,11 +399,15 @@ describe('usingPrivileges', () => { }, }, catalogue: {}, - fooFeature: { + kibanaFeature1: { foo: true, bar: true, }, - barFeature: { + kibanaFeature2: { + foo: true, + bar: true, + }, + optOutFeature: { foo: true, bar: true, }, @@ -410,9 +424,9 @@ describe('usingPrivileges', () => { expect(result).toEqual({ navLinks: { - foo: true, - bar: false, - quz: true, + app1: true, + app2: false, + app3: true, }, management: { kibana: { @@ -422,14 +436,19 @@ describe('usingPrivileges', () => { }, }, catalogue: {}, - fooFeature: { + kibanaFeature1: { foo: true, bar: false, }, - barFeature: { + kibanaFeature2: { foo: true, bar: false, }, + optOutFeature: { + // these stay enabled because they opt out of Kibana security + foo: true, + bar: true, + }, esFeature: { es_manage: false, es_monitor: true, @@ -442,6 +461,7 @@ describe('usingPrivileges', () => { }); test(`doesn't re-enable disabled uiCapabilities`, async () => { + // grant all privileges const mockAuthz = createMockAuthz({ resolveCheckPrivileges: { privileges: { @@ -449,13 +469,19 @@ describe('usingPrivileges', () => { { privilege: actions.ui.get('navLinks', 'foo'), authorized: true }, { privilege: actions.ui.get('navLinks', 'bar'), authorized: true }, { privilege: actions.ui.get('management', 'kibana', 'indices'), authorized: true }, - { privilege: actions.ui.get('fooFeature', 'foo'), authorized: true }, - { privilege: actions.ui.get('fooFeature', 'bar'), authorized: true }, - { privilege: actions.ui.get('barFeature', 'foo'), authorized: true }, - { privilege: actions.ui.get('barFeature', 'bar'), authorized: true }, + { privilege: actions.ui.get('kibanaFeature1', 'foo'), authorized: true }, + { privilege: actions.ui.get('kibanaFeature1', 'bar'), authorized: true }, + { privilege: actions.ui.get('kibanaFeature2', 'foo'), authorized: true }, + { privilege: actions.ui.get('kibanaFeature2', 'bar'), authorized: true }, + { privilege: actions.ui.get('optOutFeature', 'foo'), authorized: true }, + { privilege: actions.ui.get('optOutFeature', 'bar'), authorized: true }, ], elasticsearch: { - cluster: [], + cluster: [ + { privilege: 'manage', authorized: true }, + { privilege: 'monitor', authorized: true }, + { privilege: 'manage_security', authorized: true }, + ], index: {}, }, }, @@ -464,62 +490,14 @@ describe('usingPrivileges', () => { const { usingPrivileges } = disableUICapabilitiesFactory( mockRequest, - [ - new KibanaFeature({ - id: 'fooFeature', - name: 'Foo KibanaFeature', - app: [], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - new KibanaFeature({ - id: 'barFeature', - name: 'Bar KibanaFeature', - app: [], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - ], - [ - new ElasticsearchFeature({ - id: 'esFeature', - privileges: [ - { - requiredClusterPrivileges: [], - ui: [], - }, - ], - }), - ], + [kibanaFeature1, kibanaFeature2, optOutKibanaFeature], + esFeatures, loggingSystemMock.create().get(), mockAuthz, createMockUser() ); - const result = await usingPrivileges( - Object.freeze({ - navLinks: { - foo: false, - bar: false, - }, - management: { - kibana: { - indices: false, - }, - }, - catalogue: {}, - fooFeature: { - foo: false, - bar: false, - }, - barFeature: { - foo: false, - bar: false, - }, - }) - ); - - expect(result).toEqual({ + const allFalseCapabilities = Object.freeze({ navLinks: { foo: false, bar: false, @@ -530,36 +508,43 @@ describe('usingPrivileges', () => { }, }, catalogue: {}, - fooFeature: { + kibanaFeature1: { + foo: false, + bar: false, + }, + kibanaFeature2: { foo: false, bar: false, }, - barFeature: { + optOutFeature: { foo: false, bar: false, }, + esFeature: { + es_manage: false, + es_monitor: false, + }, + esSecurityFeature: { + es_manage_sec: false, + }, + esManagementFeature: {}, }); + const result = await usingPrivileges(allFalseCapabilities); + + expect(result).toEqual(allFalseCapabilities); }); }); describe('all', () => { - test(`disables uiCapabilities`, () => { + test(`disables only registered uiCapabilities that do not opt out of kibana security`, () => { const mockAuthz = createMockAuthz({ rejectCheckPrivileges: new Error(`Don't use me`) }); const { all } = disableUICapabilitiesFactory( mockRequest, - [ - new KibanaFeature({ - id: 'fooFeature', - name: 'Foo KibanaFeature', - app: ['foo'], - category: { id: 'foo', label: 'foo' }, - privileges: null, - }), - ], + [kibanaFeature1, optOutKibanaFeature], [ new ElasticsearchFeature({ - id: 'esFeature', + id: 'esFeature1', privileges: [ { requiredClusterPrivileges: [], @@ -576,8 +561,8 @@ describe('all', () => { const result = all( Object.freeze({ navLinks: { - foo: true, - bar: true, + app1: true, + app2: true, // there is no app2 registered }, management: { kibana: { @@ -585,41 +570,61 @@ describe('all', () => { }, }, catalogue: {}, - fooFeature: { + kibanaFeature1: { foo: true, bar: true, }, - barFeature: { + kibanaFeature2: { + // there is no kibanaFeature2 registered foo: true, bar: true, }, - esFeature: { + optOutFeature: { + foo: true, + bar: true, + }, + esFeature1: { + bar: true, + }, + esFeature2: { bar: true, }, }) ); expect(result).toEqual({ navLinks: { - foo: false, - bar: true, + app1: false, + app2: true, // does NOT disable because it is not a registered navlink }, management: { kibana: { - indices: false, + indices: false, // nested values are always disabled }, }, catalogue: {}, - fooFeature: { + kibanaFeature1: { + // registered kibana features with privileges get diabled foo: false, bar: false, }, - barFeature: { - foo: false, - bar: false, + kibanaFeature2: { + // does NOT disable because it is not a registered Kibana feature + foo: true, + bar: true, }, - esFeature: { + optOutFeature: { + // does NOT disable because it opts out (does not define privileges) + foo: true, + bar: true, + }, + esFeature1: { + // registered es features get diabled bar: false, }, + esFeature2: { + // does NOT disable because it is not a registered ES feature + bar: true, + }, }); }); }); diff --git a/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts b/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts index 161366cb7309c..6023ea402ae56 100644 --- a/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts +++ b/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts @@ -67,20 +67,58 @@ export function disableUICapabilitiesFactory( }; }, {}); - const shouldDisableFeatureUICapability = ( - featureId: keyof UICapabilities, - uiCapability: string + const isCatalogueItemReferencedByFeatureSet = ( + catalogueEntry: string, + featureSet: Array | undefined }>> ) => { - // if the navLink isn't for a feature that we have registered, we don't wish to - // disable it based on privileges - return featureId !== 'navLinks' || featureNavLinkIds.includes(uiCapability); + return featureSet.some((feature) => (feature.catalogue ?? []).includes(catalogueEntry)); + }; + + const shouldAffectCapability = (featureId: keyof UICapabilities, uiCapability: string) => { + // This method answers: 'Should we affect a capability based on privileges?' + + // 'spaces' and 'fileUpload' feature ID's are handled independently + // The spaces and file_upload plugins have their own capabilites switchers + + // Always affect global settings + if (featureId === 'globalSettings') { + return true; + } + + // If the feature is 'catalogue', return true if it is the 'spaces' capability + // (we always want to affect that) or if we have a feature that references it + // (i.e. found in the 'catalogue' property of a registered Kibana or ES feature) + if (featureId === 'catalogue') { + return ( + uiCapability === 'spaces' || + isCatalogueItemReferencedByFeatureSet(uiCapability, features) || + isCatalogueItemReferencedByFeatureSet(uiCapability, elasticsearchFeatures) + ); + } + + // if the feature is 'navLinks', return true if the nav link was registered + // (i.e. found in the 'app' property of a registered Kibana feature) + if (featureId === 'navLinks') { + return featureNavLinkIds.includes(uiCapability); + } + + // if the feature is a Kibana feature, return true if it defines privileges + // (i.e. it adheres to the Kibana security model) + // Kibana features with no privileges opt out of the Kibana security model and + // are not subject to our control(e.g.Enterprise Search features) + const kibanaFeature = features.find((f) => f.id === featureId); + if (!!kibanaFeature) return !!kibanaFeature.privileges; + + // Lastly return true if the feature is a registered es feature (we always want to affect these), + // otherwise false(we don't know what this feature is so we don't touch it) + return !!elasticsearchFeatureMap[featureId]; }; const disableAll = (uiCapabilities: UICapabilities) => { return mapValues(uiCapabilities, (featureUICapabilities, featureId) => mapValues(featureUICapabilities, (value, uiCapability) => { if (typeof value === 'boolean') { - if (shouldDisableFeatureUICapability(featureId!, uiCapability!)) { + if (shouldAffectCapability(featureId!, uiCapability!)) { return false; } return value; @@ -175,7 +213,7 @@ export function disableUICapabilitiesFactory( ); // Catalogue and management capbility buckets can also be influenced by ES privileges, - // so the early return is not possible for these. + // so the early return is not possible for these *unless we have the required Kibana privileges. if ((!isCatalogueFeature && !isManagementFeature) || hasRequiredKibanaPrivileges) { return hasRequiredKibanaPrivileges; } @@ -230,7 +268,7 @@ export function disableUICapabilitiesFactory( featureUICapabilities, (value: boolean | Record, uiCapability) => { if (typeof value === 'boolean') { - if (!shouldDisableFeatureUICapability(featureId!, uiCapability!)) { + if (!shouldAffectCapability(featureId!, uiCapability!)) { return value; } return checkPrivilegesForCapability(value, featureId!, uiCapability!); From 59f8635f7598f4086a82b258309e9cf1d3f2a2e4 Mon Sep 17 00:00:00 2001 From: Xavier Mouligneau Date: Thu, 20 Apr 2023 17:01:56 -0400 Subject: [PATCH 51/60] [RAM] kibana.alert.url (#155309) Add alert url as data to allow our user to go back to the details url in kibana --- .../src/field_maps/alert_field_map.ts | 8 ++++++++ .../kbn-rule-data-utils/src/default_alerts_as_data.ts | 5 +++++ .../field_maps/mapping_from_field_map.test.ts | 5 +++++ .../assets/field_maps/technical_rule_field_map.test.ts | 7 +++++++ 4 files changed, 25 insertions(+) diff --git a/packages/kbn-alerts-as-data-utils/src/field_maps/alert_field_map.ts b/packages/kbn-alerts-as-data-utils/src/field_maps/alert_field_map.ts index 91f51ea3acffc..87c40e617f90c 100644 --- a/packages/kbn-alerts-as-data-utils/src/field_maps/alert_field_map.ts +++ b/packages/kbn-alerts-as-data-utils/src/field_maps/alert_field_map.ts @@ -30,6 +30,7 @@ import { ALERT_START, ALERT_STATUS, ALERT_TIME_RANGE, + ALERT_URL, ALERT_UUID, ALERT_WORKFLOW_STATUS, SPACE_IDS, @@ -155,6 +156,13 @@ export const alertFieldMap = { array: false, required: false, }, + [ALERT_URL]: { + type: 'keyword', + array: false, + index: false, + required: false, + ignore_above: 2048, + }, [ALERT_UUID]: { type: 'keyword', array: false, diff --git a/packages/kbn-rule-data-utils/src/default_alerts_as_data.ts b/packages/kbn-rule-data-utils/src/default_alerts_as_data.ts index 98ea2d76730c2..d803d6ca503b8 100644 --- a/packages/kbn-rule-data-utils/src/default_alerts_as_data.ts +++ b/packages/kbn-rule-data-utils/src/default_alerts_as_data.ts @@ -94,6 +94,9 @@ const ALERT_RULE_TAGS = `${ALERT_RULE_NAMESPACE}.tags` as const; // kibana.alert.rule_type_id - rule type id for rule that generated this alert const ALERT_RULE_TYPE_ID = `${ALERT_RULE_NAMESPACE}.rule_type_id` as const; +// kibana.alert.url - allow our user to go back to the details url in kibana +const ALERT_URL = `${ALERT_NAMESPACE}.url` as const; + // kibana.alert.rule.uuid - rule ID for rule that generated this alert const ALERT_RULE_UUID = `${ALERT_RULE_NAMESPACE}.uuid` as const; @@ -127,6 +130,7 @@ const fields = { ALERT_START, ALERT_STATUS, ALERT_TIME_RANGE, + ALERT_URL, ALERT_UUID, ALERT_WORKFLOW_STATUS, SPACE_IDS, @@ -164,6 +168,7 @@ export { ALERT_START, ALERT_STATUS, ALERT_TIME_RANGE, + ALERT_URL, ALERT_UUID, ALERT_WORKFLOW_STATUS, SPACE_IDS, diff --git a/x-pack/plugins/alerting/common/alert_schema/field_maps/mapping_from_field_map.test.ts b/x-pack/plugins/alerting/common/alert_schema/field_maps/mapping_from_field_map.test.ts index 7a86a45dcd045..5aff2411e07f9 100644 --- a/x-pack/plugins/alerting/common/alert_schema/field_maps/mapping_from_field_map.test.ts +++ b/x-pack/plugins/alerting/common/alert_schema/field_maps/mapping_from_field_map.test.ts @@ -281,6 +281,11 @@ describe('mappingFromFieldMap', () => { type: 'date_range', format: 'epoch_millis||strict_date_optional_time', }, + url: { + ignore_above: 2048, + index: false, + type: 'keyword', + }, uuid: { type: 'keyword', }, diff --git a/x-pack/plugins/rule_registry/common/assets/field_maps/technical_rule_field_map.test.ts b/x-pack/plugins/rule_registry/common/assets/field_maps/technical_rule_field_map.test.ts index b98c94b163445..4efe4d876a3bc 100644 --- a/x-pack/plugins/rule_registry/common/assets/field_maps/technical_rule_field_map.test.ts +++ b/x-pack/plugins/rule_registry/common/assets/field_maps/technical_rule_field_map.test.ts @@ -274,6 +274,13 @@ it('matches snapshot', () => { "required": false, "type": "date_range", }, + "kibana.alert.url": Object { + "array": false, + "ignore_above": 2048, + "index": false, + "required": false, + "type": "keyword", + }, "kibana.alert.uuid": Object { "array": false, "required": true, From 954d73d30a94ff7058f98fc907764bba1ab79ce7 Mon Sep 17 00:00:00 2001 From: Alexi Doak <109488926+doakalexi@users.noreply.github.com> Date: Thu, 20 Apr 2023 17:24:07 -0400 Subject: [PATCH 52/60] [ResponseOps][Window Maintenance] Add timezone field to the create form (#155324) Resolves https://github.com/elastic/kibana/issues/153977 ## Summary Adds the timezone combo box to the create form only if the Kibana Setting is set to `'Browser'`. When you edit a maintenance window the timezone will always be visible. Screen Shot 2023-04-19 at 6 00 18 PM ### 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> --- .../create_maintenance_windows_form.test.tsx | 22 +++ .../create_maintenance_windows_form.tsx | 136 +++++++++++------- .../recurring_schedule.tsx | 63 ++++++-- .../maintenance_windows/components/schema.ts | 2 + ...rt_from_maintenance_window_to_form.test.ts | 11 ++ ...convert_from_maintenance_window_to_form.ts | 1 + .../pages/maintenance_windows/translations.ts | 7 + x-pack/plugins/alerting/tsconfig.json | 1 + 8 files changed, 180 insertions(+), 63 deletions(-) diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.test.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.test.tsx index df382e57c69d0..b2e97dac3389e 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.test.tsx +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/create_maintenance_windows_form.test.tsx @@ -12,6 +12,11 @@ import { CreateMaintenanceWindowFormProps, CreateMaintenanceWindowForm, } from './create_maintenance_windows_form'; +import { useUiSetting } from '@kbn/kibana-react-plugin/public'; + +jest.mock('@kbn/kibana-react-plugin/public/ui_settings/use_ui_setting', () => ({ + useUiSetting: jest.fn(), +})); const formProps: CreateMaintenanceWindowFormProps = { onCancel: jest.fn(), @@ -24,6 +29,7 @@ describe('CreateMaintenanceWindowForm', () => { beforeEach(() => { jest.clearAllMocks(); appMockRenderer = createAppMockRenderer(); + (useUiSetting as jest.Mock).mockReturnValue('America/New_York'); }); it('renders all form fields except the recurring form fields', async () => { @@ -33,6 +39,19 @@ describe('CreateMaintenanceWindowForm', () => { expect(result.getByTestId('date-field')).toBeInTheDocument(); expect(result.getByTestId('recurring-field')).toBeInTheDocument(); expect(result.queryByTestId('recurring-form')).not.toBeInTheDocument(); + expect(result.queryByTestId('timezone-field')).not.toBeInTheDocument(); + }); + + it('renders timezone field when the kibana setting is set to browser', async () => { + (useUiSetting as jest.Mock).mockReturnValue('Browser'); + + const result = appMockRenderer.render(); + + expect(result.getByTestId('title-field')).toBeInTheDocument(); + expect(result.getByTestId('date-field')).toBeInTheDocument(); + expect(result.getByTestId('recurring-field')).toBeInTheDocument(); + expect(result.queryByTestId('recurring-form')).not.toBeInTheDocument(); + expect(result.getByTestId('timezone-field')).toBeInTheDocument(); }); it('should initialize the form when no initialValue provided', () => { @@ -60,6 +79,7 @@ describe('CreateMaintenanceWindowForm', () => { title: 'test', startDate: '2023-03-24', endDate: '2023-03-26', + timezone: ['America/Los_Angeles'], recurring: true, }} /> @@ -71,10 +91,12 @@ describe('CreateMaintenanceWindowForm', () => { 'Press the down key to open a popover containing a calendar.' ); const recurringInput = within(result.getByTestId('recurring-field')).getByTestId('input'); + const timezoneInput = within(result.getByTestId('timezone-field')).getByTestId('input'); expect(titleInput).toHaveValue('test'); expect(dateInputs[0]).toHaveValue('03/24/2023 12:00 AM'); expect(dateInputs[1]).toHaveValue('03/26/2023 12:00 AM'); expect(recurringInput).toBeChecked(); + expect(timezoneInput).toHaveTextContent('America/Los_Angeles'); }); }); 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 bef99e1188051..b3fe479c21a88 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 @@ -7,6 +7,7 @@ import React, { useCallback, useState } from 'react'; import moment from 'moment'; import { + FIELD_TYPES, Form, getUseField, useForm, @@ -14,7 +15,14 @@ import { UseMultiFields, } from '@kbn/es-ui-shared-plugin/static/forms/hook_form_lib'; import { Field } from '@kbn/es-ui-shared-plugin/static/forms/components'; -import { EuiButtonEmpty, EuiFlexGroup, EuiFlexItem, EuiHorizontalRule } from '@elastic/eui'; +import { + EuiButtonEmpty, + EuiFlexGroup, + EuiFlexItem, + EuiFormLabel, + EuiHorizontalRule, +} from '@elastic/eui'; +import { TIMEZONE_OPTIONS as UI_TIMEZONE_OPTIONS } from '@kbn/core-ui-settings-common'; import { FormProps, schema } from './schema'; import * as i18n from '../translations'; @@ -35,16 +43,20 @@ export interface CreateMaintenanceWindowFormProps { maintenanceWindowId?: string; } -export const useTimeZone = (): string => { - const timeZone = useUiSetting('dateFormat:tz'); - return timeZone === 'Browser' ? moment.tz.guess() : timeZone; +const useDefaultTimezone = () => { + const kibanaTz: string = useUiSetting('dateFormat:tz'); + if (!kibanaTz || kibanaTz === 'Browser') { + return { defaultTimezone: moment.tz?.guess() ?? 'UTC', isBrowser: true }; + } + return { defaultTimezone: kibanaTz, isBrowser: false }; }; +const TIMEZONE_OPTIONS = UI_TIMEZONE_OPTIONS.map((n) => ({ label: n })) ?? [{ label: 'UTC' }]; export const CreateMaintenanceWindowForm = React.memo( ({ onCancel, onSuccess, initialValue, maintenanceWindowId }) => { const [defaultStartDateValue] = useState(moment().toISOString()); const [defaultEndDateValue] = useState(moment().add(30, 'minutes').toISOString()); - const timezone = useTimeZone(); + const { defaultTimezone, isBrowser } = useDefaultTimezone(); const isEditMode = initialValue !== undefined && maintenanceWindowId !== undefined; const { mutate: createMaintenanceWindow, isLoading: isCreateLoading } = @@ -60,7 +72,11 @@ export const CreateMaintenanceWindowForm = React.memo - + - - - - - - {(fields) => ( - - )} - - - - - - + + - - - {isRecurring ? : null} + > + {(fields) => } + + {showTimezone ? ( + + + {i18n.CREATE_FORM_TIMEZONE} + + ), + }, + }} + /> + + ) : null} + + + + + {isRecurring ? : null} + { - const [{ startDate, endDate, recurringSchedule }] = useFormData({ + const [{ startDate, endDate, timezone, recurringSchedule }] = useFormData({ watch: [ 'startDate', 'endDate', + 'timezone', 'recurringSchedule.frequency', 'recurringSchedule.interval', 'recurringSchedule.ends', @@ -104,19 +113,43 @@ export const RecurringSchedule: React.FC = React.memo(() => { }} /> {recurringSchedule?.ends === EndsOptions.ON_DATE ? ( - + <> + + + + + + {timezone ? ( + + + {i18n.CREATE_FORM_TIMEZONE} + + } + /> + + ) : null} + + ) : null} {recurringSchedule?.ends === EndsOptions.AFTER_X ? ( = { }, startDate: {}, endDate: {}, + timezone: {}, recurring: { type: FIELD_TYPES.TOGGLE, label: i18n.CREATE_FORM_REPEAT, 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 index 9dc72ea30b1c1..fd2627d2478f1 100644 --- 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 @@ -34,6 +34,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: false, }); }); @@ -55,6 +56,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, @@ -85,6 +87,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, @@ -114,6 +117,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { byweekday: { 1: false, 2: false, 3: true, 4: false, 5: false, 6: false, 7: false }, @@ -142,6 +146,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { ends: 'never', @@ -169,6 +174,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { ends: 'never', @@ -197,6 +203,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { ends: 'never', @@ -222,6 +229,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { customFrequency: Frequency.DAILY, @@ -249,6 +257,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { byweekday: { 1: false, 2: false, 3: true, 4: true, 5: false, 6: false, 7: false }, @@ -277,6 +286,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { bymonth: 'day', @@ -306,6 +316,7 @@ describe('convertFromMaintenanceWindowToForm', () => { title, startDate: startDate.toISOString(), endDate: endDate.toISOString(), + timezone: ['UTC'], recurring: true, recurringSchedule: { customFrequency: Frequency.YEARLY, 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 index c4b2c551de0cd..954e6b8bd2658 100644 --- 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 @@ -24,6 +24,7 @@ export const convertFromMaintenanceWindowToForm = ( title: maintenanceWindow.title, startDate, endDate: endDate.toISOString(), + timezone: [maintenanceWindow.rRule.tzid], recurring, }; if (!recurring) return form; 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 7dcb388f84967..1b3317d9182b2 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts @@ -102,6 +102,13 @@ export const CREATE_FORM_SCHEDULE_INVALID = i18n.translate( } ); +export const CREATE_FORM_TIMEZONE = i18n.translate( + 'xpack.alerting.maintenanceWindows.createForm.timezone', + { + defaultMessage: 'Time zone', + } +); + export const CREATE_FORM_REPEAT = i18n.translate( 'xpack.alerting.maintenanceWindows.createForm.repeat', { diff --git a/x-pack/plugins/alerting/tsconfig.json b/x-pack/plugins/alerting/tsconfig.json index 3cf3904d3942b..200b8e3c2a79e 100644 --- a/x-pack/plugins/alerting/tsconfig.json +++ b/x-pack/plugins/alerting/tsconfig.json @@ -51,6 +51,7 @@ "@kbn/core-doc-links-server-mocks", "@kbn/doc-links", "@kbn/core-saved-objects-utils-server", + "@kbn/core-ui-settings-common", ], "exclude": [ "target/**/*", From 1676432b6197358988f59585a7c225c35cb4fb93 Mon Sep 17 00:00:00 2001 From: Alexi Doak <109488926+doakalexi@users.noreply.github.com> Date: Thu, 20 Apr 2023 17:24:34 -0400 Subject: [PATCH 53/60] [ResponseOps][Window Maintenance] Add the upcoming events popover to the maintenance window table (#154978) Resolves https://github.com/elastic/kibana/issues/154815 ## Summary Adding upcoming popover Screen Shot 2023-04-14 at 2 27 58 PM ### 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> Co-authored-by: Lisa Cawley --- .../components/maintenance_windows_list.tsx | 16 ++- .../upcoming_events_popover.test.tsx | 67 +++++++++ .../components/upcoming_events_popover.tsx | 127 ++++++++++++++++++ ...rt_from_maintenance_window_to_form.test.ts | 4 +- .../helpers/convert_to_rrule.test.ts | 4 +- .../helpers/convert_to_rrule.ts | 3 +- .../pages/maintenance_windows/translations.ts | 4 + 7 files changed, 219 insertions(+), 6 deletions(-) create mode 100644 x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.test.tsx create mode 100644 x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.tsx 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 33a36a2bc0dea..9d4fc521c3f66 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 @@ -12,12 +12,15 @@ import { EuiBasicTableColumn, EuiButton, useEuiBackgroundColor, + EuiFlexGroup, + EuiFlexItem, SearchFilterConfig, } from '@elastic/eui'; import { css } from '@emotion/react'; import { MaintenanceWindowFindResponse, SortDirection } from '../types'; import * as i18n from '../translations'; import { useEditMaintenanceWindowsNavigation } from '../../../hooks/use_navigation'; +import { UpcomingEventsPopover } from './upcoming_events_popover'; import { StatusColor, STATUS_DISPLAY, STATUS_SORT } from '../constants'; import { MaintenanceWindowStatus } from '../../../../common'; import { StatusFilter } from './status_filter'; @@ -61,7 +64,18 @@ const columns: Array> = [ field: 'eventStartTime', name: i18n.TABLE_START_TIME, dataType: 'date', - render: (startDate: string) => formatDate(startDate, 'MM/DD/YY HH:mm A'), + render: (startDate: string, item: MaintenanceWindowFindResponse) => { + return ( + + {formatDate(startDate, 'MM/DD/YY HH:mm A')} + {item.events.length > 1 ? ( + + + + ) : null} + + ); + }, sortable: true, }, { diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.test.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.test.tsx new file mode 100644 index 0000000000000..574bb7d1f7549 --- /dev/null +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.test.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; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +import { fireEvent } from '@testing-library/react'; +import * as React from 'react'; +import { AppMockRenderer, createAppMockRenderer } from '../../../lib/test_utils'; +import { UpcomingEventsPopover } from './upcoming_events_popover'; +import { MaintenanceWindowStatus } from '../../../../common'; + +describe('rule_actions_popover', () => { + let appMockRenderer: AppMockRenderer; + + beforeEach(() => { + jest.clearAllMocks(); + appMockRenderer = createAppMockRenderer(); + }); + + it('renders the top 3 events', () => { + const result = appMockRenderer.render( + + ); + + const popoverButton = result.getByTestId('upcoming-events-icon-button'); + expect(popoverButton).toBeInTheDocument(); + fireEvent.click(popoverButton); + + expect(result.getByTestId('upcoming-events-popover-title')).toBeInTheDocument(); + expect(result.getByTestId('upcoming-events-popover-title')).toHaveTextContent( + 'Repeats every Friday' + ); + expect(result.getAllByTestId('upcoming-events-popover-item').length).toBe(3); + }); +}); diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.tsx b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.tsx new file mode 100644 index 0000000000000..a20907a2e1236 --- /dev/null +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/components/upcoming_events_popover.tsx @@ -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 React, { useCallback, useMemo, useState } from 'react'; +import moment from 'moment'; +import { findIndex } from 'lodash'; +import { + EuiButtonIcon, + EuiFlexGroup, + EuiFlexItem, + EuiHorizontalRule, + EuiIcon, + EuiPopover, + EuiPopoverTitle, + EuiSpacer, + EuiText, + formatDate, +} from '@elastic/eui'; +import * as i18n from '../translations'; +import { recurringSummary } from '../helpers/recurring_summary'; +import { getPresets } from '../helpers/get_presets'; +import { MaintenanceWindowFindResponse } from '../types'; +import { convertFromMaintenanceWindowToForm } from '../helpers/convert_from_maintenance_window_to_form'; + +interface UpcomingEventsPopoverProps { + maintenanceWindowFindResponse: MaintenanceWindowFindResponse; +} + +export const UpcomingEventsPopover: React.FC = React.memo( + ({ maintenanceWindowFindResponse }) => { + const [isPopoverOpen, setIsPopoverOpen] = useState(false); + + const onButtonClick = useCallback(() => { + setIsPopoverOpen((open) => !open); + }, []); + const closePopover = useCallback(() => { + setIsPopoverOpen(false); + }, []); + + const { startDate, recurringSchedule, topEvents, presets } = useMemo(() => { + const maintenanceWindow = convertFromMaintenanceWindowToForm(maintenanceWindowFindResponse); + const date = moment(maintenanceWindow.startDate); + const currentEventIndex = findIndex( + maintenanceWindowFindResponse.events, + (event) => + event.gte === maintenanceWindowFindResponse.eventStartTime && + event.lte === maintenanceWindowFindResponse.eventEndTime + ); + return { + startDate: date, + recurringSchedule: maintenanceWindow.recurringSchedule, + topEvents: maintenanceWindowFindResponse.events.slice( + currentEventIndex + 1, + currentEventIndex + 4 + ), + presets: getPresets(date), + }; + }, [maintenanceWindowFindResponse]); + + return ( + + } + isOpen={isPopoverOpen} + closePopover={closePopover} + anchorPosition="downCenter" + > + + {i18n.CREATE_FORM_RECURRING_SUMMARY_PREFIX( + recurringSummary(startDate, recurringSchedule, presets) + )} + + + + + {i18n.UPCOMING} + + + + {topEvents.map((event, index) => ( + + + + + + + + {formatDate(event.gte, 'MM/DD/YY HH:mm A')} + + + + {index < topEvents.length - 1 ? ( + + ) : null} + + ))} + + + ); + } +); +UpcomingEventsPopover.displayName = 'UpcomingEventsPopover'; 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 index fd2627d2478f1..c892f7db66729 100644 --- 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 @@ -194,7 +194,7 @@ describe('convertFromMaintenanceWindowToForm', () => { tzid: 'UTC', freq: RRuleFrequency.YEARLY, interval: 1, - bymonth: [2], + bymonth: [3], bymonthday: [22], }, }); @@ -307,7 +307,7 @@ describe('convertFromMaintenanceWindowToForm', () => { tzid: 'UTC', freq: RRuleFrequency.YEARLY, interval: 3, - bymonth: [2], + bymonth: [3], bymonthday: [22], }, }); diff --git a/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.test.ts b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.test.ts index 737bb47f4aa33..7eaecba5169b8 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.test.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/helpers/convert_to_rrule.test.ts @@ -121,7 +121,7 @@ describe('convertToRRule', () => { tzid: 'UTC', freq: RRuleFrequency.YEARLY, interval: 1, - bymonth: [2], + bymonth: [3], bymonthday: [22], }); }); @@ -209,7 +209,7 @@ describe('convertToRRule', () => { tzid: 'UTC', freq: RRuleFrequency.YEARLY, interval: 3, - bymonth: [2], + bymonth: [3], bymonthday: [22], }); }); 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 b284e50579deb..90706165c717b 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 @@ -68,7 +68,8 @@ export const convertToRRule = ( } if (frequency === Frequency.YEARLY) { - rRule.bymonth = [startDate.month()]; + // rRule expects 1 based indexing for months + rRule.bymonth = [startDate.month() + 1]; rRule.bymonthday = [startDate.date()]; } 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 1b3317d9182b2..30b83963cc5b7 100644 --- a/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts +++ b/x-pack/plugins/alerting/public/pages/maintenance_windows/translations.ts @@ -468,3 +468,7 @@ export const EXPERIMENTAL_DESCRIPTION = i18n.translate( 'This functionality is in technical preview and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.', } ); + +export const UPCOMING = i18n.translate('xpack.alerting.maintenanceWindows.upcoming', { + defaultMessage: 'Upcoming', +}); From 9ac6f58ab342a2d11856e77d5d5da1cf4b2bda32 Mon Sep 17 00:00:00 2001 From: Xavier Mouligneau Date: Thu, 20 Apr 2023 18:32:42 -0400 Subject: [PATCH 54/60] [RAM] allow user to predefined their id when they create connector (#155392) ## Summary allow user to predefined their id when they create connector ### 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 --- .../s@{spaceid}@api@actions@connector.yaml | 11 +++- .../actions/server/actions_client.test.ts | 64 +++++++++++++++++++ .../plugins/actions/server/actions_client.ts | 15 ++++- .../actions/server/routes/create.test.ts | 3 +- .../plugins/actions/server/routes/create.ts | 9 ++- .../group2/tests/actions/create.ts | 60 +++++++++++++++++ 6 files changed, 157 insertions(+), 5 deletions(-) diff --git a/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml b/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml index fbf14725db7ff..b3d42c3f47484 100644 --- a/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml +++ b/x-pack/plugins/actions/docs/openapi/paths/s@{spaceid}@api@actions@connector.yaml @@ -8,6 +8,15 @@ post: parameters: - $ref: '../components/headers/kbn_xsrf.yaml' - $ref: '../components/parameters/space_id.yaml' + - in: path + name: id + description: > + An UUID v1 or v4 identifier for the connector. If you omit this parameter, + an identifier is randomly generated. + required: true + schema: + type: string + example: ac4e6b90-6be7-11eb-ba0d-9b1c1f912d74 requestBody: required: true content: @@ -18,7 +27,7 @@ post: oneOf: - $ref: '../components/schemas/create_connector_request_cases_webhook.yaml' - $ref: '../components/schemas/create_connector_request_email.yaml' - - $ref: '../components/schemas/create_connector_request_index.yaml' + - $ref: '../components/schemas/create_connector_request_index.yaml' - $ref: '../components/schemas/create_connector_request_jira.yaml' - $ref: '../components/schemas/create_connector_request_opsgenie.yaml' - $ref: '../components/schemas/create_connector_request_pagerduty.yaml' diff --git a/x-pack/plugins/actions/server/actions_client.test.ts b/x-pack/plugins/actions/server/actions_client.test.ts index 3c4b1a876c522..2b0565c8df9d0 100644 --- a/x-pack/plugins/actions/server/actions_client.test.ts +++ b/x-pack/plugins/actions/server/actions_client.test.ts @@ -691,6 +691,70 @@ describe('create()', () => { }) ).rejects.toThrowErrorMatchingInlineSnapshot(`"Fail"`); }); + + test('throws error when predefined id match a pre-configure action id', async () => { + const preDefinedId = 'mySuperRadTestPreconfiguredId'; + actionTypeRegistry.register({ + id: 'my-action-type', + name: 'My action type', + minimumLicenseRequired: 'basic', + supportedFeatureIds: ['alerting'], + validate: { + config: { schema: schema.object({}) }, + secrets: { schema: schema.object({}) }, + params: { schema: schema.object({}) }, + }, + executor, + }); + + actionsClient = new ActionsClient({ + logger, + actionTypeRegistry, + unsecuredSavedObjectsClient, + scopedClusterClient, + defaultKibanaIndex, + preconfiguredActions: [ + { + id: preDefinedId, + actionTypeId: 'my-action-type', + secrets: { + test: 'test1', + }, + isPreconfigured: true, + isDeprecated: false, + name: 'test', + config: { + foo: 'bar', + }, + }, + ], + + actionExecutor, + executionEnqueuer, + ephemeralExecutionEnqueuer, + bulkExecutionEnqueuer, + request, + authorization: authorization as unknown as ActionsAuthorization, + connectorTokenClient: connectorTokenClientMock.create(), + getEventLogClient, + }); + + await expect( + actionsClient.create({ + action: { + name: 'my name', + actionTypeId: 'my-action-type', + config: {}, + secrets: {}, + }, + options: { + id: preDefinedId, + }, + }) + ).rejects.toThrowErrorMatchingInlineSnapshot( + `"This mySuperRadTestPreconfiguredId already exist in preconfigured action."` + ); + }); }); describe('get()', () => { diff --git a/x-pack/plugins/actions/server/actions_client.ts b/x-pack/plugins/actions/server/actions_client.ts index 867fc4f9c7e47..201237ce33033 100644 --- a/x-pack/plugins/actions/server/actions_client.ts +++ b/x-pack/plugins/actions/server/actions_client.ts @@ -106,6 +106,7 @@ interface Action extends ActionUpdate { export interface CreateOptions { action: Action; + options?: { id?: string }; } interface ConstructorOptions { @@ -191,8 +192,20 @@ export class ActionsClient { */ public async create({ action: { actionTypeId, name, config, secrets }, + options, }: CreateOptions): Promise { - const id = SavedObjectsUtils.generateId(); + const id = options?.id || SavedObjectsUtils.generateId(); + + if (this.preconfiguredActions.some((preconfiguredAction) => preconfiguredAction.id === id)) { + throw Boom.badRequest( + i18n.translate('xpack.actions.serverSideErrors.predefinedIdConnectorAlreadyExists', { + defaultMessage: 'This {id} already exist in preconfigured action.', + values: { + id, + }, + }) + ); + } try { await this.authorization.ensureAuthorized('create', actionTypeId); diff --git a/x-pack/plugins/actions/server/routes/create.test.ts b/x-pack/plugins/actions/server/routes/create.test.ts index 184dcaa00599c..dc06a119ca2fa 100644 --- a/x-pack/plugins/actions/server/routes/create.test.ts +++ b/x-pack/plugins/actions/server/routes/create.test.ts @@ -31,7 +31,7 @@ describe('createActionRoute', () => { const [config, handler] = router.post.mock.calls[0]; - expect(config.path).toMatchInlineSnapshot(`"/api/actions/connector"`); + expect(config.path).toMatchInlineSnapshot(`"/api/actions/connector/{id?}"`); const createResult = { id: '1', @@ -86,6 +86,7 @@ describe('createActionRoute', () => { "name": "My name", "secrets": Object {}, }, + "options": undefined, }, ] `); diff --git a/x-pack/plugins/actions/server/routes/create.ts b/x-pack/plugins/actions/server/routes/create.ts index 369b421de41a3..c55661ce7b921 100644 --- a/x-pack/plugins/actions/server/routes/create.ts +++ b/x-pack/plugins/actions/server/routes/create.ts @@ -50,8 +50,13 @@ export const createActionRoute = ( ) => { router.post( { - path: `${BASE_ACTION_API_PATH}/connector`, + path: `${BASE_ACTION_API_PATH}/connector/{id?}`, validate: { + params: schema.maybe( + schema.object({ + id: schema.maybe(schema.string()), + }) + ), body: bodySchema, }, }, @@ -60,7 +65,7 @@ export const createActionRoute = ( const actionsClient = (await context.actions).getActionsClient(); const action = rewriteBodyReq(req.body); return res.ok({ - body: rewriteBodyRes(await actionsClient.create({ action })), + body: rewriteBodyRes(await actionsClient.create({ action, options: req.params })), }); }) ) diff --git a/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/actions/create.ts b/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/actions/create.ts index d32fcb86224f2..dce40323e9e1c 100644 --- a/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/actions/create.ts +++ b/x-pack/test/alerting_api_integration/security_and_spaces/group2/tests/actions/create.ts @@ -5,6 +5,7 @@ * 2.0. */ +import { v4 as uuidv4 } from 'uuid'; import expect from '@kbn/expect'; import { UserAtSpaceScenarios } from '../../../scenarios'; import { checkAAD, getUrlPrefix, ObjectRemover } from '../../../../common/lib'; @@ -257,6 +258,65 @@ export default function createActionTests({ getService }: FtrProviderContext) { throw new Error(`Scenario untested: ${JSON.stringify(scenario)}`); } }); + + it('should handle create action request appropriately with a predefined id', async () => { + const predefinedId = uuidv4(); + const response = await supertestWithoutAuth + .post(`${getUrlPrefix(space.id)}/api/actions/connector/${predefinedId}`) + .auth(user.username, user.password) + .set('kbn-xsrf', 'foo') + .send({ + name: 'My action', + connector_type_id: 'test.index-record', + config: { + unencrypted: `This value shouldn't get encrypted`, + }, + secrets: { + encrypted: 'This value should be encrypted', + }, + }); + + switch (scenario.id) { + case 'no_kibana_privileges at space1': + case 'global_read at space1': + case 'space_1_all_alerts_none_actions at space1': + case 'space_1_all at space2': + expect(response.statusCode).to.eql(403); + expect(response.body).to.eql({ + statusCode: 403, + error: 'Forbidden', + message: 'Unauthorized to create a "test.index-record" action', + }); + break; + case 'superuser at space1': + case 'space_1_all at space1': + case 'space_1_all_with_restricted_fixture at space1': + expect(response.statusCode).to.eql(200); + objectRemover.add(space.id, response.body.id, 'action', 'actions'); + expect(response.body).to.eql({ + id: predefinedId, + is_preconfigured: false, + is_deprecated: false, + is_missing_secrets: false, + name: 'My action', + connector_type_id: 'test.index-record', + config: { + unencrypted: `This value shouldn't get encrypted`, + }, + }); + expect(typeof response.body.id).to.be('string'); + // Ensure AAD isn't broken + await checkAAD({ + supertest, + spaceId: space.id, + type: 'action', + id: response.body.id, + }); + break; + default: + throw new Error(`Scenario untested: ${JSON.stringify(scenario)}`); + } + }); }); } }); From 012d019044da4fdf9b48b8b997a3c93a88872e62 Mon Sep 17 00:00:00 2001 From: Kevin Logan <56395104+kevinlog@users.noreply.github.com> Date: Thu, 20 Apr 2023 18:50:33 -0400 Subject: [PATCH 55/60] [Security Solution] Update Register as AV restriction message (#154687) ## Summary Based on user feedback, we're updating the Register as AV restriction message to better communicate why Windows Server does not support it. In addition, we change the icon to be more noticeable by users to view the restrictions. ![image](https://user-images.githubusercontent.com/56395104/230986046-54b88920-e2c1-422a-b192-11fdd97c35c5.png) ### 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) --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../view/components/antivirus_registration_form/index.tsx | 5 ++++- .../pages/policy/view/components/config_form/index.tsx | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx index 24062bf00ef46..4921353317a64 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/components/antivirus_registration_form/index.tsx @@ -60,7 +60,10 @@ export const AntivirusRegistrationForm = memo(() => { supportedOss={[OperatingSystem.WINDOWS]} osRestriction={i18n.translate( 'xpack.securitySolution.endpoint.policy.details.av.windowsServerNotSupported', - { defaultMessage: 'Windows Server operating systems unsupported' } + { + defaultMessage: + 'Windows Server operating systems unsupported because Antivirus registration requires Windows Security Center, which is not included in Windows Server operating systems.', + } )} > {TRANSLATIONS.description} diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/view/components/config_form/index.tsx b/x-pack/plugins/security_solution/public/management/pages/policy/view/components/config_form/index.tsx index 23db0cd14bf07..b5f46c91dade4 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/view/components/config_form/index.tsx +++ b/x-pack/plugins/security_solution/public/management/pages/policy/view/components/config_form/index.tsx @@ -90,7 +90,7 @@ export const ConfigForm: FC = memo(
    - + From 90242065d986e40c9c9f8c7ad1d75c1693e12e4f Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Thu, 20 Apr 2023 18:55:47 -0400 Subject: [PATCH 56/60] skip failing test suite (#155429) --- x-pack/test/functional/apps/infra/hosts_view.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/infra/hosts_view.ts b/x-pack/test/functional/apps/infra/hosts_view.ts index 3e229fcdc1142..3cf0091c93bd4 100644 --- a/x-pack/test/functional/apps/infra/hosts_view.ts +++ b/x-pack/test/functional/apps/infra/hosts_view.ts @@ -150,7 +150,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => { // Tests - describe('Hosts View', function () { + // Failing: See https://github.com/elastic/kibana/issues/155429 + describe.skip('Hosts View', function () { this.tags('includeFirefox'); before(async () => { From 3bfdefc21a0bb564e97ffbd579bb3ffd19a3af5a Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Fri, 21 Apr 2023 01:08:24 -0400 Subject: [PATCH 57/60] [api-docs] 2023-04-21 Daily api_docs build (#155475) Generated by https://buildkite.com/elastic/kibana-api-docs-daily/builds/314 --- api_docs/actions.devdocs.json | 2 +- api_docs/actions.mdx | 2 +- api_docs/advanced_settings.mdx | 2 +- api_docs/aiops.devdocs.json | 40 +++ api_docs/aiops.mdx | 4 +- api_docs/alerting.devdocs.json | 16 +- api_docs/alerting.mdx | 4 +- api_docs/apm.devdocs.json | 70 ++++- api_docs/apm.mdx | 4 +- api_docs/asset_manager.mdx | 2 +- api_docs/banners.devdocs.json | 4 +- api_docs/banners.mdx | 2 +- api_docs/bfetch.mdx | 2 +- api_docs/canvas.mdx | 2 +- api_docs/cases.devdocs.json | 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.mdx | 2 +- api_docs/dashboard_enhanced.mdx | 2 +- api_docs/data.devdocs.json | 22 +- api_docs/data.mdx | 2 +- api_docs/data_query.mdx | 2 +- 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 | 18 +- api_docs/data_views.mdx | 2 +- api_docs/data_visualizer.mdx | 2 +- api_docs/deprecations_by_api.mdx | 2 +- api_docs/deprecations_by_plugin.mdx | 12 +- 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.devdocs.json | 2 +- api_docs/exploratory_view.mdx | 2 +- api_docs/expression_error.mdx | 2 +- api_docs/expression_gauge.mdx | 2 +- api_docs/expression_heatmap.devdocs.json | 2 +- api_docs/expression_heatmap.mdx | 2 +- api_docs/expression_image.devdocs.json | 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.devdocs.json | 2 +- api_docs/expression_repeat_image.mdx | 2 +- api_docs/expression_reveal_image.mdx | 2 +- api_docs/expression_shape.devdocs.json | 4 +- api_docs/expression_shape.mdx | 2 +- api_docs/expression_tagcloud.mdx | 2 +- api_docs/expression_x_y.devdocs.json | 22 +- api_docs/expression_x_y.mdx | 2 +- api_docs/expressions.mdx | 2 +- api_docs/features.mdx | 2 +- api_docs/field_formats.mdx | 2 +- api_docs/file_upload.mdx | 2 +- api_docs/files.devdocs.json | 6 +- api_docs/files.mdx | 2 +- api_docs/files_management.mdx | 2 +- api_docs/fleet.devdocs.json | 132 ++++++-- api_docs/fleet.mdx | 4 +- 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 +- .../kbn_alerts_as_data_utils.devdocs.json | 8 +- 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.devdocs.json | 4 + 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.devdocs.json | 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 +- ...ticsearch_client_server_mocks.devdocs.json | 88 +++--- ...core_elasticsearch_client_server_mocks.mdx | 2 +- ...kbn_core_elasticsearch_server.devdocs.json | 24 +- api_docs/kbn_core_elasticsearch_server.mdx | 2 +- ...elasticsearch_server_internal.devdocs.json | 12 +- ...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.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.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.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 +- ...bn_core_notifications_browser.devdocs.json | 4 +- 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 | 32 ++ .../kbn_core_saved_objects_api_browser.mdx | 4 +- ...core_saved_objects_api_server.devdocs.json | 72 +++++ .../kbn_core_saved_objects_api_server.mdx | 4 +- ...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 | 8 + api_docs/kbn_core_saved_objects_common.mdx | 2 +- ..._objects_import_export_server_internal.mdx | 2 +- ...ved_objects_import_export_server_mocks.mdx | 2 +- ...cts_migration_server_internal.devdocs.json | 6 +- ...aved_objects_migration_server_internal.mdx | 2 +- ...e_saved_objects_migration_server_mocks.mdx | 2 +- ...kbn_core_saved_objects_server.devdocs.json | 30 ++ api_docs/kbn_core_saved_objects_server.mdx | 4 +- ...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 | 2 +- api_docs/kbn_core_ui_settings_common.mdx | 2 +- 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.devdocs.json | 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.devdocs.json | 291 ++++++++++++++++++ api_docs/kbn_io_ts_utils.mdx | 4 +- api_docs/kbn_jest_serializers.mdx | 2 +- api_docs/kbn_journeys.devdocs.json | 191 +++++++++++- api_docs/kbn_journeys.mdx | 7 +- 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.devdocs.json | 34 +- api_docs/kbn_rule_data_utils.mdx | 4 +- api_docs/kbn_saved_objects_settings.mdx | 2 +- 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 | 4 +- api_docs/kbn_securitysolution_data_table.mdx | 2 +- api_docs/kbn_securitysolution_ecs.mdx | 2 +- ...kbn_securitysolution_es_utils.devdocs.json | 12 +- api_docs/kbn_securitysolution_es_utils.mdx | 2 +- ...ion_exception_list_components.devdocs.json | 8 +- ...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 +- api_docs/kbn_securitysolution_list_utils.mdx | 2 +- 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 +- ...vatar_user_profile_components.devdocs.json | 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 +- .../kbn_shared_ux_button_toolbar.devdocs.json | 4 +- api_docs/kbn_shared_ux_button_toolbar.mdx | 2 +- .../kbn_shared_ux_card_no_data.devdocs.json | 8 +- 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 +- .../kbn_shared_ux_markdown_mocks.devdocs.json | 8 +- 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 +- .../kbn_user_profile_components.devdocs.json | 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.devdocs.json | 4 +- api_docs/kibana_react.mdx | 2 +- api_docs/kibana_utils.mdx | 2 +- api_docs/kubernetes_security.mdx | 2 +- api_docs/lens.devdocs.json | 28 +- 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.devdocs.json | 6 +- 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.devdocs.json | 2 +- api_docs/navigation.mdx | 2 +- api_docs/newsfeed.mdx | 2 +- api_docs/notifications.mdx | 2 +- api_docs/observability.devdocs.json | 28 +- api_docs/observability.mdx | 2 +- api_docs/observability_shared.devdocs.json | 4 +- api_docs/observability_shared.mdx | 2 +- api_docs/osquery.devdocs.json | 4 +- api_docs/osquery.mdx | 2 +- api_docs/plugin_directory.mdx | 24 +- api_docs/presentation_util.devdocs.json | 2 +- 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.devdocs.json | 16 +- api_docs/rule_registry.mdx | 2 +- api_docs/runtime_fields.mdx | 2 +- api_docs/saved_objects.mdx | 2 +- api_docs/saved_objects_finder.mdx | 2 +- .../saved_objects_management.devdocs.json | 12 +- api_docs/saved_objects_management.mdx | 2 +- api_docs/saved_objects_tagging.mdx | 2 +- .../saved_objects_tagging_oss.devdocs.json | 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 +- .../telemetry_collection_manager.devdocs.json | 6 +- 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 | 2 +- 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.mdx | 2 +- api_docs/unified_histogram.mdx | 2 +- api_docs/unified_search.devdocs.json | 12 +- api_docs/unified_search.mdx | 2 +- api_docs/unified_search_autocomplete.mdx | 2 +- api_docs/url_forwarding.mdx | 2 +- api_docs/usage_collection.devdocs.json | 6 +- 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.devdocs.json | 2 +- api_docs/vis_type_xy.mdx | 2 +- api_docs/visualizations.devdocs.json | 12 +- api_docs/visualizations.mdx | 2 +- 556 files changed, 1649 insertions(+), 754 deletions(-) diff --git a/api_docs/actions.devdocs.json b/api_docs/actions.devdocs.json index 01b2670ee2eac..398265dab8a48 100644 --- a/api_docs/actions.devdocs.json +++ b/api_docs/actions.devdocs.json @@ -1941,7 +1941,7 @@ "label": "ActionsClient", "description": [], "signature": [ - "{ create: ({ action: { actionTypeId, name, config, secrets }, }: ", + "{ create: ({ action: { actionTypeId, name, config, secrets }, options, }: ", "CreateOptions", ") => Promise<", { diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx index 0bda3b189fa1d..6bfdc25b53149 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-20 +date: 2023-04-21 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 348dec0d0e80a..4cf73a72168eb 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-20 +date: 2023-04-21 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 409240044a405..b122c05b656d6 100644 --- a/api_docs/aiops.devdocs.json +++ b/api_docs/aiops.devdocs.json @@ -468,6 +468,46 @@ "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "aiops", + "id": "def-public.AiopsAppDependencies.fieldStats", + "type": "Object", + "tags": [], + "label": "fieldStats", + "description": [], + "signature": [ + "{ useFieldStatsTrigger: () => { renderOption: ((option: ", + "EuiComboBoxOptionOption", + ", searchValue: string, OPTION_CONTENT_CLASSNAME: string) => React.ReactNode) | undefined; closeFlyout: () => void; }; FieldStatsFlyoutProvider: React.FC<{ dataView: ", + { + "pluginId": "dataViews", + "scope": "common", + "docId": "kibDataViewsPluginApi", + "section": "def-common.DataView", + "text": "DataView" + }, + "; fieldStatsServices: ", + { + "pluginId": "unifiedFieldList", + "scope": "public", + "docId": "kibUnifiedFieldListPluginApi", + "section": "def-public.FieldStatsServices", + "text": "FieldStatsServices" + }, + "; timeRangeMs?: ", + { + "pluginId": "@kbn/ml-date-picker", + "scope": "common", + "docId": "kibKbnMlDatePickerPluginApi", + "section": "def-common.TimeRange", + "text": "TimeRange" + }, + " | undefined; dslQuery?: object | undefined; }>; } | undefined" + ], + "path": "x-pack/plugins/aiops/public/hooks/use_aiops_app_context.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/aiops.mdx b/api_docs/aiops.mdx index 10881ef4a3846..c0fa0ef3e4c02 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops'] --- import aiopsObj from './aiops.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 38 | 0 | 23 | 0 | +| 39 | 0 | 24 | 0 | ## Client diff --git a/api_docs/alerting.devdocs.json b/api_docs/alerting.devdocs.json index 007a6f4481be6..cfec38128269c 100644 --- a/api_docs/alerting.devdocs.json +++ b/api_docs/alerting.devdocs.json @@ -3049,9 +3049,9 @@ "label": "validate", "description": [], "signature": [ - "{ params?: ", + "{ params: ", "RuleTypeParamsValidator", - " | undefined; } | undefined" + "; }" ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, @@ -9246,6 +9246,18 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "alerting", + "id": "def-common.INTERNAL_ALERTING_API_FIND_RULES_PATH", + "type": "string", + "tags": [], + "label": "INTERNAL_ALERTING_API_FIND_RULES_PATH", + "description": [], + "path": "x-pack/plugins/alerting/common/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "alerting", "id": "def-common.INTERNAL_BASE_ALERTING_API_PATH", diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx index f55155afb84e6..ad9cd7c82bac4 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting'] --- import alertingObj from './alerting.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 602 | 1 | 581 | 42 | +| 603 | 1 | 582 | 42 | ## Client diff --git a/api_docs/apm.devdocs.json b/api_docs/apm.devdocs.json index 68e7c2735ea9f..93eeed1f13395 100644 --- a/api_docs/apm.devdocs.json +++ b/api_docs/apm.devdocs.json @@ -821,7 +821,7 @@ "label": "APIEndpoint", "description": [], "signature": [ - "\"POST /internal/apm/data_view/static\" | \"GET /internal/apm/data_view/title\" | \"GET /internal/apm/environments\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics_by_transaction_name\" | \"POST /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/samples\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/error/{errorId}\" | \"GET /internal/apm/services/{serviceName}/errors/distribution\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/top_erroneous_transactions\" | \"POST /internal/apm/latency/overall_distribution/transactions\" | \"GET /internal/apm/services/{serviceName}/metrics/charts\" | \"GET /internal/apm/services/{serviceName}/metrics/nodes\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/charts\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/summary\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/functions_overview\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/active_instances\" | \"GET /internal/apm/observability_overview\" | \"GET /internal/apm/observability_overview/has_data\" | \"GET /internal/apm/service-map\" | \"GET /internal/apm/service-map/service/{serviceName}\" | \"GET /internal/apm/service-map/dependency\" | \"GET /internal/apm/services\" | \"POST /internal/apm/services/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/metadata/details\" | \"GET /internal/apm/services/{serviceName}/metadata/icons\" | \"GET /internal/apm/services/{serviceName}/agent\" | \"GET /internal/apm/services/{serviceName}/transaction_types\" | \"GET /internal/apm/services/{serviceName}/node/{serviceNodeName}/metadata\" | \"GET /api/apm/services/{serviceName}/annotation/search\" | \"POST /api/apm/services/{serviceName}/annotation\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\" | \"GET /internal/apm/services/{serviceName}/throughput\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/dependencies\" | \"GET /internal/apm/services/{serviceName}/dependencies/breakdown\" | \"GET /internal/apm/services/{serviceName}/anomaly_charts\" | \"GET /internal/apm/services/{serviceName}/alerts_count\" | \"GET /internal/apm/service-groups\" | \"GET /internal/apm/service-group\" | \"POST /internal/apm/service-group\" | \"DELETE /internal/apm/service-group\" | \"GET /internal/apm/service-group/services\" | \"GET /internal/apm/service-group/counts\" | \"GET /internal/apm/suggestions\" | \"GET /internal/apm/traces/{traceId}\" | \"GET /internal/apm/traces\" | \"GET /internal/apm/traces/{traceId}/root_transaction\" | \"GET /internal/apm/transactions/{transactionId}\" | \"GET /internal/apm/traces/find\" | \"POST /internal/apm/traces/aggregated_critical_path\" | \"GET /internal/apm/traces/{traceId}/transactions/{transactionId}\" | \"GET /internal/apm/traces/{traceId}/spans/{spanId}\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\" | \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\" | \"GET /internal/apm/services/{serviceName}/transaction/charts/breakdown\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/error_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate_by_transaction_name\" | \"GET /internal/apm/rule_types/transaction_error_rate/chart_preview\" | \"GET /internal/apm/rule_types/transaction_duration/chart_preview\" | \"GET /internal/apm/rule_types/error_count/chart_preview\" | \"GET /api/apm/settings/agent-configuration\" | \"GET /api/apm/settings/agent-configuration/view\" | \"DELETE /api/apm/settings/agent-configuration\" | \"PUT /api/apm/settings/agent-configuration\" | \"POST /api/apm/settings/agent-configuration/search\" | \"GET /api/apm/settings/agent-configuration/environments\" | \"GET /api/apm/settings/agent-configuration/agent_name\" | \"GET /internal/apm/settings/anomaly-detection/jobs\" | \"POST /internal/apm/settings/anomaly-detection/jobs\" | \"GET /internal/apm/settings/anomaly-detection/environments\" | \"POST /internal/apm/settings/anomaly-detection/update_to_v3\" | \"GET /internal/apm/settings/apm-index-settings\" | \"GET /internal/apm/settings/apm-indices\" | \"POST /internal/apm/settings/apm-indices/save\" | \"GET /internal/apm/settings/custom_links/transaction\" | \"GET /internal/apm/settings/custom_links\" | \"POST /internal/apm/settings/custom_links\" | \"PUT /internal/apm/settings/custom_links/{id}\" | \"DELETE /internal/apm/settings/custom_links/{id}\" | \"GET /api/apm/sourcemaps\" | \"POST /api/apm/sourcemaps\" | \"DELETE /api/apm/sourcemaps/{id}\" | \"POST /internal/apm/sourcemaps/migrate_fleet_artifacts\" | \"GET /internal/apm/fleet/has_apm_policies\" | \"GET /internal/apm/fleet/agents\" | \"POST /api/apm/fleet/apm_server_schema\" | \"GET /internal/apm/fleet/apm_server_schema/unsupported\" | \"GET /internal/apm/fleet/migration_check\" | \"POST /internal/apm/fleet/cloud_apm_package_policy\" | \"GET /internal/apm/fleet/java_agent_versions\" | \"GET /internal/apm/dependencies/top_dependencies\" | \"GET /internal/apm/dependencies/upstream_services\" | \"GET /internal/apm/dependencies/metadata\" | \"GET /internal/apm/dependencies/charts/latency\" | \"GET /internal/apm/dependencies/charts/throughput\" | \"GET /internal/apm/dependencies/charts/error_rate\" | \"GET /internal/apm/dependencies/operations\" | \"GET /internal/apm/dependencies/charts/distribution\" | \"GET /internal/apm/dependencies/operations/spans\" | \"GET /internal/apm/correlations/field_candidates/transactions\" | \"GET /internal/apm/correlations/field_value_stats/transactions\" | \"POST /internal/apm/correlations/field_value_pairs/transactions\" | \"POST /internal/apm/correlations/significant_correlations/transactions\" | \"POST /internal/apm/correlations/p_values/transactions\" | \"GET /internal/apm/fallback_to_transactions\" | \"GET /internal/apm/has_data\" | \"GET /internal/apm/event_metadata/{processorEvent}/{id}\" | \"GET /internal/apm/agent_keys\" | \"GET /internal/apm/agent_keys/privileges\" | \"POST /internal/apm/api_key/invalidate\" | \"POST /api/apm/agent_keys\" | \"GET /internal/apm/storage_explorer\" | \"GET /internal/apm/services/{serviceName}/storage_details\" | \"GET /internal/apm/storage_chart\" | \"GET /internal/apm/storage_explorer/privileges\" | \"GET /internal/apm/storage_explorer_summary_stats\" | \"GET /internal/apm/storage_explorer/is_cross_cluster_search\" | \"GET /internal/apm/storage_explorer/get_services\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/parents\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/children\" | \"GET /internal/apm/services/{serviceName}/infrastructure_attributes\" | \"GET /internal/apm/debug-telemetry\" | \"GET /internal/apm/time_range_metadata\" | \"GET /internal/apm/settings/labs\" | \"GET /internal/apm/get_agents_per_service\" | \"GET /internal/apm/get_latest_agent_versions\" | \"GET /internal/apm/services/{serviceName}/agent_instances\" | \"GET /internal/apm/services/{serviceName}/mobile/filters\" | \"GET /internal/apm/mobile-services/{serviceName}/transactions/charts/sessions\" | \"GET /internal/apm/mobile-services/{serviceName}/transactions/charts/http_requests\" | \"GET /internal/apm/mobile-services/{serviceName}/stats\" | \"GET /internal/apm/mobile-services/{serviceName}/location/stats\" | \"GET /internal/apm/mobile-services/{serviceName}/terms\"" + "\"POST /internal/apm/data_view/static\" | \"GET /internal/apm/data_view/title\" | \"GET /internal/apm/environments\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics_by_transaction_name\" | \"POST /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/samples\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/error/{errorId}\" | \"GET /internal/apm/services/{serviceName}/errors/distribution\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/top_erroneous_transactions\" | \"POST /internal/apm/latency/overall_distribution/transactions\" | \"GET /internal/apm/services/{serviceName}/metrics/charts\" | \"GET /internal/apm/services/{serviceName}/metrics/nodes\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/charts\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/summary\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/functions_overview\" | \"GET /internal/apm/services/{serviceName}/metrics/serverless/active_instances\" | \"GET /internal/apm/observability_overview\" | \"GET /internal/apm/observability_overview/has_data\" | \"GET /internal/apm/service-map\" | \"GET /internal/apm/service-map/service/{serviceName}\" | \"GET /internal/apm/service-map/dependency\" | \"GET /internal/apm/services\" | \"POST /internal/apm/services/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/metadata/details\" | \"GET /internal/apm/services/{serviceName}/metadata/icons\" | \"GET /internal/apm/services/{serviceName}/agent\" | \"GET /internal/apm/services/{serviceName}/transaction_types\" | \"GET /internal/apm/services/{serviceName}/node/{serviceNodeName}/metadata\" | \"GET /api/apm/services/{serviceName}/annotation/search\" | \"POST /api/apm/services/{serviceName}/annotation\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\" | \"GET /internal/apm/services/{serviceName}/throughput\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/dependencies\" | \"GET /internal/apm/services/{serviceName}/dependencies/breakdown\" | \"GET /internal/apm/services/{serviceName}/anomaly_charts\" | \"GET /internal/apm/services/{serviceName}/alerts_count\" | \"GET /internal/apm/service-groups\" | \"GET /internal/apm/service-group\" | \"POST /internal/apm/service-group\" | \"DELETE /internal/apm/service-group\" | \"GET /internal/apm/service-group/services\" | \"GET /internal/apm/service-group/counts\" | \"GET /internal/apm/suggestions\" | \"GET /internal/apm/traces/{traceId}\" | \"GET /internal/apm/traces\" | \"GET /internal/apm/traces/{traceId}/root_transaction\" | \"GET /internal/apm/transactions/{transactionId}\" | \"GET /internal/apm/traces/find\" | \"POST /internal/apm/traces/aggregated_critical_path\" | \"GET /internal/apm/traces/{traceId}/transactions/{transactionId}\" | \"GET /internal/apm/traces/{traceId}/spans/{spanId}\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\" | \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\" | \"GET /internal/apm/services/{serviceName}/transaction/charts/breakdown\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/error_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate_by_transaction_name\" | \"GET /internal/apm/rule_types/transaction_error_rate/chart_preview\" | \"GET /internal/apm/rule_types/transaction_duration/chart_preview\" | \"GET /internal/apm/rule_types/error_count/chart_preview\" | \"GET /api/apm/settings/agent-configuration\" | \"GET /api/apm/settings/agent-configuration/view\" | \"DELETE /api/apm/settings/agent-configuration\" | \"PUT /api/apm/settings/agent-configuration\" | \"POST /api/apm/settings/agent-configuration/search\" | \"GET /api/apm/settings/agent-configuration/environments\" | \"GET /api/apm/settings/agent-configuration/agent_name\" | \"GET /internal/apm/settings/anomaly-detection/jobs\" | \"POST /internal/apm/settings/anomaly-detection/jobs\" | \"GET /internal/apm/settings/anomaly-detection/environments\" | \"POST /internal/apm/settings/anomaly-detection/update_to_v3\" | \"GET /internal/apm/settings/apm-index-settings\" | \"GET /internal/apm/settings/apm-indices\" | \"POST /internal/apm/settings/apm-indices/save\" | \"GET /internal/apm/settings/custom_links/transaction\" | \"GET /internal/apm/settings/custom_links\" | \"POST /internal/apm/settings/custom_links\" | \"PUT /internal/apm/settings/custom_links/{id}\" | \"DELETE /internal/apm/settings/custom_links/{id}\" | \"GET /api/apm/sourcemaps\" | \"POST /api/apm/sourcemaps\" | \"DELETE /api/apm/sourcemaps/{id}\" | \"POST /internal/apm/sourcemaps/migrate_fleet_artifacts\" | \"GET /internal/apm/fleet/has_apm_policies\" | \"GET /internal/apm/fleet/agents\" | \"POST /api/apm/fleet/apm_server_schema\" | \"GET /internal/apm/fleet/apm_server_schema/unsupported\" | \"GET /internal/apm/fleet/migration_check\" | \"POST /internal/apm/fleet/cloud_apm_package_policy\" | \"GET /internal/apm/fleet/java_agent_versions\" | \"GET /internal/apm/dependencies/top_dependencies\" | \"GET /internal/apm/dependencies/upstream_services\" | \"GET /internal/apm/dependencies/metadata\" | \"GET /internal/apm/dependencies/charts/latency\" | \"GET /internal/apm/dependencies/charts/throughput\" | \"GET /internal/apm/dependencies/charts/error_rate\" | \"GET /internal/apm/dependencies/operations\" | \"GET /internal/apm/dependencies/charts/distribution\" | \"GET /internal/apm/dependencies/operations/spans\" | \"GET /internal/apm/correlations/field_candidates/transactions\" | \"GET /internal/apm/correlations/field_value_stats/transactions\" | \"POST /internal/apm/correlations/field_value_pairs/transactions\" | \"POST /internal/apm/correlations/significant_correlations/transactions\" | \"POST /internal/apm/correlations/p_values/transactions\" | \"GET /internal/apm/fallback_to_transactions\" | \"GET /internal/apm/has_data\" | \"GET /internal/apm/event_metadata/{processorEvent}/{id}\" | \"GET /internal/apm/agent_keys\" | \"GET /internal/apm/agent_keys/privileges\" | \"POST /internal/apm/api_key/invalidate\" | \"POST /api/apm/agent_keys\" | \"GET /internal/apm/storage_explorer\" | \"GET /internal/apm/services/{serviceName}/storage_details\" | \"GET /internal/apm/storage_chart\" | \"GET /internal/apm/storage_explorer/privileges\" | \"GET /internal/apm/storage_explorer_summary_stats\" | \"GET /internal/apm/storage_explorer/is_cross_cluster_search\" | \"GET /internal/apm/storage_explorer/get_services\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/parents\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/children\" | \"GET /internal/apm/services/{serviceName}/infrastructure_attributes\" | \"GET /internal/apm/debug-telemetry\" | \"GET /internal/apm/time_range_metadata\" | \"GET /internal/apm/settings/labs\" | \"GET /internal/apm/get_agents_per_service\" | \"GET /internal/apm/get_latest_agent_versions\" | \"GET /internal/apm/services/{serviceName}/agent_instances\" | \"GET /internal/apm/services/{serviceName}/mobile/filters\" | \"GET /internal/apm/mobile-services/{serviceName}/most_used_charts\" | \"GET /internal/apm/mobile-services/{serviceName}/transactions/charts/sessions\" | \"GET /internal/apm/mobile-services/{serviceName}/transactions/charts/http_requests\" | \"GET /internal/apm/mobile-services/{serviceName}/stats\" | \"GET /internal/apm/mobile-services/{serviceName}/location/stats\" | \"GET /internal/apm/mobile-services/{serviceName}/terms\"" ], "path": "x-pack/plugins/apm/server/routes/apm_routes/get_global_apm_server_route_repository.ts", "deprecated": false, @@ -1215,6 +1215,68 @@ "SessionsTimeseries", ", ", "APMRouteCreateOptions", + ">; \"GET /internal/apm/mobile-services/{serviceName}/most_used_charts\": ", + { + "pluginId": "@kbn/server-route-repository", + "scope": "common", + "docId": "kibKbnServerRouteRepositoryPluginApi", + "section": "def-common.ServerRoute", + "text": "ServerRoute" + }, + "<\"GET /internal/apm/mobile-services/{serviceName}/most_used_charts\", ", + "TypeC", + "<{ path: ", + "TypeC", + "<{ serviceName: ", + "StringC", + "; }>; query: ", + "IntersectionC", + "<[", + "TypeC", + "<{ kuery: ", + "StringC", + "; }>, ", + "TypeC", + "<{ start: ", + "Type", + "; end: ", + "Type", + "; }>, ", + "TypeC", + "<{ environment: ", + "UnionC", + "<[", + "LiteralC", + "<\"ENVIRONMENT_NOT_DEFINED\">, ", + "LiteralC", + "<\"ENVIRONMENT_ALL\">, ", + "BrandC", + "<", + "StringC", + ", ", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.NonEmptyStringBrand", + "text": "NonEmptyStringBrand" + }, + ">]>; }>, ", + "PartialC", + "<{ transactionType: ", + "StringC", + "; }>]>; }>, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { mostUsedCharts: { key: ", + "MobilePropertyType", + "; options: { key: string | number; docCount: number; }[] & { key: string | number; docCount: number; }[]; }[]; }, ", + "APMRouteCreateOptions", ">; \"GET /internal/apm/services/{serviceName}/mobile/filters\": ", { "pluginId": "@kbn/server-route-repository", @@ -4133,6 +4195,8 @@ "StringC", "; transactionType: ", "StringC", + "; transactionName: ", + "StringC", "; }>, ", "TypeC", "<{ environment: ", @@ -4207,6 +4271,8 @@ "StringC", "; transactionType: ", "StringC", + "; transactionName: ", + "StringC", "; }>, ", "TypeC", "<{ environment: ", @@ -4279,6 +4345,8 @@ "StringC", "; transactionType: ", "StringC", + "; transactionName: ", + "StringC", "; }>, ", "TypeC", "<{ environment: ", diff --git a/api_docs/apm.mdx b/api_docs/apm.mdx index c998a7a7144e3..a5226b9ec1a9f 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm'] --- import apmObj from './apm.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) for ques | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 43 | 0 | 43 | 109 | +| 43 | 0 | 43 | 110 | ## Client diff --git a/api_docs/asset_manager.mdx b/api_docs/asset_manager.mdx index e848436d777e3..5704f9f7b9f81 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'assetManager'] --- import assetManagerObj from './asset_manager.devdocs.json'; diff --git a/api_docs/banners.devdocs.json b/api_docs/banners.devdocs.json index 6bd8c557af59f..ac8f2e365bb54 100644 --- a/api_docs/banners.devdocs.json +++ b/api_docs/banners.devdocs.json @@ -39,7 +39,7 @@ "label": "placement", "description": [], "signature": [ - "\"disabled\" | \"top\"" + "\"top\" | \"disabled\"" ], "path": "x-pack/plugins/banners/common/types.ts", "deprecated": false, @@ -137,7 +137,7 @@ "label": "BannerPlacement", "description": [], "signature": [ - "\"disabled\" | \"top\"" + "\"top\" | \"disabled\"" ], "path": "x-pack/plugins/banners/common/types.ts", "deprecated": false, diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx index 2a2128100d52b..5fcf3933483c9 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-20 +date: 2023-04-21 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 a8f930db9e65c..d3a45d4595553 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-20 +date: 2023-04-21 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 5f5bba2336e34..edb1a65ab929d 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas'] --- import canvasObj from './canvas.devdocs.json'; diff --git a/api_docs/cases.devdocs.json b/api_docs/cases.devdocs.json index 890144e0b538d..f41f5e5efe59a 100644 --- a/api_docs/cases.devdocs.json +++ b/api_docs/cases.devdocs.json @@ -898,7 +898,7 @@ "CaseSeverity", " | undefined; assignees?: string | string[] | undefined; reporters?: string | string[] | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; fields?: string | string[] | undefined; from?: string | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: string | string[] | undefined; rootSearchFields?: string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<", "Cases", - ">; getCasesStatus: (query: { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ countOpenCases: number; countInProgressCases: number; countClosedCases: number; }>; getCasesMetrics: (query: { features: string[]; } & { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ mttr?: number | null | undefined; }>; bulkGet: (params: ", + ">; getCasesStatus: (query: { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ countOpenCases: number; countInProgressCases: number; countClosedCases: number; }>; getCasesMetrics: (query: { features: string[]; } & { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ mttr?: number | null | undefined; }>; bulkGet: (params: ", { "pluginId": "cases", "scope": "common", diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx index 2d5921d0a7fa9..48d5f0ea25d03 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-20 +date: 2023-04-21 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 3768780876d40..e4c1c729146d8 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-20 +date: 2023-04-21 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 9cd07109fd4c6..0ef73b05d8bb0 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-20 +date: 2023-04-21 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 b95eb71a01306..28bf235d4e803 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-20 +date: 2023-04-21 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 884a85b316bf8..ea00c024dabf2 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-20 +date: 2023-04-21 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 67f71e567ed0e..b6680d6d7dbd1 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-20 +date: 2023-04-21 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 adb9e2df05e93..08bce01d73062 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-20 +date: 2023-04-21 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 3e5562983375b..a88a3ac25809b 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-20 +date: 2023-04-21 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 945b06637a3ce..aaa30afdee1ef 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-20 +date: 2023-04-21 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 603f9a2ee1dff..1f578689d0a00 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-20 +date: 2023-04-21 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 b7531a38a9fd2..9e673b08f099a 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-20 +date: 2023-04-21 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 2e462d1ada11b..5f75f99f25e24 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations'] --- import customIntegrationsObj from './custom_integrations.devdocs.json'; diff --git a/api_docs/dashboard.mdx b/api_docs/dashboard.mdx index 8567dd037fc43..eee68e6d1bd7b 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard'] --- import dashboardObj from './dashboard.devdocs.json'; diff --git a/api_docs/dashboard_enhanced.mdx b/api_docs/dashboard_enhanced.mdx index 09b0eaa2c4c92..707e03a38207b 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-20 +date: 2023-04-21 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 85576fb9250b9..a1ab4045a706c 100644 --- a/api_docs/data.devdocs.json +++ b/api_docs/data.devdocs.json @@ -10549,6 +10549,10 @@ "plugin": "@kbn/core-saved-objects-api-browser", "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-api-server", "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" @@ -10617,6 +10621,10 @@ "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts" @@ -18233,7 +18241,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -19155,8 +19165,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -28382,6 +28390,10 @@ "plugin": "@kbn/core-saved-objects-api-browser", "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-api-server", "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" @@ -28450,6 +28462,10 @@ "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts" diff --git a/api_docs/data.mdx b/api_docs/data.mdx index 3f5c1bae7a4bb..f22998f41aaf7 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-20 +date: 2023-04-21 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 cf7d8aa206fff..d08cdb5429fa8 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query'] --- import dataQueryObj from './data_query.devdocs.json'; diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx index 3f05adde84d4b..810eacf23336f 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-20 +date: 2023-04-21 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 f7e1deab79008..9c8b060ef7919 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-20 +date: 2023-04-21 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 5c09a7b3ca916..c5097f4dc01c1 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-20 +date: 2023-04-21 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 a3d412dc348cd..ddb9680520f03 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-20 +date: 2023-04-21 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 59294bf0b6169..5dab9a07d047d 100644 --- a/api_docs/data_views.devdocs.json +++ b/api_docs/data_views.devdocs.json @@ -14475,7 +14475,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -15397,8 +15399,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -21669,7 +21669,7 @@ "signature": [ "Pick<", "Toast", - ", \"prefix\" | \"defaultValue\" | \"children\" | \"is\" | \"security\" | \"slot\" | \"style\" | \"className\" | \"aria-label\" | \"data-test-subj\" | \"css\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"spellCheck\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"unselectable\" | \"inputMode\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChange\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", + ", \"prefix\" | \"defaultValue\" | \"children\" | \"onChange\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"data-test-subj\" | \"css\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", { "pluginId": "@kbn/core-mount-utils-browser", "scope": "common", @@ -25770,7 +25770,7 @@ "signature": [ "Pick<", "Toast", - ", \"prefix\" | \"defaultValue\" | \"children\" | \"is\" | \"security\" | \"slot\" | \"style\" | \"className\" | \"aria-label\" | \"data-test-subj\" | \"css\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"spellCheck\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"unselectable\" | \"inputMode\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChange\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", + ", \"prefix\" | \"defaultValue\" | \"children\" | \"onChange\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"data-test-subj\" | \"css\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", { "pluginId": "@kbn/core-mount-utils-browser", "scope": "common", @@ -25997,6 +25997,10 @@ "plugin": "@kbn/core-saved-objects-api-browser", "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-api-server", "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" @@ -26065,6 +26069,10 @@ "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts" diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx index 6613d7b5cce3c..9301c42220b3a 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-20 +date: 2023-04-21 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 ed4a651881e8a..aca7cffe95904 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-20 +date: 2023-04-21 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 0d65891b71bad..f730084172123 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx index bb2ecce66530d..cacf63a726fb4 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -116,8 +116,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject)+ 3 more | - | -| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject)+ 29 more | - | +| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject)+ 4 more | - | +| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=SavedObject)+ 32 more | - | | | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=migrationVersion), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts#:~:text=migrationVersion) | - | | | [create.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts#:~:text=SavedObjectReference), [create.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts#:~:text=SavedObjectReference), [bulk_update.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts#:~:text=SavedObjectReference), [bulk_update.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts#:~:text=SavedObjectReference), [update.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts#:~:text=SavedObjectReference), [update.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts#:~:text=SavedObjectReference) | - | @@ -139,7 +139,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | ---------------|-----------|-----------| | | [repository.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts#:~:text=migrationVersion), [repository.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts#:~:text=migrationVersion) | - | | | [repository.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts#:~:text=migrationVersion), [repository.test.common.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/test_helpers/repository.test.common.ts#:~:text=migrationVersion) | - | -| | [repository.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts#:~:text=migrationVersion), [repository.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts#:~:text=migrationVersion) | - | +| | [repository.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts#:~:text=migrationVersion), [repository.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts#:~:text=migrationVersion), [repository.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts#:~:text=migrationVersion), [repository.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts#:~:text=migrationVersion) | - | | | [internal_utils.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.ts#:~:text=migrationVersion), [internal_utils.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/internal_utils.ts#:~:text=migrationVersion) | - | @@ -156,8 +156,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject)+ 19 more | - | -| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject)+ 77 more | - | +| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject)+ 20 more | - | +| | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObject)+ 80 more | - | | | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObjectsClientContract), [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=SavedObjectsClientContract), [saved_objects_client.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts#:~:text=SavedObjectsClientContract), [saved_objects_client.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts#:~:text=SavedObjectsClientContract), [simple_saved_object.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts#:~:text=SavedObjectsClientContract), [simple_saved_object.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts#:~:text=SavedObjectsClientContract) | - | | | [simple_saved_object.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts#:~:text=create), [simple_saved_object.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.test.ts#:~:text=create), [saved_objects_client.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts#:~:text=create), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=create), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=create), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=create), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=create), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=create) | - | | | [saved_objects_client.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts#:~:text=bulkCreate), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=bulkCreate), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=bulkCreate), [saved_objects_client.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.test.ts#:~:text=bulkCreate) | - | diff --git a/api_docs/deprecations_by_team.mdx b/api_docs/deprecations_by_team.mdx index 60757f77d1709..c210b2af4a6b3 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx index c5476bbaa6ab9..880a19dbd0e91 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-20 +date: 2023-04-21 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 4371518bfaa3b..f6cb112f22cc5 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-20 +date: 2023-04-21 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 20e88ee9a6cc6..b3793bce178b0 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-20 +date: 2023-04-21 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 a461bbadec29e..fb9dfb81dacae 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-20 +date: 2023-04-21 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 8007a28a54c7c..1dca0ef9fb7d2 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-20 +date: 2023-04-21 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 4d9c5c8e7b08b..5826149eca609 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-20 +date: 2023-04-21 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 b31c6d4cc56b0..bc44d093b0ff4 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-20 +date: 2023-04-21 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 ffdd53dbd62fc..9ad8338b79886 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-20 +date: 2023-04-21 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 c775996206174..7b08e077f39e1 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-20 +date: 2023-04-21 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 ae832bf824d2b..7d9413f9555b1 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-20 +date: 2023-04-21 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 53dbd441018bb..bfe5735a5b5aa 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog'] --- import eventLogObj from './event_log.devdocs.json'; diff --git a/api_docs/exploratory_view.devdocs.json b/api_docs/exploratory_view.devdocs.json index 8d7c0c15654a4..955001e768109 100644 --- a/api_docs/exploratory_view.devdocs.json +++ b/api_docs/exploratory_view.devdocs.json @@ -1760,7 +1760,7 @@ "label": "align", "description": [], "signature": [ - "\"right\" | \"left\" | \"center\" | undefined" + "\"left\" | \"right\" | \"center\" | undefined" ], "path": "x-pack/plugins/exploratory_view/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, diff --git a/api_docs/exploratory_view.mdx b/api_docs/exploratory_view.mdx index 7117de22a6fae..2ebfc71ebc060 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-20 +date: 2023-04-21 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 525b0efa9cfad..5f952a34778d8 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-20 +date: 2023-04-21 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 f19fdf39642cf..17b1e1a7dd0c3 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionGauge'] --- import expressionGaugeObj from './expression_gauge.devdocs.json'; diff --git a/api_docs/expression_heatmap.devdocs.json b/api_docs/expression_heatmap.devdocs.json index 747b9bef44b61..0e2adfddecb47 100644 --- a/api_docs/expression_heatmap.devdocs.json +++ b/api_docs/expression_heatmap.devdocs.json @@ -1707,7 +1707,7 @@ "label": "options", "description": [], "signature": [ - "(\"right\" | \"left\" | \"top\" | \"bottom\")[]" + "(\"top\" | \"left\" | \"right\" | \"bottom\")[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, diff --git a/api_docs/expression_heatmap.mdx b/api_docs/expression_heatmap.mdx index 4eecb16c31f84..8e23328ac3938 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionHeatmap'] --- import expressionHeatmapObj from './expression_heatmap.devdocs.json'; diff --git a/api_docs/expression_image.devdocs.json b/api_docs/expression_image.devdocs.json index 9d01073c26d1f..ab0abc18f68ea 100644 --- a/api_docs/expression_image.devdocs.json +++ b/api_docs/expression_image.devdocs.json @@ -431,7 +431,7 @@ "label": "OriginString", "description": [], "signature": [ - "\"right\" | \"left\" | \"top\" | \"bottom\"" + "\"top\" | \"left\" | \"right\" | \"bottom\"" ], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", "deprecated": false, diff --git a/api_docs/expression_image.mdx b/api_docs/expression_image.mdx index fb6b79947615d..2a5739fbf1ce6 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-20 +date: 2023-04-21 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 b490005a0e4d0..e5641b9c5fd0d 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-20 +date: 2023-04-21 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 85bded968098f..b8a570a50ce47 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-20 +date: 2023-04-21 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 4e56daabbec11..7ea3ec6b861eb 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-20 +date: 2023-04-21 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 3910a33c754e2..92e6b7076b109 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionPartitionVis'] --- import expressionPartitionVisObj from './expression_partition_vis.devdocs.json'; diff --git a/api_docs/expression_repeat_image.devdocs.json b/api_docs/expression_repeat_image.devdocs.json index 1d7d9d10e45c7..00b5af2b81d57 100644 --- a/api_docs/expression_repeat_image.devdocs.json +++ b/api_docs/expression_repeat_image.devdocs.json @@ -500,7 +500,7 @@ "label": "OriginString", "description": [], "signature": [ - "\"right\" | \"left\" | \"top\" | \"bottom\"" + "\"top\" | \"left\" | \"right\" | \"bottom\"" ], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", "deprecated": false, diff --git a/api_docs/expression_repeat_image.mdx b/api_docs/expression_repeat_image.mdx index b7ff5f80cbd45..5641f62c19926 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-20 +date: 2023-04-21 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 57751d587dc89..10142b9bf030a 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage'] --- import expressionRevealImageObj from './expression_reveal_image.devdocs.json'; diff --git a/api_docs/expression_shape.devdocs.json b/api_docs/expression_shape.devdocs.json index 3c6d97d7ce0f4..9e6ff34da8b51 100644 --- a/api_docs/expression_shape.devdocs.json +++ b/api_docs/expression_shape.devdocs.json @@ -1599,7 +1599,7 @@ "label": "OriginString", "description": [], "signature": [ - "\"right\" | \"left\" | \"top\" | \"bottom\"" + "\"top\" | \"left\" | \"right\" | \"bottom\"" ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, @@ -2633,7 +2633,7 @@ "label": "OriginString", "description": [], "signature": [ - "\"right\" | \"left\" | \"top\" | \"bottom\"" + "\"top\" | \"left\" | \"right\" | \"bottom\"" ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, diff --git a/api_docs/expression_shape.mdx b/api_docs/expression_shape.mdx index 4147ab5952333..26f353bb29f5f 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-20 +date: 2023-04-21 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 703ea27cf3818..4961a72b260d7 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud'] --- import expressionTagcloudObj from './expression_tagcloud.devdocs.json'; diff --git a/api_docs/expression_x_y.devdocs.json b/api_docs/expression_x_y.devdocs.json index ea819b254bf64..17db243bca6b5 100644 --- a/api_docs/expression_x_y.devdocs.json +++ b/api_docs/expression_x_y.devdocs.json @@ -875,7 +875,7 @@ "\nPosition of the legend relative to the chart" ], "signature": [ - "\"right\" | \"left\" | \"top\" | \"bottom\"" + "\"top\" | \"left\" | \"right\" | \"bottom\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, @@ -923,7 +923,7 @@ "\nHorizontal Alignment of the legend when it is set inside chart" ], "signature": [ - "\"right\" | \"left\" | undefined" + "\"left\" | \"right\" | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, @@ -1867,7 +1867,7 @@ "label": "overrides", "description": [], "signature": [ - "(Partial> | undefined>; gridLine?: ", + ", \"gridLine\">> | undefined>; title?: string | undefined; gridLine?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2106,7 +2106,7 @@ "label": "AllowedXYOverrides", "description": [], "signature": [ - "{ axisX?: { children?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; title?: string | undefined; style?: ", + "{ axisX?: { children?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; style?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2118,7 +2118,7 @@ "RecursivePartial", "> | undefined>; gridLine?: ", + ", \"gridLine\">> | undefined>; title?: string | undefined; gridLine?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2140,7 +2140,7 @@ "YDomainRange", " | undefined>; position?: ", "Position", - " | undefined; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; showGridLines?: boolean | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; } | undefined; axisLeft?: { children?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; title?: string | undefined; style?: ", + " | undefined; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; showGridLines?: boolean | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; } | undefined; axisLeft?: { children?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; style?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2152,7 +2152,7 @@ "RecursivePartial", "> | undefined>; gridLine?: ", + ", \"gridLine\">> | undefined>; title?: string | undefined; gridLine?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2174,7 +2174,7 @@ "YDomainRange", " | undefined>; position?: ", "Position", - " | undefined; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; showGridLines?: boolean | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; } | undefined; axisRight?: { children?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; title?: string | undefined; style?: ", + " | undefined; hide?: boolean | undefined; showOverlappingTicks?: boolean | undefined; showOverlappingLabels?: boolean | undefined; timeAxisLayerCount?: number | undefined; integersOnly?: boolean | undefined; tickFormat?: \"ignore\" | undefined; showGridLines?: boolean | undefined; labelFormat?: \"ignore\" | undefined; showDuplicatedTicks?: boolean | undefined; } | undefined; axisRight?: { children?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; style?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2186,7 +2186,7 @@ "RecursivePartial", "> | undefined>; gridLine?: ", + ", \"gridLine\">> | undefined>; title?: string | undefined; gridLine?: ", { "pluginId": "@kbn/chart-expressions-common", "scope": "common", @@ -2875,7 +2875,7 @@ "label": "IconPosition", "description": [], "signature": [ - "\"right\" | \"left\" | \"above\" | \"below\" | \"auto\"" + "\"left\" | \"right\" | \"above\" | \"below\" | \"auto\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, diff --git a/api_docs/expression_x_y.mdx b/api_docs/expression_x_y.mdx index 605a8a4b3bef5..a70dc43040e76 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-20 +date: 2023-04-21 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 ad1ab82fa4842..823159e766547 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-20 +date: 2023-04-21 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 9151874067f58..711def3633bf5 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features'] --- import featuresObj from './features.devdocs.json'; diff --git a/api_docs/field_formats.mdx b/api_docs/field_formats.mdx index 1cd315e9ca353..0996e6259bf11 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-20 +date: 2023-04-21 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 7657a53cabc3f..307f54008c991 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload'] --- import fileUploadObj from './file_upload.devdocs.json'; diff --git a/api_docs/files.devdocs.json b/api_docs/files.devdocs.json index 284fc310bee93..a5d56dd4feea1 100644 --- a/api_docs/files.devdocs.json +++ b/api_docs/files.devdocs.json @@ -912,7 +912,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -1834,8 +1836,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", diff --git a/api_docs/files.mdx b/api_docs/files.mdx index ae68c060bd5d0..b3f4dba8b7273 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-20 +date: 2023-04-21 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 d9d3b812cd8eb..bbf97bb4e042f 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement'] --- import filesManagementObj from './files_management.devdocs.json'; diff --git a/api_docs/fleet.devdocs.json b/api_docs/fleet.devdocs.json index 66e49033cc9df..df8f7a32becfc 100644 --- a/api_docs/fleet.devdocs.json +++ b/api_docs/fleet.devdocs.json @@ -6315,7 +6315,9 @@ "section": "def-common.AuthenticatedUser", "text": "AuthenticatedUser" }, - " | undefined; bumpRevision?: boolean | undefined; force?: boolean | undefined; skipEnsureInstalled?: boolean | undefined; skipUniqueNameVerification?: boolean | undefined; overwrite?: boolean | undefined; packageInfo?: ", + " | undefined; authorizationHeader?: ", + "HTTPAuthorizationHeader", + " | null | undefined; bumpRevision?: boolean | undefined; force?: boolean | undefined; skipEnsureInstalled?: boolean | undefined; skipUniqueNameVerification?: boolean | undefined; overwrite?: boolean | undefined; packageInfo?: ", { "pluginId": "fleet", "scope": "common", @@ -6476,6 +6478,21 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "fleet", + "id": "def-server.PackagePolicyClient.create.$4.authorizationHeader", + "type": "CompoundType", + "tags": [], + "label": "authorizationHeader", + "description": [], + "signature": [ + "HTTPAuthorizationHeader", + " | null | undefined" + ], + "path": "x-pack/plugins/fleet/server/services/package_policy_service.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "fleet", "id": "def-server.PackagePolicyClient.create.$4.bumpRevision", @@ -6650,7 +6667,9 @@ "section": "def-common.AuthenticatedUser", "text": "AuthenticatedUser" }, - " | undefined; bumpRevision?: boolean | undefined; force?: true | undefined; } | undefined) => Promise<", + " | undefined; bumpRevision?: boolean | undefined; force?: true | undefined; authorizationHeader?: ", + "HTTPAuthorizationHeader", + " | null | undefined; } | undefined) => Promise<", { "pluginId": "fleet", "scope": "common", @@ -6781,6 +6800,21 @@ "path": "x-pack/plugins/fleet/server/services/package_policy_service.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "fleet", + "id": "def-server.PackagePolicyClient.bulkCreate.$4.authorizationHeader", + "type": "CompoundType", + "tags": [], + "label": "authorizationHeader", + "description": [], + "signature": [ + "HTTPAuthorizationHeader", + " | null | undefined" + ], + "path": "x-pack/plugins/fleet/server/services/package_policy_service.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -9365,7 +9399,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -10287,8 +10323,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -10700,7 +10734,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -11622,8 +11658,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -12048,7 +12082,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -12970,8 +13006,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -13393,7 +13427,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -14315,8 +14351,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -14741,7 +14775,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -15663,8 +15699,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -22726,7 +22760,7 @@ "section": "def-common.ElasticsearchAssetType", "text": "ElasticsearchAssetType" }, - "; }" + "; deferred?: boolean | undefined; }" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, @@ -23657,7 +23691,7 @@ "label": "PackageSpecCategory", "description": [], "signature": [ - "\"connector\" | \"monitoring\" | \"security\" | \"infrastructure\" | \"observability\" | \"cloud\" | \"custom\" | \"enterprise_search\" | \"analytics_engine\" | \"application_observability\" | \"app_search\" | \"auditd\" | \"authentication\" | \"aws\" | \"azure\" | \"big_data\" | \"cdn_security\" | \"config_management\" | \"connector_client\" | \"connector_package\" | \"containers\" | \"content_source\" | \"crawler\" | \"credential_management\" | \"crm\" | \"custom_logs\" | \"database_security\" | \"datastore\" | \"dns_security\" | \"edr_xdr\" | \"elasticsearch_sdk\" | \"elastic_stack\" | \"email_security\" | \"firewall_security\" | \"google_cloud\" | \"iam\" | \"ids_ips\" | \"java_observability\" | \"kubernetes\" | \"language_client\" | \"languages\" | \"load_balancer\" | \"message_queue\" | \"native_search\" | \"network\" | \"network_security\" | \"notification\" | \"os_system\" | \"process_manager\" | \"productivity\" | \"productivity_security\" | \"proxy_security\" | \"sdk_search\" | \"stream_processing\" | \"support\" | \"threat_intel\" | \"ticketing\" | \"version_control\" | \"virtualization\" | \"vpn_security\" | \"vulnerability_management\" | \"web\" | \"web_application_firewall\" | \"websphere\" | \"workplace_search\"" + "\"connector\" | \"security\" | \"monitoring\" | \"infrastructure\" | \"observability\" | \"cloud\" | \"custom\" | \"enterprise_search\" | \"analytics_engine\" | \"application_observability\" | \"app_search\" | \"auditd\" | \"authentication\" | \"aws\" | \"azure\" | \"big_data\" | \"cdn_security\" | \"config_management\" | \"connector_client\" | \"connector_package\" | \"containers\" | \"content_source\" | \"crawler\" | \"credential_management\" | \"crm\" | \"custom_logs\" | \"database_security\" | \"datastore\" | \"dns_security\" | \"edr_xdr\" | \"elasticsearch_sdk\" | \"elastic_stack\" | \"email_security\" | \"firewall_security\" | \"google_cloud\" | \"iam\" | \"ids_ips\" | \"java_observability\" | \"kubernetes\" | \"language_client\" | \"languages\" | \"load_balancer\" | \"message_queue\" | \"native_search\" | \"network\" | \"network_security\" | \"notification\" | \"os_system\" | \"process_manager\" | \"productivity\" | \"productivity_security\" | \"proxy_security\" | \"sdk_search\" | \"stream_processing\" | \"support\" | \"threat_intel\" | \"ticketing\" | \"version_control\" | \"virtualization\" | \"vpn_security\" | \"vulnerability_management\" | \"web\" | \"web_application_firewall\" | \"websphere\" | \"workplace_search\"" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", "deprecated": false, @@ -23779,7 +23813,7 @@ "label": "RegistrySearchResult", "description": [], "signature": [ - "{ type?: \"input\" | \"integration\" | undefined; name: string; description: string; version: string; title: string; path: string; download: string; internal?: boolean | undefined; icons?: (", + "{ type?: \"input\" | \"integration\" | undefined; name: string; description: string; title: string; version: string; path: string; download: string; internal?: boolean | undefined; icons?: (", { "pluginId": "fleet", "scope": "common", @@ -25470,6 +25504,17 @@ "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "fleet", + "id": "def-common.EPM_API_ROUTES.REAUTHORIZE_TRANSFORMS", + "type": "string", + "tags": [], + "label": "REAUTHORIZE_TRANSFORMS", + "description": [], + "path": "x-pack/plugins/fleet/common/constants/routes.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25816,6 +25861,53 @@ } ], "returnComment": [] + }, + { + "parentPluginId": "fleet", + "id": "def-common.epmRouteService.getReauthorizeTransformsPath", + "type": "Function", + "tags": [], + "label": "getReauthorizeTransformsPath", + "description": [], + "signature": [ + "(pkgName: string, pkgVersion: string) => string" + ], + "path": "x-pack/plugins/fleet/common/services/routes.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "fleet", + "id": "def-common.epmRouteService.getReauthorizeTransformsPath.$1", + "type": "string", + "tags": [], + "label": "pkgName", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/plugins/fleet/common/services/routes.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "fleet", + "id": "def-common.epmRouteService.getReauthorizeTransformsPath.$2", + "type": "string", + "tags": [], + "label": "pkgVersion", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/plugins/fleet/common/services/routes.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] } ], "initialIsOpen": false diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx index c2886bd1024a5..f1a34342d9ed3 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet'] --- import fleetObj from './fleet.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) for questi | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 1103 | 3 | 998 | 27 | +| 1109 | 3 | 1004 | 28 | ## Client diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx index f940b4fcf495f..e5180ea54c5f9 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-20 +date: 2023-04-21 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 ab829887b23a1..d01239408c028 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-20 +date: 2023-04-21 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 371b6ec28b3db..9a3c60b620a1a 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-20 +date: 2023-04-21 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 4027dd7e65936..f46b769442430 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-20 +date: 2023-04-21 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 0aee4872f24ed..3d5fedb9c28b1 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-20 +date: 2023-04-21 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 afe5428691d92..c56e4e1ac00e1 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-20 +date: 2023-04-21 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 286d3290ad0e4..2ef0550b3c7ec 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-20 +date: 2023-04-21 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 42016b66daf73..be420e800114c 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-20 +date: 2023-04-21 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 501e179a1c099..77f9f7caf3d13 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-20 +date: 2023-04-21 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 053175863af1a..9d79fbd636e02 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-20 +date: 2023-04-21 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 4bdb843dc3269..d38801a007d3a 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-20 +date: 2023-04-21 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 3d0026198d905..d5b19befd4e62 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-20 +date: 2023-04-21 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 a1340ac35ecfa..9d8f4dce4e4e6 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-20 +date: 2023-04-21 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 3a40615c08a29..496c97c35fa87 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts'] --- import kbnAlertsObj from './kbn_alerts.devdocs.json'; diff --git a/api_docs/kbn_alerts_as_data_utils.devdocs.json b/api_docs/kbn_alerts_as_data_utils.devdocs.json index 8c980bb4a392a..8aeb89061c77d 100644 --- a/api_docs/kbn_alerts_as_data_utils.devdocs.json +++ b/api_docs/kbn_alerts_as_data_utils.devdocs.json @@ -114,7 +114,7 @@ "label": "AlertFieldMap", "description": [], "signature": [ - "{ readonly \"kibana.alert.action_group\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.case_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.duration.us\": { readonly type: \"long\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.end\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping\": { readonly type: \"boolean\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping_history\": { readonly type: \"boolean\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.maintenance_window_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.instance.id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.last_detected\": { readonly type: \"date\"; readonly required: false; readonly array: false; }; readonly \"kibana.alert.reason\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.category\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.consumer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.execution.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.name\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.parameters\": { readonly array: false; readonly type: \"flattened\"; readonly ignore_above: 4096; readonly required: false; }; readonly \"kibana.alert.rule.producer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.revision\": { readonly type: \"long\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.tags\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.rule.rule_type_id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.start\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.status\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.time_range\": { readonly type: \"date_range\"; readonly format: \"epoch_millis||strict_date_optional_time\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.workflow_status\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.space_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: true; }; readonly \"@timestamp\": { readonly type: \"date\"; readonly required: true; readonly array: false; }; readonly \"kibana.version\": { readonly type: \"version\"; readonly array: false; readonly required: false; }; }" + "{ readonly \"kibana.alert.action_group\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.case_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.duration.us\": { readonly type: \"long\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.end\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping\": { readonly type: \"boolean\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping_history\": { readonly type: \"boolean\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.maintenance_window_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.instance.id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.last_detected\": { readonly type: \"date\"; readonly required: false; readonly array: false; }; readonly \"kibana.alert.reason\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.category\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.consumer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.execution.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.name\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.parameters\": { readonly array: false; readonly type: \"flattened\"; readonly ignore_above: 4096; readonly required: false; }; readonly \"kibana.alert.rule.producer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.revision\": { readonly type: \"long\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.tags\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.rule.rule_type_id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.start\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.status\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.time_range\": { readonly type: \"date_range\"; readonly format: \"epoch_millis||strict_date_optional_time\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.url\": { readonly type: \"keyword\"; readonly array: false; readonly index: false; readonly required: false; readonly ignore_above: 2048; }; readonly \"kibana.alert.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.workflow_status\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.space_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: true; }; readonly \"@timestamp\": { readonly type: \"date\"; readonly required: true; readonly array: false; }; readonly \"kibana.version\": { readonly type: \"version\"; readonly array: false; readonly required: false; }; }" ], "path": "packages/kbn-alerts-as-data-utils/src/field_maps/alert_field_map.ts", "deprecated": false, @@ -150,7 +150,7 @@ "label": "ExperimentalRuleFieldMap", "description": [], "signature": [ - "{ readonly \"kibana.alert.evaluation.threshold\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; readonly \"kibana.alert.evaluation.value\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; }" + "{ readonly \"kibana.alert.evaluation.threshold\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; readonly \"kibana.alert.evaluation.value\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; readonly \"kibana.alert.evaluation.values\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; readonly array: true; }; }" ], "path": "packages/kbn-alerts-as-data-utils/src/field_maps/legacy_experimental_field_map.ts", "deprecated": false, @@ -182,7 +182,7 @@ "label": "alertFieldMap", "description": [], "signature": [ - "{ readonly \"kibana.alert.action_group\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.case_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.duration.us\": { readonly type: \"long\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.end\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping\": { readonly type: \"boolean\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping_history\": { readonly type: \"boolean\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.maintenance_window_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.instance.id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.last_detected\": { readonly type: \"date\"; readonly required: false; readonly array: false; }; readonly \"kibana.alert.reason\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.category\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.consumer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.execution.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.name\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.parameters\": { readonly array: false; readonly type: \"flattened\"; readonly ignore_above: 4096; readonly required: false; }; readonly \"kibana.alert.rule.producer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.revision\": { readonly type: \"long\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.tags\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.rule.rule_type_id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.start\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.status\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.time_range\": { readonly type: \"date_range\"; readonly format: \"epoch_millis||strict_date_optional_time\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.workflow_status\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.space_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: true; }; readonly \"@timestamp\": { readonly type: \"date\"; readonly required: true; readonly array: false; }; readonly \"kibana.version\": { readonly type: \"version\"; readonly array: false; readonly required: false; }; }" + "{ readonly \"kibana.alert.action_group\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.case_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.duration.us\": { readonly type: \"long\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.end\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping\": { readonly type: \"boolean\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.flapping_history\": { readonly type: \"boolean\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.maintenance_window_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.instance.id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.last_detected\": { readonly type: \"date\"; readonly required: false; readonly array: false; }; readonly \"kibana.alert.reason\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.category\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.consumer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.execution.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.rule.name\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.parameters\": { readonly array: false; readonly type: \"flattened\"; readonly ignore_above: 4096; readonly required: false; }; readonly \"kibana.alert.rule.producer\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.revision\": { readonly type: \"long\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.tags\": { readonly type: \"keyword\"; readonly array: true; readonly required: false; }; readonly \"kibana.alert.rule.rule_type_id\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.rule.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.start\": { readonly type: \"date\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.status\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.time_range\": { readonly type: \"date_range\"; readonly format: \"epoch_millis||strict_date_optional_time\"; readonly array: false; readonly required: false; }; readonly \"kibana.alert.url\": { readonly type: \"keyword\"; readonly array: false; readonly index: false; readonly required: false; readonly ignore_above: 2048; }; readonly \"kibana.alert.uuid\": { readonly type: \"keyword\"; readonly array: false; readonly required: true; }; readonly \"kibana.alert.workflow_status\": { readonly type: \"keyword\"; readonly array: false; readonly required: false; }; readonly \"kibana.space_ids\": { readonly type: \"keyword\"; readonly array: true; readonly required: true; }; readonly \"@timestamp\": { readonly type: \"date\"; readonly required: true; readonly array: false; }; readonly \"kibana.version\": { readonly type: \"version\"; readonly array: false; readonly required: false; }; }" ], "path": "packages/kbn-alerts-as-data-utils/src/field_maps/alert_field_map.ts", "deprecated": false, @@ -233,7 +233,7 @@ "label": "legacyExperimentalFieldMap", "description": [], "signature": [ - "{ readonly \"kibana.alert.evaluation.threshold\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; readonly \"kibana.alert.evaluation.value\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; }" + "{ readonly \"kibana.alert.evaluation.threshold\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; readonly \"kibana.alert.evaluation.value\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; }; readonly \"kibana.alert.evaluation.values\": { readonly type: \"scaled_float\"; readonly scaling_factor: 100; readonly required: false; readonly array: true; }; }" ], "path": "packages/kbn-alerts-as-data-utils/src/field_maps/legacy_experimental_field_map.ts", "deprecated": false, diff --git a/api_docs/kbn_alerts_as_data_utils.mdx b/api_docs/kbn_alerts_as_data_utils.mdx index 07fa1da2c3fdc..af3a71ef4577b 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-20 +date: 2023-04-21 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 f5021476e5f49..73cb3b3c1b270 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-20 +date: 2023-04-21 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 e94e40097f032..c41d203f9bad1 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics'] --- import kbnAnalyticsObj from './kbn_analytics.devdocs.json'; diff --git a/api_docs/kbn_analytics_client.devdocs.json b/api_docs/kbn_analytics_client.devdocs.json index 91e27c34dad59..82163bbf3b11d 100644 --- a/api_docs/kbn_analytics_client.devdocs.json +++ b/api_docs/kbn_analytics_client.devdocs.json @@ -758,6 +758,10 @@ "plugin": "securitySolution", "path": "x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts" }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/public/common/lib/telemetry/telemetry_client.ts" + }, { "plugin": "@kbn/core-analytics-browser-mocks", "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx index abc54380532ba..cdc8ea6d81beb 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-20 +date: 2023-04-21 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 baed09c3e5ccf..eaf3487e3149d 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-20 +date: 2023-04-21 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 7ce6fa5d7469c..9110cc32f4c31 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-20 +date: 2023-04-21 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 8ecbc7e49d01f..df8a64c48bd63 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-20 +date: 2023-04-21 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 6c27ce5db8cfb..05865a67ce0b7 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-20 +date: 2023-04-21 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 3a5cf3a361d46..f960174f73859 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-20 +date: 2023-04-21 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 c285567ce864a..8900077fd2ace 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-20 +date: 2023-04-21 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 063b1740f59b5..c8432ebc4205c 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-20 +date: 2023-04-21 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 aa86b1d04d774..b76de3fe835c9 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-20 +date: 2023-04-21 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 91662b2f085a5..61e2869b4e841 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-20 +date: 2023-04-21 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 e5ae1486ae348..ac22df442633d 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-20 +date: 2023-04-21 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 a19320ccda226..738eaa012d294 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-20 +date: 2023-04-21 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 071e47698abee..891ae75c684ea 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-20 +date: 2023-04-21 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 6cbfa7316cd70..ea357626d903d 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-20 +date: 2023-04-21 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 b0958df1d649f..d47f7c20a984c 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-20 +date: 2023-04-21 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 3331edc3f96d5..b003b37a45c17 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-20 +date: 2023-04-21 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 49fee67f64c43..6d8ba1ec6ec6d 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-20 +date: 2023-04-21 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 a28a0769f6d79..c9b004312e1fc 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-20 +date: 2023-04-21 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 cd9b9e5c6d1ee..23afc0f33949d 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-20 +date: 2023-04-21 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 0f1fb1fb71d8f..2128bc3924343 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_code_editor_mocks.devdocs.json index 18ea0f97a7fc7..1c39d497c16d1 100644 --- a/api_docs/kbn_code_editor_mocks.devdocs.json +++ b/api_docs/kbn_code_editor_mocks.devdocs.json @@ -534,7 +534,7 @@ "label": "Params", "description": [], "signature": [ - "{ value: any; \"aria-label\": any; placeholder: any; allowFullScreen: any; languageId: any; useDarkTheme: any; transparentBackground: any; }" + "{ value: any; placeholder: any; \"aria-label\": any; allowFullScreen: any; languageId: any; useDarkTheme: any; transparentBackground: any; }" ], "path": "packages/shared-ux/code_editor/mocks/storybook.ts", "deprecated": false, diff --git a/api_docs/kbn_code_editor_mocks.mdx b/api_docs/kbn_code_editor_mocks.mdx index 714ef2b878fcd..2c4aa38ed970a 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-20 +date: 2023-04-21 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 df1eb43f8c67d..1f2f008178f13 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-20 +date: 2023-04-21 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 f311f1eee5a27..0ce1b008677ff 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-20 +date: 2023-04-21 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 470968d50d845..b7e89d00b3240 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-20 +date: 2023-04-21 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 1f493df2129f4..81635d8b9bd51 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-20 +date: 2023-04-21 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 9860b8335ea58..1288f3330685d 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-20 +date: 2023-04-21 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 b934f826eee2d..3dfb0e5bff18e 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-20 +date: 2023-04-21 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 bbf4f05364882..5562e1bf3070f 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-20 +date: 2023-04-21 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 7f3708168936b..d81b99987512d 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-20 +date: 2023-04-21 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 d66e54be71a08..fb39ec52f5459 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-20 +date: 2023-04-21 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 8408c9e4e4fdf..5a1af3d3f7d7d 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-20 +date: 2023-04-21 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 61f4f5b6c3051..111fe6d8e5318 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-20 +date: 2023-04-21 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 83100905f5ef4..d7be4f034346a 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-20 +date: 2023-04-21 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 90225469bdbf8..b57a29bb0ad0a 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-20 +date: 2023-04-21 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 57a2dc2c514a7..00a6fa0cb815d 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-20 +date: 2023-04-21 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 16bd5773b95e7..e1a48c61d3b9b 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-20 +date: 2023-04-21 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 2f6e98f38515e..4bad226894e0c 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-20 +date: 2023-04-21 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 97d35ded06253..5c042475509cb 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-20 +date: 2023-04-21 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 71d8df1a5b108..69f9212722cc9 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-20 +date: 2023-04-21 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 321850ff7277d..65e3d10226f52 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-20 +date: 2023-04-21 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 83f9a87825afd..86f50bf667604 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-20 +date: 2023-04-21 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 28e8e2c3d4bba..cf75d243d2b43 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-20 +date: 2023-04-21 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 9ee1cd2fa496d..16fa31f01e292 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-20 +date: 2023-04-21 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 1356483a8d97b..4ca1597fcfadc 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-20 +date: 2023-04-21 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 1f98113a927d0..a86cc6571c831 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-20 +date: 2023-04-21 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 968a690b339ec..027e44a2e349d 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-20 +date: 2023-04-21 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 7cda44c53af75..492519d0fef3a 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-20 +date: 2023-04-21 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 afa9a31cd9487..a8ef5c7e24843 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-20 +date: 2023-04-21 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 0f5a69dee73ed..cf04b0d4146b0 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-20 +date: 2023-04-21 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 46dcf88a3c197..c3ba2d14d0f84 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-20 +date: 2023-04-21 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 fc131c1460d8c..69c93fed8bdf6 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-20 +date: 2023-04-21 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 97fcf979018f8..3447e44fdeb14 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-20 +date: 2023-04-21 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 7f9f083c57ea6..512e0a4658e11 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-20 +date: 2023-04-21 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 e613abbf44659..57674f1a86f54 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-20 +date: 2023-04-21 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 c1563f5a7eeca..3271ecbc40835 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-20 +date: 2023-04-21 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 8237aab764b3f..947830e94c31a 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-20 +date: 2023-04-21 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 98d95c6d37b9f..fed153ea6f806 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-20 +date: 2023-04-21 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 d75725b7899a2..14c84336e55d8 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-20 +date: 2023-04-21 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 dd774a0f77817..f5dac83c7c859 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-20 +date: 2023-04-21 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 d2fe1cbc14966..bd675bc3f02fb 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-20 +date: 2023-04-21 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 d3884371a3db5..41ca6aa3b4e82 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-20 +date: 2023-04-21 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 6cdd897d99633..5d235b665bccf 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-20 +date: 2023-04-21 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 b00ea4077cf20..e11a7361be6fe 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-20 +date: 2023-04-21 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 6353e802e27db..86023b4693bda 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-20 +date: 2023-04-21 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 f6acd36cc38c2..1b1996813ec5e 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-20 +date: 2023-04-21 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 cea09f8427c74..014a6cff4fb8f 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-20 +date: 2023-04-21 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 fcfa359e065ff..8a827ee08a3cb 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-20 +date: 2023-04-21 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 c47f6b0ab3f79..cf25c21fc3e7b 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-20 +date: 2023-04-21 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 f1df3fa970252..d81566d93b87b 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-20 +date: 2023-04-21 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 30f75c6f0d0d8..52c845ba3e159 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_core_elasticsearch_client_server_mocks.devdocs.json index a605c8268586c..b36b07569b7da 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_mocks.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_client_server_mocks.devdocs.json @@ -361,7 +361,17 @@ "SearchRequest", " | undefined, options?: ", "TransportRequestOptions", - " | undefined]>; name: string | symbol; monitoring: ", + " | undefined]>; name: string | symbol; security: ", + { + "pluginId": "@kbn/core-elasticsearch-client-server-mocks", + "scope": "common", + "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", + "section": "def-common.DeeplyMockedApi", + "text": "DeeplyMockedApi" + }, + "<", + "default", + ">; monitoring: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", "scope": "common", @@ -1137,16 +1147,6 @@ }, "<", "default", - ">; security: ", - { - "pluginId": "@kbn/core-elasticsearch-client-server-mocks", - "scope": "common", - "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", - "section": "def-common.DeeplyMockedApi", - "text": "DeeplyMockedApi" - }, - "<", - "default", ">; shutdown: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -1468,7 +1468,17 @@ "SearchRequest", " | undefined, options?: ", "TransportRequestOptions", - " | undefined]>; name: string | symbol; monitoring: ", + " | undefined]>; name: string | symbol; security: ", + { + "pluginId": "@kbn/core-elasticsearch-client-server-mocks", + "scope": "common", + "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", + "section": "def-common.DeeplyMockedApi", + "text": "DeeplyMockedApi" + }, + "<", + "default", + ">; monitoring: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", "scope": "common", @@ -2244,16 +2254,6 @@ }, "<", "default", - ">; security: ", - { - "pluginId": "@kbn/core-elasticsearch-client-server-mocks", - "scope": "common", - "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", - "section": "def-common.DeeplyMockedApi", - "text": "DeeplyMockedApi" - }, - "<", - "default", ">; shutdown: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -2529,7 +2529,17 @@ "SearchRequest", " | undefined, options?: ", "TransportRequestOptions", - " | undefined]>; name: string | symbol; monitoring: ", + " | undefined]>; name: string | symbol; security: ", + { + "pluginId": "@kbn/core-elasticsearch-client-server-mocks", + "scope": "common", + "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", + "section": "def-common.DeeplyMockedApi", + "text": "DeeplyMockedApi" + }, + "<", + "default", + ">; monitoring: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", "scope": "common", @@ -3305,16 +3315,6 @@ }, "<", "default", - ">; security: ", - { - "pluginId": "@kbn/core-elasticsearch-client-server-mocks", - "scope": "common", - "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", - "section": "def-common.DeeplyMockedApi", - "text": "DeeplyMockedApi" - }, - "<", - "default", ">; shutdown: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -3681,7 +3681,17 @@ "SearchRequest", " | undefined, options?: ", "TransportRequestOptions", - " | undefined]>; name: string | symbol; monitoring: ", + " | undefined]>; name: string | symbol; security: ", + { + "pluginId": "@kbn/core-elasticsearch-client-server-mocks", + "scope": "common", + "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", + "section": "def-common.DeeplyMockedApi", + "text": "DeeplyMockedApi" + }, + "<", + "default", + ">; monitoring: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", "scope": "common", @@ -4457,16 +4467,6 @@ }, "<", "default", - ">; security: ", - { - "pluginId": "@kbn/core-elasticsearch-client-server-mocks", - "scope": "common", - "docId": "kibKbnCoreElasticsearchClientServerMocksPluginApi", - "section": "def-common.DeeplyMockedApi", - "text": "DeeplyMockedApi" - }, - "<", - "default", ">; shutdown: ", { "pluginId": "@kbn/core-elasticsearch-client-server-mocks", diff --git a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx index e8a6a5bd9d974..25bdcf097fc8f 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_core_elasticsearch_server.devdocs.json index 2fa0afea256a4..ee492a19564d3 100644 --- a/api_docs/kbn_core_elasticsearch_server.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_server.devdocs.json @@ -1144,7 +1144,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -2066,8 +2068,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -2810,7 +2810,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -3732,8 +3734,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -4012,7 +4012,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -4934,8 +4936,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -5467,7 +5467,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -6389,8 +6391,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", diff --git a/api_docs/kbn_core_elasticsearch_server.mdx b/api_docs/kbn_core_elasticsearch_server.mdx index 452434e7f7028..d3e52e4498e97 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_core_elasticsearch_server_internal.devdocs.json index e61d0f6b28377..96c31bba82765 100644 --- a/api_docs/kbn_core_elasticsearch_server_internal.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_server_internal.devdocs.json @@ -198,7 +198,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -1120,8 +1122,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -1828,7 +1828,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -2750,8 +2752,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", diff --git a/api_docs/kbn_core_elasticsearch_server_internal.mdx b/api_docs/kbn_core_elasticsearch_server_internal.mdx index 55602e77c39ac..d7116ffefd9e3 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-20 +date: 2023-04-21 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 bbc421518eacc..8763333e3c1ca 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-20 +date: 2023-04-21 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 8a1e25f226672..c72123128deb8 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-20 +date: 2023-04-21 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 5950a6f4e28a4..2bca835abcc60 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-20 +date: 2023-04-21 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 7530cdb8b9f88..e0133ab2eceac 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-20 +date: 2023-04-21 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 44c4f6b1d8356..f4285539090c7 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-20 +date: 2023-04-21 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 9d0d0c727bb07..e88005161eee4 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-20 +date: 2023-04-21 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 4213ef4dd473f..9bb759d225d18 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-20 +date: 2023-04-21 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 582d77767ebac..391aab7e7c207 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-20 +date: 2023-04-21 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 3fdd7e0a3958a..b0a32a23bc8fd 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-20 +date: 2023-04-21 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 d637f492ceff4..d044bcd313597 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-20 +date: 2023-04-21 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 2d47d49cf0f54..3185c3568f7cd 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-20 +date: 2023-04-21 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 d750c317ac6a7..6d4e823e86bc7 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-20 +date: 2023-04-21 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.mdx b/api_docs/kbn_core_http_browser.mdx index 8ddc42521054a..2379a6b30140a 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-20 +date: 2023-04-21 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 33f9e5d9bccaa..3a8785ce36e04 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-20 +date: 2023-04-21 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 c771d7b51b6b2..cd9f5e1f32fae 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-20 +date: 2023-04-21 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.mdx b/api_docs/kbn_core_http_common.mdx index 61a0e48cfdeb8..030701d5c5535 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-20 +date: 2023-04-21 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 b662fe75b1955..3041948b6c08e 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-20 +date: 2023-04-21 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 f189aa1a55351..6c55bb1acc35f 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-20 +date: 2023-04-21 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 47a782b2d28d8..1fc1939592f1d 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-20 +date: 2023-04-21 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 9cc4ba8ad2475..1ce4c26ce2a2e 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-20 +date: 2023-04-21 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 26de4dde620bb..c4dd257493cdb 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-20 +date: 2023-04-21 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 96c131b566386..7baa129a75c92 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-20 +date: 2023-04-21 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 04cdaf7a0c296..9115db4edf6cc 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-20 +date: 2023-04-21 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.mdx b/api_docs/kbn_core_http_server.mdx index ae3de1a53b6bf..152820cbb488b 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-20 +date: 2023-04-21 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 32a24eb6c8a59..1dc544d47e781 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-20 +date: 2023-04-21 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 cc73fbc025f7d..12f4523bca3e3 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-20 +date: 2023-04-21 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 5b4c019df0b30..290dc43e0f6a4 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-20 +date: 2023-04-21 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 49579be05fecd..1892f31f90652 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-20 +date: 2023-04-21 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 f89c8bd6d88c8..8cd6df89cee80 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-20 +date: 2023-04-21 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 1d072e4d63ed9..71388b8df33ef 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-20 +date: 2023-04-21 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 1ca1b4a931e7f..b46f5cadc7bf9 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-20 +date: 2023-04-21 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 bc405aa9920a6..188df6cc9052d 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-20 +date: 2023-04-21 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 75255e3e34bfd..75b8dc9819d5a 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-20 +date: 2023-04-21 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 086837c33ee81..a9e58cbc2c4fb 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-20 +date: 2023-04-21 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 735b927f7d9ab..d29ee50a427bf 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-20 +date: 2023-04-21 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 bf4a1ead3d536..a3f5c62d35e87 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-20 +date: 2023-04-21 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 3a4b5ed5dddea..336ba1167e471 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-20 +date: 2023-04-21 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 448715c87a21f..ead03154da97c 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-20 +date: 2023-04-21 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 ac96262b9c76b..70dcc85174431 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-20 +date: 2023-04-21 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 630a94dfbb8f3..eaaab07d66216 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-20 +date: 2023-04-21 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 ab67e69ef94eb..764140b0a5e6c 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-20 +date: 2023-04-21 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 f69a9bfa85c75..96a65db189368 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-20 +date: 2023-04-21 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 dc3d5d6f6a377..7edad6a24183a 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-20 +date: 2023-04-21 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 fb713ae5250ef..1bed7b5faea0a 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-20 +date: 2023-04-21 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 e310f4f18e0bf..f8d4fffbfe021 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-20 +date: 2023-04-21 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 7c1524c5080fb..daf89498a1cfc 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-20 +date: 2023-04-21 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 751f7e9aa7a09..2faf2f55b3dae 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-20 +date: 2023-04-21 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 38f7647c57437..9a208c0343c78 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-20 +date: 2023-04-21 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 2bacd959896e9..22a3bada69676 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-20 +date: 2023-04-21 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 79767c900f656..a85a0e176e836 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-20 +date: 2023-04-21 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 3d60a557b515f..0418f4ca39d60 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-20 +date: 2023-04-21 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 c11cd5a44f85e..fef44b08e7f61 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_core_notifications_browser.devdocs.json index 5d44379591cb3..3f14a12b02887 100644 --- a/api_docs/kbn_core_notifications_browser.devdocs.json +++ b/api_docs/kbn_core_notifications_browser.devdocs.json @@ -736,7 +736,7 @@ "signature": [ "Pick<", "Toast", - ", \"prefix\" | \"defaultValue\" | \"children\" | \"is\" | \"security\" | \"slot\" | \"style\" | \"className\" | \"aria-label\" | \"data-test-subj\" | \"css\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"spellCheck\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"unselectable\" | \"inputMode\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChange\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", + ", \"prefix\" | \"defaultValue\" | \"children\" | \"onChange\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"data-test-subj\" | \"css\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", { "pluginId": "@kbn/core-mount-utils-browser", "scope": "common", @@ -795,7 +795,7 @@ "signature": [ "Pick<", "Toast", - ", \"prefix\" | \"defaultValue\" | \"children\" | \"is\" | \"security\" | \"slot\" | \"style\" | \"className\" | \"aria-label\" | \"data-test-subj\" | \"css\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"spellCheck\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"unselectable\" | \"inputMode\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChange\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", + ", \"prefix\" | \"defaultValue\" | \"children\" | \"onChange\" | \"defaultChecked\" | \"suppressContentEditableWarning\" | \"suppressHydrationWarning\" | \"accessKey\" | \"className\" | \"contentEditable\" | \"contextMenu\" | \"dir\" | \"draggable\" | \"hidden\" | \"lang\" | \"placeholder\" | \"slot\" | \"spellCheck\" | \"style\" | \"tabIndex\" | \"translate\" | \"radioGroup\" | \"role\" | \"about\" | \"datatype\" | \"inlist\" | \"property\" | \"resource\" | \"typeof\" | \"vocab\" | \"autoCapitalize\" | \"autoCorrect\" | \"autoSave\" | \"color\" | \"itemProp\" | \"itemScope\" | \"itemType\" | \"itemID\" | \"itemRef\" | \"results\" | \"security\" | \"unselectable\" | \"inputMode\" | \"is\" | \"aria-activedescendant\" | \"aria-atomic\" | \"aria-autocomplete\" | \"aria-busy\" | \"aria-checked\" | \"aria-colcount\" | \"aria-colindex\" | \"aria-colspan\" | \"aria-controls\" | \"aria-current\" | \"aria-describedby\" | \"aria-details\" | \"aria-disabled\" | \"aria-dropeffect\" | \"aria-errormessage\" | \"aria-expanded\" | \"aria-flowto\" | \"aria-grabbed\" | \"aria-haspopup\" | \"aria-hidden\" | \"aria-invalid\" | \"aria-keyshortcuts\" | \"aria-label\" | \"aria-labelledby\" | \"aria-level\" | \"aria-live\" | \"aria-modal\" | \"aria-multiline\" | \"aria-multiselectable\" | \"aria-orientation\" | \"aria-owns\" | \"aria-placeholder\" | \"aria-posinset\" | \"aria-pressed\" | \"aria-readonly\" | \"aria-relevant\" | \"aria-required\" | \"aria-roledescription\" | \"aria-rowcount\" | \"aria-rowindex\" | \"aria-rowspan\" | \"aria-selected\" | \"aria-setsize\" | \"aria-sort\" | \"aria-valuemax\" | \"aria-valuemin\" | \"aria-valuenow\" | \"aria-valuetext\" | \"dangerouslySetInnerHTML\" | \"onCopy\" | \"onCopyCapture\" | \"onCut\" | \"onCutCapture\" | \"onPaste\" | \"onPasteCapture\" | \"onCompositionEnd\" | \"onCompositionEndCapture\" | \"onCompositionStart\" | \"onCompositionStartCapture\" | \"onCompositionUpdate\" | \"onCompositionUpdateCapture\" | \"onFocus\" | \"onFocusCapture\" | \"onBlur\" | \"onBlurCapture\" | \"onChangeCapture\" | \"onBeforeInput\" | \"onBeforeInputCapture\" | \"onInput\" | \"onInputCapture\" | \"onReset\" | \"onResetCapture\" | \"onSubmit\" | \"onSubmitCapture\" | \"onInvalid\" | \"onInvalidCapture\" | \"onLoad\" | \"onLoadCapture\" | \"onError\" | \"onErrorCapture\" | \"onKeyDown\" | \"onKeyDownCapture\" | \"onKeyPress\" | \"onKeyPressCapture\" | \"onKeyUp\" | \"onKeyUpCapture\" | \"onAbort\" | \"onAbortCapture\" | \"onCanPlay\" | \"onCanPlayCapture\" | \"onCanPlayThrough\" | \"onCanPlayThroughCapture\" | \"onDurationChange\" | \"onDurationChangeCapture\" | \"onEmptied\" | \"onEmptiedCapture\" | \"onEncrypted\" | \"onEncryptedCapture\" | \"onEnded\" | \"onEndedCapture\" | \"onLoadedData\" | \"onLoadedDataCapture\" | \"onLoadedMetadata\" | \"onLoadedMetadataCapture\" | \"onLoadStart\" | \"onLoadStartCapture\" | \"onPause\" | \"onPauseCapture\" | \"onPlay\" | \"onPlayCapture\" | \"onPlaying\" | \"onPlayingCapture\" | \"onProgress\" | \"onProgressCapture\" | \"onRateChange\" | \"onRateChangeCapture\" | \"onSeeked\" | \"onSeekedCapture\" | \"onSeeking\" | \"onSeekingCapture\" | \"onStalled\" | \"onStalledCapture\" | \"onSuspend\" | \"onSuspendCapture\" | \"onTimeUpdate\" | \"onTimeUpdateCapture\" | \"onVolumeChange\" | \"onVolumeChangeCapture\" | \"onWaiting\" | \"onWaitingCapture\" | \"onAuxClick\" | \"onAuxClickCapture\" | \"onClick\" | \"onClickCapture\" | \"onContextMenu\" | \"onContextMenuCapture\" | \"onDoubleClick\" | \"onDoubleClickCapture\" | \"onDrag\" | \"onDragCapture\" | \"onDragEnd\" | \"onDragEndCapture\" | \"onDragEnter\" | \"onDragEnterCapture\" | \"onDragExit\" | \"onDragExitCapture\" | \"onDragLeave\" | \"onDragLeaveCapture\" | \"onDragOver\" | \"onDragOverCapture\" | \"onDragStart\" | \"onDragStartCapture\" | \"onDrop\" | \"onDropCapture\" | \"onMouseDown\" | \"onMouseDownCapture\" | \"onMouseEnter\" | \"onMouseLeave\" | \"onMouseMove\" | \"onMouseMoveCapture\" | \"onMouseOut\" | \"onMouseOutCapture\" | \"onMouseOver\" | \"onMouseOverCapture\" | \"onMouseUp\" | \"onMouseUpCapture\" | \"onSelect\" | \"onSelectCapture\" | \"onTouchCancel\" | \"onTouchCancelCapture\" | \"onTouchEnd\" | \"onTouchEndCapture\" | \"onTouchMove\" | \"onTouchMoveCapture\" | \"onTouchStart\" | \"onTouchStartCapture\" | \"onPointerDown\" | \"onPointerDownCapture\" | \"onPointerMove\" | \"onPointerMoveCapture\" | \"onPointerUp\" | \"onPointerUpCapture\" | \"onPointerCancel\" | \"onPointerCancelCapture\" | \"onPointerEnter\" | \"onPointerEnterCapture\" | \"onPointerLeave\" | \"onPointerLeaveCapture\" | \"onPointerOver\" | \"onPointerOverCapture\" | \"onPointerOut\" | \"onPointerOutCapture\" | \"onGotPointerCapture\" | \"onGotPointerCaptureCapture\" | \"onLostPointerCapture\" | \"onLostPointerCaptureCapture\" | \"onScroll\" | \"onScrollCapture\" | \"onWheel\" | \"onWheelCapture\" | \"onAnimationStart\" | \"onAnimationStartCapture\" | \"onAnimationEnd\" | \"onAnimationEndCapture\" | \"onAnimationIteration\" | \"onAnimationIterationCapture\" | \"onTransitionEnd\" | \"onTransitionEndCapture\" | \"data-test-subj\" | \"css\" | \"iconType\" | \"onClose\" | \"toastLifeTimeMs\"> & { title?: string | ", { "pluginId": "@kbn/core-mount-utils-browser", "scope": "common", diff --git a/api_docs/kbn_core_notifications_browser.mdx b/api_docs/kbn_core_notifications_browser.mdx index 98f962cda1366..5b4c9e57d0c5e 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-20 +date: 2023-04-21 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 e6dbdc9b96f76..1c53d4f1151a2 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-20 +date: 2023-04-21 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 19758a5e79d5e..ac5a768548470 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-20 +date: 2023-04-21 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 4a45c849bcc96..6538de0675581 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-20 +date: 2023-04-21 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 b92e689e4ef1e..2be250444e13d 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-20 +date: 2023-04-21 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 7cb6c9dda7a39..36a17d070c6e5 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-20 +date: 2023-04-21 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 5bdceb6b6984c..7a0bd26bc2490 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-20 +date: 2023-04-21 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 799ca27985b43..94f1a573c6e08 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-20 +date: 2023-04-21 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 eed2f8d932755..20d7ec12378e1 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-20 +date: 2023-04-21 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 f0153c6d49f71..1186e3108b3e3 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-20 +date: 2023-04-21 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 ff9fe03bb5113..9e81829a0ef67 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-20 +date: 2023-04-21 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 bf57e6bd4ee7a..920f32db8a28e 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-20 +date: 2023-04-21 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 40b41d802ac0b..ff75e7da8fd40 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-20 +date: 2023-04-21 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 f4db0194802b1..5d8f7df7ac176 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-20 +date: 2023-04-21 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 b4d73ea88a6ac..fc7ce48733faa 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-20 +date: 2023-04-21 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 2646c889d696b..66f6d3135417b 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-20 +date: 2023-04-21 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 c6ab4101d6c7a..f104ac919f51e 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json @@ -3390,6 +3390,22 @@ "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-api-browser", + "id": "def-common.SavedObjectsCreateOptions.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false)\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4308,6 +4324,22 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "@kbn/core-saved-objects-api-browser", + "id": "def-common.SimpleSavedObject.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false)\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", "id": "def-common.SimpleSavedObject.get", diff --git a/api_docs/kbn_core_saved_objects_api_browser.mdx b/api_docs/kbn_core_saved_objects_api_browser.mdx index cc97c9bc44726..814eebd1bcbfa 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-browser'] --- import kbnCoreSavedObjectsApiBrowserObj from './kbn_core_saved_objects_api_browser.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 109 | 1 | 0 | 0 | +| 111 | 1 | 0 | 0 | ## Common diff --git a/api_docs/kbn_core_saved_objects_api_server.devdocs.json b/api_docs/kbn_core_saved_objects_api_server.devdocs.json index ccbc23a7ac04a..b9f92ca1d1807 100644 --- a/api_docs/kbn_core_saved_objects_api_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_server.devdocs.json @@ -2571,6 +2571,22 @@ "path": "packages/core/saved-objects/core-saved-objects-common/src/server_types.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-api-server", + "id": "def-common.SavedObject.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false)\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-common/src/server_types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3328,6 +3344,22 @@ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-api-server", + "id": "def-common.SavedObjectsBulkCreateObject.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false)\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6036,6 +6068,14 @@ "plugin": "canvas", "path": "x-pack/plugins/canvas/server/workpad_route_context.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts" + }, + { + "plugin": "@kbn/core-saved-objects-api-server-internal", + "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts" + }, { "plugin": "@kbn/core-saved-objects-api-server-internal", "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.test.ts" @@ -6152,6 +6192,22 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "@kbn/core-saved-objects-api-server", + "id": "def-common.SavedObjectsCreateOptions.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false)\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "@kbn/core-saved-objects-api-server", "id": "def-common.SavedObjectsCreateOptions.migrationVersionCompatibility", @@ -7244,6 +7300,22 @@ "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-api-server", + "id": "def-common.SavedObjectsIncrementCounterOptions.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false).\nOnly used when upserting a saved object. If the saved object already\nexist this option has no effect.\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_saved_objects_api_server.mdx b/api_docs/kbn_core_saved_objects_api_server.mdx index 74d79efb220eb..4c5f84aee2327 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server'] --- import kbnCoreSavedObjectsApiServerObj from './kbn_core_saved_objects_api_server.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 347 | 1 | 5 | 1 | +| 351 | 1 | 5 | 1 | ## Common 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 ddf6fb2bed3cf..3f8241f9ab849 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-20 +date: 2023-04-21 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 46159abcb32a5..72ad46898861d 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-20 +date: 2023-04-21 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 a8b49b8d681e1..7e7ccf32b70ab 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-20 +date: 2023-04-21 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 335aa6b5510a5..76f857265d07b 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-20 +date: 2023-04-21 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 bba9a0fe3f2b3..395382f11c5a6 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-20 +date: 2023-04-21 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 c78ce88a69f12..e30fc42495448 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-20 +date: 2023-04-21 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 5a6fb2c44b372..7797116f838b6 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-20 +date: 2023-04-21 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 f6d51fc124d6e..9b9113df93f0a 100644 --- a/api_docs/kbn_core_saved_objects_common.devdocs.json +++ b/api_docs/kbn_core_saved_objects_common.devdocs.json @@ -1063,6 +1063,10 @@ "plugin": "@kbn/core-saved-objects-api-browser", "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-api-browser", + "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-api-server", "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts" @@ -1131,6 +1135,10 @@ "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" }, + { + "plugin": "@kbn/core-saved-objects-browser-internal", + "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/simple_saved_object.ts" + }, { "plugin": "@kbn/core-saved-objects-browser-internal", "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_client.ts" diff --git a/api_docs/kbn_core_saved_objects_common.mdx b/api_docs/kbn_core_saved_objects_common.mdx index 7e86e3ad14112..c7820ecbca374 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-20 +date: 2023-04-21 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 ceb95fa4e2395..34d40c1a0e34b 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-20 +date: 2023-04-21 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 46f276fa9a5fe..95f19589a3e7b 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_core_saved_objects_migration_server_internal.devdocs.json index fe4d27af786d9..02115886635d7 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_migration_server_internal.devdocs.json @@ -2409,7 +2409,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -3331,8 +3333,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", 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 5e8bd70323aa0..1237af41a106a 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-20 +date: 2023-04-21 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 df63883550aa3..2b1be8ab9ccf3 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_core_saved_objects_server.devdocs.json index 64c296dff415d..f6be8896da932 100644 --- a/api_docs/kbn_core_saved_objects_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_server.devdocs.json @@ -6036,6 +6036,22 @@ "path": "packages/core/saved-objects/core-saved-objects-common/src/server_types.ts", "deprecated": false, "trackAdoption": false + }, + { + "parentPluginId": "@kbn/core-saved-objects-server", + "id": "def-common.SavedObject.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [ + "\nFlag indicating if a saved object is managed by Kibana (default=false)\n\nThis can be leveraged by applications to e.g. prevent edits to a managed\nsaved object. Instead, users can be guided to create a copy first and\nmake their edits to the copy." + ], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-common/src/server_types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8221,6 +8237,20 @@ "deprecated": false, "trackAdoption": false }, + { + "parentPluginId": "@kbn/core-saved-objects-server", + "id": "def-common.SavedObjectsRawDocSource.managed", + "type": "CompoundType", + "tags": [], + "label": "managed", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", + "deprecated": false, + "trackAdoption": false + }, { "parentPluginId": "@kbn/core-saved-objects-server", "id": "def-common.SavedObjectsRawDocSource.Unnamed", diff --git a/api_docs/kbn_core_saved_objects_server.mdx b/api_docs/kbn_core_saved_objects_server.mdx index 7308525d17c4a..01110761151d4 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-server'] --- import kbnCoreSavedObjectsServerObj from './kbn_core_saved_objects_server.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 494 | 1 | 99 | 4 | +| 496 | 1 | 100 | 4 | ## Common diff --git a/api_docs/kbn_core_saved_objects_server_internal.mdx b/api_docs/kbn_core_saved_objects_server_internal.mdx index 9bbcba68753f9..c1570d44d6a4e 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-20 +date: 2023-04-21 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 39bcf94ad1517..b4d9023205b5b 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-20 +date: 2023-04-21 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 2176df6e1f627..68054fd030ba7 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-20 +date: 2023-04-21 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 ee5f2f06c798c..0099c87fe71c1 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-20 +date: 2023-04-21 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 cfef8384a8358..942ceea0dddb0 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-20 +date: 2023-04-21 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 0077e0166e34f..b9013fd6ca323 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-20 +date: 2023-04-21 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 702c012e25f88..e9c7d05fc7a4f 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-20 +date: 2023-04-21 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 1346f773d4326..0c6549c2c40a8 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-20 +date: 2023-04-21 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 bc0cff6212ae7..0148b222dc307 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-20 +date: 2023-04-21 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 2e84b6ef2d794..5c3b407e8d7e1 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-20 +date: 2023-04-21 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 acb33a14cf28d..9f82264d3416a 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-20 +date: 2023-04-21 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 bc4c85f76f85c..361d7ee4abaef 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-20 +date: 2023-04-21 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 f5d8e8e4b8a8e..729bf46fe8b67 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-20 +date: 2023-04-21 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 1900793efb403..59ca3b555e77c 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-20 +date: 2023-04-21 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 1f118ad62feaa..d8e9d7d490f07 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-20 +date: 2023-04-21 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 334b5611b5be3..fcbeaaf620f5b 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-20 +date: 2023-04-21 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 ff8d60d9cd031..db1ea4bacbeff 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-20 +date: 2023-04-21 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 bb8c17a6dd7ec..4bd232bbc6d3d 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-20 +date: 2023-04-21 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 2ab598732c667..50362b87de095 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-20 +date: 2023-04-21 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 6f31370eab373..a218916953f18 100644 --- a/api_docs/kbn_core_ui_settings_common.devdocs.json +++ b/api_docs/kbn_core_ui_settings_common.devdocs.json @@ -473,7 +473,7 @@ "\nUI element type to represent the settings." ], "signature": [ - "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"select\" | \"image\" | \"color\" | \"json\" | \"markdown\" | \"array\"" + "\"string\" | \"number\" | \"boolean\" | \"undefined\" | \"color\" | \"select\" | \"image\" | \"json\" | \"markdown\" | \"array\"" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": false, diff --git a/api_docs/kbn_core_ui_settings_common.mdx b/api_docs/kbn_core_ui_settings_common.mdx index 0203ee7cbd037..955203aeab79b 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-common'] --- import kbnCoreUiSettingsCommonObj from './kbn_core_ui_settings_common.devdocs.json'; diff --git a/api_docs/kbn_core_ui_settings_server.mdx b/api_docs/kbn_core_ui_settings_server.mdx index c0e47a9ce8832..5e5c93b62137f 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-20 +date: 2023-04-21 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 6bc188e6d6442..586bb305927ea 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-20 +date: 2023-04-21 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 63929de47b247..8bde395eb141e 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-20 +date: 2023-04-21 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 47ec2ccf93dab..ac875acccae8d 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-20 +date: 2023-04-21 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 5540930ed5fec..e9e8099f4692e 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-20 +date: 2023-04-21 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 40a8e634fbf38..d98b4e73ab7f0 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-20 +date: 2023-04-21 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 2855b17a3bbde..a367c613df999 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-20 +date: 2023-04-21 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 f5aa87a327f2a..0b4c15845ebc7 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-20 +date: 2023-04-21 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 a5eade6a0eeb8..e951de4adfb35 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-20 +date: 2023-04-21 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 760812b3d9de3..3d864f429b0c3 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-20 +date: 2023-04-21 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 3ff9e4d7e3e71..af952748b1e5a 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-20 +date: 2023-04-21 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 9aac93e14f30c..b66e4a59edd0e 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-20 +date: 2023-04-21 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 228133ab7d29d..74b88642009bd 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-20 +date: 2023-04-21 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 91524933ec5d0..df18c4a7ae5e6 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-utils'] --- import kbnDevUtilsObj from './kbn_dev_utils.devdocs.json'; diff --git a/api_docs/kbn_doc_links.devdocs.json b/api_docs/kbn_doc_links.devdocs.json index 4e53df24182e0..b01beac37dc53 100644 --- a/api_docs/kbn_doc_links.devdocs.json +++ b/api_docs/kbn_doc_links.devdocs.json @@ -300,7 +300,7 @@ "label": "enterpriseSearch", "description": [], "signature": [ - "{ readonly apiKeys: string; readonly behavioralAnalytics: string; readonly behavioralAnalyticsEvents: string; readonly bulkApi: string; readonly configuration: string; readonly connectors: string; readonly connectorsMongoDB: string; readonly connectorsMySQL: string; readonly connectorsWorkplaceSearch: string; readonly crawlerExtractionRules: string; readonly crawlerManaging: string; readonly crawlerOverview: string; readonly deployTrainedModels: string; readonly documentLevelSecurity: string; readonly elser: string; readonly engines: string; readonly ingestPipelines: string; readonly languageAnalyzers: string; readonly languageClients: string; readonly licenseManagement: string; readonly machineLearningStart: string; readonly mailService: string; readonly start: string; readonly syncRules: string; readonly troubleshootSetup: string; readonly usersAccess: string; }" + "{ readonly apiKeys: string; readonly behavioralAnalytics: string; readonly behavioralAnalyticsEvents: string; 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; readonly crawlerOverview: string; readonly deployTrainedModels: string; readonly documentLevelSecurity: string; readonly elser: string; readonly engines: string; readonly ingestionApis: string; readonly ingestPipelines: string; readonly languageAnalyzers: string; readonly languageClients: string; readonly licenseManagement: string; readonly machineLearningStart: string; readonly mailService: string; readonly start: string; readonly syncRules: string; readonly troubleshootSetup: string; readonly usersAccess: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, diff --git a/api_docs/kbn_doc_links.mdx b/api_docs/kbn_doc_links.mdx index 5323199ab5690..237b608f7aa52 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-20 +date: 2023-04-21 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 078dcb629fdbe..d12f4055fc03a 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-20 +date: 2023-04-21 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 b4b41943700a4..a9c6b2c6c0a28 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-20 +date: 2023-04-21 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 ce5fef552eaaf..f7d904bd7bce7 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-20 +date: 2023-04-21 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 e8ea18c35009b..a070106c4a4f4 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-20 +date: 2023-04-21 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 3584bd6954340..d6933f82a8a56 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-20 +date: 2023-04-21 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 dcda809c7b317..b90987c9e70ef 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-20 +date: 2023-04-21 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 981f921d0f381..9664b87b6910b 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-20 +date: 2023-04-21 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 11d880247da77..8a8c25e5981a8 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-20 +date: 2023-04-21 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 afc16a4d74ee2..56f69b7a09446 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-20 +date: 2023-04-21 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 59fb0c2e57049..4de4378862f0f 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-20 +date: 2023-04-21 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 88719e3c85f7e..99046ee7a9a8d 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-20 +date: 2023-04-21 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 b5947a8295232..86a0743c821f5 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-20 +date: 2023-04-21 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 b487899d2b554..d0b208fb97a8e 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-20 +date: 2023-04-21 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 4fc7ad7580aa5..46afc78d5608e 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-20 +date: 2023-04-21 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 3037e205cc6c1..7ae2b45126f93 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-20 +date: 2023-04-21 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 ac9cf890c741c..7d52e4ad2721e 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-20 +date: 2023-04-21 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 034ee24b31adc..bf0035738a250 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-20 +date: 2023-04-21 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 2e87800016af5..62ba0711eb511 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-20 +date: 2023-04-21 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 454b6ec5c6172..dd29963efcb66 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-20 +date: 2023-04-21 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 87aaec89cc979..7f02b89475b3e 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-20 +date: 2023-04-21 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 bffe3c1cf4e3d..4955b1030ea07 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-20 +date: 2023-04-21 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 42af824e4c2cc..26528fbcb1d05 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-20 +date: 2023-04-21 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 732c8f5562d4b..ca6f2a8e2ad02 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-20 +date: 2023-04-21 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 eb4fe7a1d62c8..ade2366ab0e33 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-20 +date: 2023-04-21 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 4ace6960d3795..0a6a407c727d5 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-20 +date: 2023-04-21 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 4d88cd19ac9b5..7bf9b5d9dd0c8 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-20 +date: 2023-04-21 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 2c6154c92b9fb..fd1da1af10952 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-20 +date: 2023-04-21 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 1baddb05cda74..3bfb04e709422 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/interpreter'] --- import kbnInterpreterObj from './kbn_interpreter.devdocs.json'; diff --git a/api_docs/kbn_io_ts_utils.devdocs.json b/api_docs/kbn_io_ts_utils.devdocs.json index 1ffbfca120dda..9b5b0e6802254 100644 --- a/api_docs/kbn_io_ts_utils.devdocs.json +++ b/api_docs/kbn_io_ts_utils.devdocs.json @@ -54,6 +54,50 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.createRouteValidationFunction", + "type": "Function", + "tags": [], + "label": "createRouteValidationFunction", + "description": [], + "signature": [ + "(runtimeType: ", + "Type", + ") => ", + { + "pluginId": "@kbn/core-http-server", + "scope": "common", + "docId": "kibKbnCoreHttpServerPluginApi", + "section": "def-common.RouteValidationFunction", + "text": "RouteValidationFunction" + }, + "" + ], + "path": "packages/kbn-io-ts-utils/src/route_validation/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.createRouteValidationFunction.$1", + "type": "Object", + "tags": [], + "label": "runtimeType", + "description": [], + "signature": [ + "Type", + "" + ], + "path": "packages/kbn-io-ts-utils/src/route_validation/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/io-ts-utils", "id": "def-common.deepExactRt", @@ -156,6 +200,111 @@ "returnComment": [], "initialIsOpen": false }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.inRangeRt", + "type": "Function", + "tags": [], + "label": "inRangeRt", + "description": [], + "signature": [ + "(start: number, end: number) => ", + "BrandC", + "<", + "NumberC", + ", ", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.InRangeBrand", + "text": "InRangeBrand" + }, + ">" + ], + "path": "packages/kbn-io-ts-utils/src/in_range_rt/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.inRangeRt.$1", + "type": "number", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "number" + ], + "path": "packages/kbn-io-ts-utils/src/in_range_rt/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.inRangeRt.$2", + "type": "number", + "tags": [], + "label": "end", + "description": [], + "signature": [ + "number" + ], + "path": "packages/kbn-io-ts-utils/src/in_range_rt/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.isGreaterOrEqualRt", + "type": "Function", + "tags": [], + "label": "isGreaterOrEqualRt", + "description": [], + "signature": [ + "(value: number) => ", + "BrandC", + "<", + "NumberC", + ", ", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.IsGreaterOrEqualBrand", + "text": "IsGreaterOrEqualBrand" + }, + ">" + ], + "path": "packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.isGreaterOrEqualRt.$1", + "type": "number", + "tags": [], + "label": "value", + "description": [], + "signature": [ + "number" + ], + "path": "packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/io-ts-utils", "id": "def-common.mergeRt", @@ -322,6 +471,78 @@ } ], "interfaces": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.InRangeBrand", + "type": "Interface", + "tags": [], + "label": "InRangeBrand", + "description": [], + "path": "packages/kbn-io-ts-utils/src/in_range_rt/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.InRangeBrand.InRange", + "type": "Uncategorized", + "tags": [], + "label": "InRange", + "description": [], + "signature": [ + "typeof ", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.InRangeBrand", + "text": "InRangeBrand" + }, + "[\"InRange\"]" + ], + "path": "packages/kbn-io-ts-utils/src/in_range_rt/index.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.IsGreaterOrEqualBrand", + "type": "Interface", + "tags": [], + "label": "IsGreaterOrEqualBrand", + "description": [], + "path": "packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.IsGreaterOrEqualBrand.IsGreaterOrEqual", + "type": "Uncategorized", + "tags": [], + "label": "IsGreaterOrEqual", + "description": [], + "signature": [ + "typeof ", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.IsGreaterOrEqualBrand", + "text": "IsGreaterOrEqualBrand" + }, + "[\"IsGreaterOrEqual\"]" + ], + "path": "packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts", + "deprecated": false, + "trackAdoption": false + } + ], + "initialIsOpen": false + }, { "parentPluginId": "@kbn/io-ts-utils", "id": "def-common.NonEmptyStringBrand", @@ -379,9 +600,79 @@ "deprecated": false, "trackAdoption": false, "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.InRange", + "type": "Type", + "tags": [], + "label": "InRange", + "description": [], + "signature": [ + "number & ", + "Brand", + "<", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.InRangeBrand", + "text": "InRangeBrand" + }, + ">" + ], + "path": "packages/kbn-io-ts-utils/src/in_range_rt/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.IsGreaterOrEqual", + "type": "Type", + "tags": [], + "label": "IsGreaterOrEqual", + "description": [], + "signature": [ + "number & ", + "Brand", + "<", + { + "pluginId": "@kbn/io-ts-utils", + "scope": "common", + "docId": "kibKbnIoTsUtilsPluginApi", + "section": "def-common.IsGreaterOrEqualBrand", + "text": "IsGreaterOrEqualBrand" + }, + ">" + ], + "path": "packages/kbn-io-ts-utils/src/is_greater_or_equal/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false } ], "objects": [ + { + "parentPluginId": "@kbn/io-ts-utils", + "id": "def-common.dateRt", + "type": "Object", + "tags": [], + "label": "dateRt", + "description": [], + "signature": [ + "BrandC", + "<", + "StringC", + ", ", + "DateBrand", + ">" + ], + "path": "packages/kbn-io-ts-utils/src/date_rt/index.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/io-ts-utils", "id": "def-common.indexPatternRt", diff --git a/api_docs/kbn_io_ts_utils.mdx b/api_docs/kbn_io_ts_utils.mdx index e2d533cf83e6a..503dbab8e3754 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/io-ts-utils'] --- import kbnIoTsUtilsObj from './kbn_io_ts_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/apm-ui](https://github.com/orgs/elastic/teams/apm-ui) for ques | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 24 | 0 | 24 | 3 | +| 38 | 0 | 38 | 4 | ## Common diff --git a/api_docs/kbn_jest_serializers.mdx b/api_docs/kbn_jest_serializers.mdx index 369df25ee21ab..dea3262170428 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/jest-serializers'] --- import kbnJestSerializersObj from './kbn_jest_serializers.devdocs.json'; diff --git a/api_docs/kbn_journeys.devdocs.json b/api_docs/kbn_journeys.devdocs.json index bc2b5dfe5fffa..b0a4c65e8be13 100644 --- a/api_docs/kbn_journeys.devdocs.json +++ b/api_docs/kbn_journeys.devdocs.json @@ -1230,6 +1230,195 @@ "initialIsOpen": false } ], - "objects": [] + "objects": [ + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG", + "type": "Object", + "tags": [], + "label": "JOURNEY_APM_CONFIG", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.serverUrl", + "type": "string", + "tags": [], + "label": "serverUrl", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.secretToken", + "type": "string", + "tags": [], + "label": "secretToken", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.active", + "type": "string", + "tags": [], + "label": "active", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.contextPropagationOnly", + "type": "string", + "tags": [], + "label": "contextPropagationOnly", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.environment", + "type": "string", + "tags": [], + "label": "environment", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.transactionSampleRate", + "type": "string", + "tags": [], + "label": "transactionSampleRate", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.captureBody", + "type": "string", + "tags": [], + "label": "captureBody", + "description": [ + "// capture request body for both errors and request transactions\n// https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#capture-body" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.captureRequestHeaders", + "type": "boolean", + "tags": [], + "label": "captureRequestHeaders", + "description": [ + "// capture request headers\n// https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#capture-headers" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.longFieldMaxLength", + "type": "number", + "tags": [], + "label": "longFieldMaxLength", + "description": [ + "// request body with bigger size will be trimmed.\n// 300_000 is the default of the APM server.\n// for a body with larger size, we might need to reconfigure the APM server to increase the limit.\n// https://www.elastic.co/guide/en/apm/agent/nodejs/current/configuration.html#long-field-max-length" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.globalLabels", + "type": "Object", + "tags": [], + "label": "globalLabels", + "description": [], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.globalLabels.performancePhase", + "type": "string", + "tags": [], + "label": "performancePhase", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.globalLabels.branch", + "type": "string", + "tags": [], + "label": "branch", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.globalLabels.gitRev", + "type": "string", + "tags": [], + "label": "gitRev", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/journeys", + "id": "def-common.JOURNEY_APM_CONFIG.globalLabels.ciBuildName", + "type": "string", + "tags": [], + "label": "ciBuildName", + "description": [], + "signature": [ + "string | undefined" + ], + "path": "packages/kbn-journeys/journey/journey_apm_config.ts", + "deprecated": false, + "trackAdoption": false + } + ] + } + ], + "initialIsOpen": false + } + ] } } \ No newline at end of file diff --git a/api_docs/kbn_journeys.mdx b/api_docs/kbn_journeys.mdx index 4743bf78090c5..aa82431ea0e3f 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/journeys'] --- import kbnJourneysObj from './kbn_journeys.devdocs.json'; @@ -21,10 +21,13 @@ Contact [@elastic/kibana-operations](https://github.com/orgs/elastic/teams/kiban | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 70 | 0 | 65 | 5 | +| 85 | 0 | 77 | 5 | ## Common +### Objects + + ### Classes diff --git a/api_docs/kbn_json_ast.mdx b/api_docs/kbn_json_ast.mdx index 1465c519c26d7..cb2330485201b 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-20 +date: 2023-04-21 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 8a4d83213f446..7954d741bfcb3 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-20 +date: 2023-04-21 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 844fb261a31e7..7ceb5757539a4 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-20 +date: 2023-04-21 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 d0e4eb4f68007..81a30f0763d92 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-20 +date: 2023-04-21 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 cd50f940078d3..8cd4373bdcf17 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-20 +date: 2023-04-21 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 dd624c01ccd27..f660720b2133c 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-20 +date: 2023-04-21 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 feb285c25a65d..05c475dfc93c2 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-20 +date: 2023-04-21 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 0aec9863bfd9c..d82c025dbab1e 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-20 +date: 2023-04-21 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 61d5a9dffeedf..f92ec1a980b78 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-20 +date: 2023-04-21 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 bc004392a5d41..9d000095378bd 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-20 +date: 2023-04-21 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 6f6ea69767650..40ce5731de31e 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-20 +date: 2023-04-21 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 90bbe3247bcea..f14deff209d77 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-20 +date: 2023-04-21 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 8ff972997e11f..ef15635229b53 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-20 +date: 2023-04-21 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 cf4903244b7a5..05c5432c4f57f 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-20 +date: 2023-04-21 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 ef93af3bf8f2b..8327a7ed0b4d5 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-20 +date: 2023-04-21 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 87e7104b919c0..4998fe175ef71 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-20 +date: 2023-04-21 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 0746d44eb914b..8e1d50e0f9364 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-20 +date: 2023-04-21 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 486008f7f2eef..f18f1327cb256 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-20 +date: 2023-04-21 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 12066d5a19cbe..43aeec4bf32ca 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-20 +date: 2023-04-21 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 0c35cbec039fe..390009d4685e5 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-20 +date: 2023-04-21 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 021a996c1af06..605d07152c5b0 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-20 +date: 2023-04-21 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 b216580e3fe0a..8d3135bdd7f76 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-20 +date: 2023-04-21 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 cfd788aa1c5e1..48886f59e6160 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-20 +date: 2023-04-21 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 e1e6b75d349eb..58204fde5d980 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-20 +date: 2023-04-21 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 cc2783a01db33..ac5cab95f43ec 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-20 +date: 2023-04-21 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 095f3df1b23cd..d351b9e974a46 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-20 +date: 2023-04-21 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 5680dde71dbf6..820b381b56e3b 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-20 +date: 2023-04-21 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 ce8b983886c6b..4f63a60e98d21 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-20 +date: 2023-04-21 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 80e9be96710ea..481b254612404 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-20 +date: 2023-04-21 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 fa435bb113264..5d88f2bb7cd87 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-20 +date: 2023-04-21 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 d9b61d068bb73..fb0c69e268327 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-20 +date: 2023-04-21 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 fe9e0b7464406..fa756525922ae 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-20 +date: 2023-04-21 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 cbaada4cbfd67..dc04d8563bc52 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-20 +date: 2023-04-21 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 7180c39d48d22..af0847941070f 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-20 +date: 2023-04-21 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 18f4023702c94..52ff2a0ac41b5 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-20 +date: 2023-04-21 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 0e3cc9b286422..5f654ffa57ef8 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rison'] --- import kbnRisonObj from './kbn_rison.devdocs.json'; diff --git a/api_docs/kbn_rule_data_utils.devdocs.json b/api_docs/kbn_rule_data_utils.devdocs.json index efe81b0b3e925..7163f86fb0fd1 100644 --- a/api_docs/kbn_rule_data_utils.devdocs.json +++ b/api_docs/kbn_rule_data_utils.devdocs.json @@ -283,6 +283,21 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/rule-data-utils", + "id": "def-common.ALERT_EVALUATION_VALUES", + "type": "string", + "tags": [], + "label": "ALERT_EVALUATION_VALUES", + "description": [], + "signature": [ + "\"kibana.alert.evaluation.values\"" + ], + "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/rule-data-utils", "id": "def-common.ALERT_FLAPPING", @@ -1228,6 +1243,21 @@ "trackAdoption": false, "initialIsOpen": false }, + { + "parentPluginId": "@kbn/rule-data-utils", + "id": "def-common.ALERT_URL", + "type": "string", + "tags": [], + "label": "ALERT_URL", + "description": [], + "signature": [ + "\"kibana.alert.url\"" + ], + "path": "packages/kbn-rule-data-utils/src/default_alerts_as_data.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, { "parentPluginId": "@kbn/rule-data-utils", "id": "def-common.ALERT_UUID", @@ -1341,7 +1371,7 @@ "label": "DefaultAlertFieldName", "description": [], "signature": [ - "\"@timestamp\" | \"kibana\" | \"kibana.alert.rule.rule_type_id\" | \"kibana.alert.rule.consumer\" | \"kibana.alert.rule.execution.uuid\" | \"kibana.alert\" | \"kibana.alert.action_group\" | \"kibana.alert.case_ids\" | \"kibana.alert.duration.us\" | \"kibana.alert.end\" | \"kibana.alert.flapping\" | \"kibana.alert.flapping_history\" | \"kibana.alert.maintenance_window_ids\" | \"kibana.alert.instance.id\" | \"kibana.alert.last_detected\" | \"kibana.alert.reason\" | \"kibana.alert.rule\" | \"kibana.alert.rule.category\" | \"kibana.alert.rule.name\" | \"kibana.alert.rule.parameters\" | \"kibana.alert.rule.producer\" | \"kibana.alert.rule.revision\" | \"kibana.alert.rule.tags\" | \"kibana.alert.rule.uuid\" | \"kibana.alert.start\" | \"kibana.alert.status\" | \"kibana.alert.time_range\" | \"kibana.alert.uuid\" | \"kibana.alert.workflow_status\" | \"kibana.space_ids\" | \"kibana.version\"" + "\"@timestamp\" | \"kibana\" | \"kibana.alert.rule.rule_type_id\" | \"kibana.alert.rule.consumer\" | \"kibana.alert.rule.execution.uuid\" | \"kibana.alert\" | \"kibana.alert.action_group\" | \"kibana.alert.case_ids\" | \"kibana.alert.duration.us\" | \"kibana.alert.end\" | \"kibana.alert.flapping\" | \"kibana.alert.flapping_history\" | \"kibana.alert.maintenance_window_ids\" | \"kibana.alert.instance.id\" | \"kibana.alert.last_detected\" | \"kibana.alert.reason\" | \"kibana.alert.rule\" | \"kibana.alert.rule.category\" | \"kibana.alert.rule.name\" | \"kibana.alert.rule.parameters\" | \"kibana.alert.rule.producer\" | \"kibana.alert.rule.revision\" | \"kibana.alert.rule.tags\" | \"kibana.alert.rule.uuid\" | \"kibana.alert.start\" | \"kibana.alert.status\" | \"kibana.alert.time_range\" | \"kibana.alert.url\" | \"kibana.alert.uuid\" | \"kibana.alert.workflow_status\" | \"kibana.space_ids\" | \"kibana.version\"" ], "path": "packages/kbn-rule-data-utils/src/default_alerts_as_data.ts", "deprecated": false, @@ -1506,7 +1536,7 @@ "label": "TechnicalRuleDataFieldName", "description": [], "signature": [ - "\"@timestamp\" | \"event.action\" | \"tags\" | \"kibana\" | \"kibana.alert.rule.rule_type_id\" | \"kibana.alert.rule.consumer\" | \"kibana.alert.rule.execution.uuid\" | \"kibana.alert\" | \"kibana.alert.action_group\" | \"kibana.alert.case_ids\" | \"kibana.alert.duration.us\" | \"kibana.alert.end\" | \"kibana.alert.flapping\" | \"kibana.alert.maintenance_window_ids\" | \"kibana.alert.instance.id\" | \"kibana.alert.reason\" | \"kibana.alert.rule\" | \"kibana.alert.rule.category\" | \"kibana.alert.rule.name\" | \"kibana.alert.rule.parameters\" | \"kibana.alert.rule.producer\" | \"kibana.alert.rule.tags\" | \"kibana.alert.rule.uuid\" | \"kibana.alert.start\" | \"kibana.alert.status\" | \"kibana.alert.time_range\" | \"kibana.alert.uuid\" | \"kibana.alert.workflow_status\" | \"kibana.space_ids\" | \"kibana.version\" | \"kibana.alert.risk_score\" | \"kibana.alert.rule.author\" | \"kibana.alert.rule.created_at\" | \"kibana.alert.rule.created_by\" | \"kibana.alert.rule.description\" | \"kibana.alert.rule.enabled\" | \"kibana.alert.rule.from\" | \"kibana.alert.rule.interval\" | \"kibana.alert.rule.license\" | \"kibana.alert.rule.note\" | \"kibana.alert.rule.references\" | \"kibana.alert.rule.rule_id\" | \"kibana.alert.rule.rule_name_override\" | \"kibana.alert.rule.to\" | \"kibana.alert.rule.type\" | \"kibana.alert.rule.updated_at\" | \"kibana.alert.rule.updated_by\" | \"kibana.alert.rule.version\" | \"kibana.alert.severity\" | \"kibana.alert.suppression.docs_count\" | \"kibana.alert.suppression.end\" | \"kibana.alert.suppression.terms\" | \"kibana.alert.suppression.terms.field\" | \"kibana.alert.suppression.start\" | \"kibana.alert.suppression.terms.value\" | \"kibana.alert.system_status\" | \"kibana.alert.workflow_reason\" | \"kibana.alert.workflow_user\" | \"ecs.version\" | \"event.kind\" | \"kibana.alert.evaluation.threshold\" | \"kibana.alert.evaluation.value\" | \"event.module\" | \"kibana.alert.building_block_type\" | \"kibana.alert.rule.exceptions_list\" | \"kibana.alert.rule.namespace\" | \"kibana.alert.rule.threat.framework\" | \"kibana.alert.rule.threat.tactic.id\" | \"kibana.alert.rule.threat.tactic.name\" | \"kibana.alert.rule.threat.tactic.reference\" | \"kibana.alert.rule.threat.technique.id\" | \"kibana.alert.rule.threat.technique.name\" | \"kibana.alert.rule.threat.technique.reference\" | \"kibana.alert.rule.threat.technique.subtechnique.id\" | \"kibana.alert.rule.threat.technique.subtechnique.name\" | \"kibana.alert.rule.threat.technique.subtechnique.reference\"" + "\"@timestamp\" | \"event.action\" | \"tags\" | \"kibana\" | \"kibana.alert.rule.rule_type_id\" | \"kibana.alert.rule.consumer\" | \"kibana.alert.rule.execution.uuid\" | \"kibana.alert\" | \"kibana.alert.action_group\" | \"kibana.alert.case_ids\" | \"kibana.alert.duration.us\" | \"kibana.alert.end\" | \"kibana.alert.flapping\" | \"kibana.alert.maintenance_window_ids\" | \"kibana.alert.instance.id\" | \"kibana.alert.reason\" | \"kibana.alert.rule\" | \"kibana.alert.rule.category\" | \"kibana.alert.rule.name\" | \"kibana.alert.rule.parameters\" | \"kibana.alert.rule.producer\" | \"kibana.alert.rule.tags\" | \"kibana.alert.rule.uuid\" | \"kibana.alert.start\" | \"kibana.alert.status\" | \"kibana.alert.time_range\" | \"kibana.alert.uuid\" | \"kibana.alert.workflow_status\" | \"kibana.space_ids\" | \"kibana.version\" | \"kibana.alert.risk_score\" | \"kibana.alert.rule.author\" | \"kibana.alert.rule.created_at\" | \"kibana.alert.rule.created_by\" | \"kibana.alert.rule.description\" | \"kibana.alert.rule.enabled\" | \"kibana.alert.rule.from\" | \"kibana.alert.rule.interval\" | \"kibana.alert.rule.license\" | \"kibana.alert.rule.note\" | \"kibana.alert.rule.references\" | \"kibana.alert.rule.rule_id\" | \"kibana.alert.rule.rule_name_override\" | \"kibana.alert.rule.to\" | \"kibana.alert.rule.type\" | \"kibana.alert.rule.updated_at\" | \"kibana.alert.rule.updated_by\" | \"kibana.alert.rule.version\" | \"kibana.alert.severity\" | \"kibana.alert.suppression.docs_count\" | \"kibana.alert.suppression.end\" | \"kibana.alert.suppression.terms\" | \"kibana.alert.suppression.terms.field\" | \"kibana.alert.suppression.start\" | \"kibana.alert.suppression.terms.value\" | \"kibana.alert.system_status\" | \"kibana.alert.workflow_reason\" | \"kibana.alert.workflow_user\" | \"ecs.version\" | \"event.kind\" | \"kibana.alert.evaluation.threshold\" | \"kibana.alert.evaluation.value\" | \"kibana.alert.evaluation.values\" | \"event.module\" | \"kibana.alert.building_block_type\" | \"kibana.alert.rule.exceptions_list\" | \"kibana.alert.rule.namespace\" | \"kibana.alert.rule.threat.framework\" | \"kibana.alert.rule.threat.tactic.id\" | \"kibana.alert.rule.threat.tactic.name\" | \"kibana.alert.rule.threat.tactic.reference\" | \"kibana.alert.rule.threat.technique.id\" | \"kibana.alert.rule.threat.technique.name\" | \"kibana.alert.rule.threat.technique.reference\" | \"kibana.alert.rule.threat.technique.subtechnique.id\" | \"kibana.alert.rule.threat.technique.subtechnique.name\" | \"kibana.alert.rule.threat.technique.subtechnique.reference\"" ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, diff --git a/api_docs/kbn_rule_data_utils.mdx b/api_docs/kbn_rule_data_utils.mdx index 3345d55d51c5a..16eb8b268e12a 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rule-data-utils'] --- import kbnRuleDataUtilsObj from './kbn_rule_data_utils.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/security-detections-response](https://github.com/orgs/elastic/ | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 103 | 0 | 100 | 0 | +| 105 | 0 | 102 | 0 | ## Common diff --git a/api_docs/kbn_saved_objects_settings.mdx b/api_docs/kbn_saved_objects_settings.mdx index 5c3e19f8e60f7..2d5a7a078d24c 100644 --- a/api_docs/kbn_saved_objects_settings.mdx +++ b/api_docs/kbn_saved_objects_settings.mdx @@ -8,7 +8,7 @@ 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/saved-objects-settings'] --- import kbnSavedObjectsSettingsObj from './kbn_saved_objects_settings.devdocs.json'; diff --git a/api_docs/kbn_security_solution_side_nav.mdx b/api_docs/kbn_security_solution_side_nav.mdx index edded7c0db0d7..476ecb69cdbcc 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-20 +date: 2023-04-21 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 25f6bc6bb8464..5bec888bb4e5a 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-20 +date: 2023-04-21 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 5e67b3e73ac18..7d0c70dbb7b39 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-20 +date: 2023-04-21 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 index 2aa15fe5580f4..39a3a4cfa98fb 100644 --- a/api_docs/kbn_securitysolution_data_table.devdocs.json +++ b/api_docs/kbn_securitysolution_data_table.devdocs.json @@ -1229,7 +1229,7 @@ "section": "def-common.SortColumnTable", "text": "SortColumnTable" }, - "[]; readonly title: string; readonly filters?: ", + "[]; readonly title: string; readonly isLoading: boolean; readonly filters?: ", { "pluginId": "@kbn/es-query", "scope": "common", @@ -1251,7 +1251,7 @@ "section": "def-common.IFieldSubType", "text": "IFieldSubType" }, - " | undefined; type?: string | undefined; })[]; readonly isLoading: boolean; readonly viewMode: ", + " | undefined; type?: string | undefined; })[]; readonly viewMode: ", { "pluginId": "@kbn/securitysolution-data-table", "scope": "common", diff --git a/api_docs/kbn_securitysolution_data_table.mdx b/api_docs/kbn_securitysolution_data_table.mdx index b898eba5046ed..1c5b3548f92c4 100644 --- a/api_docs/kbn_securitysolution_data_table.mdx +++ b/api_docs/kbn_securitysolution_data_table.mdx @@ -8,7 +8,7 @@ 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-data-table'] --- import kbnSecuritysolutionDataTableObj from './kbn_securitysolution_data_table.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_ecs.mdx b/api_docs/kbn_securitysolution_ecs.mdx index 7174d233543b9..085a9a78a69cf 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_securitysolution_es_utils.devdocs.json index 19baa142ff863..360332ea75d2d 100644 --- a/api_docs/kbn_securitysolution_es_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_es_utils.devdocs.json @@ -622,7 +622,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -1540,8 +1542,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", @@ -1866,7 +1866,9 @@ "TransportRequestOptions", " | undefined): Promise<", "SearchResponse", - ">; }; name: string | symbol; monitoring: ", + ">; }; name: string | symbol; security: ", + "default", + "; monitoring: ", "default", "; count: { (this: That, params?: ", "CountRequest", @@ -2784,8 +2786,6 @@ "SearchTemplateResponse", ">; }; searchableSnapshots: ", "default", - "; security: ", - "default", "; shutdown: ", "default", "; slm: ", diff --git a/api_docs/kbn_securitysolution_es_utils.mdx b/api_docs/kbn_securitysolution_es_utils.mdx index 35409a3131925..1df63d4877934 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_securitysolution_exception_list_components.devdocs.json index 1ba351068e142..2eb73d6829b89 100644 --- a/api_docs/kbn_securitysolution_exception_list_components.devdocs.json +++ b/api_docs/kbn_securitysolution_exception_list_components.devdocs.json @@ -834,7 +834,7 @@ "label": "formattedDateComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"meta\" | \"pattern\" | \"title\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"slot\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"style\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" + "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/meta/index.tsx", "deprecated": false, @@ -848,7 +848,7 @@ "label": "securityLinkAnchorComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"meta\" | \"pattern\" | \"title\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"slot\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"style\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" + "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/meta/index.tsx", "deprecated": false, @@ -987,7 +987,7 @@ "label": "securityLinkAnchorComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"meta\" | \"pattern\" | \"title\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"slot\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"style\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" + "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/exception_item_card.tsx", "deprecated": false, @@ -1001,7 +1001,7 @@ "label": "formattedDateComponent", "description": [], "signature": [ - "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"meta\" | \"pattern\" | \"title\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"slot\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"style\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" + "\"symbol\" | \"object\" | \"source\" | \"desc\" | \"filter\" | \"big\" | \"link\" | \"small\" | \"sub\" | \"sup\" | \"text\" | \"map\" | \"head\" | React.ComponentType | \"slot\" | \"style\" | \"title\" | \"meta\" | \"pattern\" | \"template\" | \"main\" | \"a\" | \"abbr\" | \"address\" | \"area\" | \"article\" | \"aside\" | \"audio\" | \"b\" | \"base\" | \"bdi\" | \"bdo\" | \"blockquote\" | \"body\" | \"br\" | \"button\" | \"canvas\" | \"caption\" | \"cite\" | \"code\" | \"col\" | \"colgroup\" | \"data\" | \"datalist\" | \"dd\" | \"del\" | \"details\" | \"dfn\" | \"dialog\" | \"div\" | \"dl\" | \"dt\" | \"em\" | \"embed\" | \"fieldset\" | \"figcaption\" | \"figure\" | \"footer\" | \"form\" | \"h1\" | \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"header\" | \"hgroup\" | \"hr\" | \"html\" | \"i\" | \"iframe\" | \"img\" | \"input\" | \"ins\" | \"kbd\" | \"keygen\" | \"label\" | \"legend\" | \"li\" | \"mark\" | \"menu\" | \"menuitem\" | \"meter\" | \"nav\" | \"noindex\" | \"noscript\" | \"ol\" | \"optgroup\" | \"option\" | \"output\" | \"p\" | \"param\" | \"picture\" | \"pre\" | \"progress\" | \"q\" | \"rp\" | \"rt\" | \"ruby\" | \"s\" | \"samp\" | \"script\" | \"section\" | \"select\" | \"span\" | \"strong\" | \"summary\" | \"table\" | \"tbody\" | \"td\" | \"textarea\" | \"tfoot\" | \"th\" | \"thead\" | \"time\" | \"tr\" | \"track\" | \"u\" | \"ul\" | \"var\" | \"video\" | \"wbr\" | \"webview\" | \"svg\" | \"animate\" | \"animateMotion\" | \"animateTransform\" | \"circle\" | \"clipPath\" | \"defs\" | \"ellipse\" | \"feBlend\" | \"feColorMatrix\" | \"feComponentTransfer\" | \"feComposite\" | \"feConvolveMatrix\" | \"feDiffuseLighting\" | \"feDisplacementMap\" | \"feDistantLight\" | \"feDropShadow\" | \"feFlood\" | \"feFuncA\" | \"feFuncB\" | \"feFuncG\" | \"feFuncR\" | \"feGaussianBlur\" | \"feImage\" | \"feMerge\" | \"feMergeNode\" | \"feMorphology\" | \"feOffset\" | \"fePointLight\" | \"feSpecularLighting\" | \"feSpotLight\" | \"feTile\" | \"feTurbulence\" | \"foreignObject\" | \"g\" | \"image\" | \"line\" | \"linearGradient\" | \"marker\" | \"mask\" | \"metadata\" | \"mpath\" | \"path\" | \"polygon\" | \"polyline\" | \"radialGradient\" | \"rect\" | \"stop\" | \"switch\" | \"textPath\" | \"tspan\" | \"use\" | \"view\"" ], "path": "packages/kbn-securitysolution-exception-list-components/src/exception_item_card/exception_item_card.tsx", "deprecated": false, diff --git a/api_docs/kbn_securitysolution_exception_list_components.mdx b/api_docs/kbn_securitysolution_exception_list_components.mdx index edbcef383a9e4..35453fb0b1a31 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-20 +date: 2023-04-21 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 dd6a09d571f3c..7276dcef35bd3 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-20 +date: 2023-04-21 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 1d835702cbe21..a7cb93e0ca41c 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-20 +date: 2023-04-21 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 4a4889a2246b2..1a5fe7a8eff63 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-20 +date: 2023-04-21 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 8a32466a3abbc..fae1f7cdd2313 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-20 +date: 2023-04-21 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 ae143cab8a343..360fd19200755 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-20 +date: 2023-04-21 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 6fce7b36a3dfa..2b6f02cc7215b 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-20 +date: 2023-04-21 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 40bf897b06c2c..0255ba2088e5e 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-20 +date: 2023-04-21 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 3b1ecaf1f6e66..02b65ca6fde37 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-20 +date: 2023-04-21 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 fbed8ffd2680c..786b822ce39de 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-20 +date: 2023-04-21 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.mdx b/api_docs/kbn_securitysolution_list_utils.mdx index a7cfff43d2cd5..7f1e021d2997e 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-20 +date: 2023-04-21 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-utils'] --- import kbnSecuritysolutionListUtilsObj from './kbn_securitysolution_list_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_rules.mdx b/api_docs/kbn_securitysolution_rules.mdx index e6ac27bba005c..7b8ea7f8fa153 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-20 +date: 2023-04-21 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 75c35043958c2..bbaae18e81926 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-20 +date: 2023-04-21 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 d813903659c73..b22479ca8cb62 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-20 +date: 2023-04-21 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 5789cd2a5ce90..e959b8f8857f1 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-20 +date: 2023-04-21 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 70c5530f94e71..4dce3d0bcc354 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-20 +date: 2023-04-21 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 2f8fe6b3aa803..b3241f80861cf 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-20 +date: 2023-04-21 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 beaa98374a383..7fdc62d57e0e5 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_shared_ux_avatar_user_profile_components.devdocs.json index 3bcad06a1a554..8db820277866f 100644 --- a/api_docs/kbn_shared_ux_avatar_user_profile_components.devdocs.json +++ b/api_docs/kbn_shared_ux_avatar_user_profile_components.devdocs.json @@ -490,7 +490,7 @@ }, " extends Pick<", "EuiSelectableProps", - "<{}>, \"height\" | \"errorMessage\" | \"singleSelection\" | \"loadingMessage\" | \"noMatchesMessage\" | \"emptyMessage\">" + "<{}>, \"singleSelection\" | \"height\" | \"errorMessage\" | \"loadingMessage\" | \"noMatchesMessage\" | \"emptyMessage\">" ], "path": "packages/shared-ux/avatar/user_profile/impl/user_profiles_selectable.tsx", "deprecated": false, 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 df39cf2bfac2d..74b168d876714 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-20 +date: 2023-04-21 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 ef64bc2379a7e..c67019c024447 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-20 +date: 2023-04-21 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 7c23015601b7a..523f937ac0308 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_shared_ux_button_toolbar.devdocs.json index 57ab85b6c5e8e..40debaa698553 100644 --- a/api_docs/kbn_shared_ux_button_toolbar.devdocs.json +++ b/api_docs/kbn_shared_ux_button_toolbar.devdocs.json @@ -434,7 +434,7 @@ }, " extends Pick<", "EuiButtonPropsForButton", - ", \"data-test-subj\" | \"onClick\" | \"iconType\" | \"iconSide\">" + ", \"onClick\" | \"data-test-subj\" | \"iconType\" | \"iconSide\">" ], "path": "packages/shared-ux/button_toolbar/src/buttons/toolbar_button/toolbar_button.tsx", "deprecated": false, @@ -509,7 +509,7 @@ "label": "Props", "description": [], "signature": [ - "{ 'data-test-subj'?: string | undefined; onClick?: React.MouseEventHandler | undefined; iconSide?: ", + "{ onClick?: React.MouseEventHandler | undefined; 'data-test-subj'?: string | undefined; iconSide?: ", "ButtonContentIconSide", "; }" ], diff --git a/api_docs/kbn_shared_ux_button_toolbar.mdx b/api_docs/kbn_shared_ux_button_toolbar.mdx index 108257adf5838..7e026fc462e17 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_shared_ux_card_no_data.devdocs.json index 00a6c59e3d871..dbafd6a4c803c 100644 --- a/api_docs/kbn_shared_ux_card_no_data.devdocs.json +++ b/api_docs/kbn_shared_ux_card_no_data.devdocs.json @@ -148,7 +148,7 @@ "signature": [ "Partial> & { button?: React.ReactNode; onClick?: React.MouseEventHandler | undefined; description?: React.ReactNode; category?: string | undefined; canAccessFleet?: boolean | undefined; }" + ", \"description\" | \"onClick\" | \"isDisabled\" | \"button\" | \"layout\">> & { button?: React.ReactNode; onClick?: React.MouseEventHandler | undefined; description?: React.ReactNode; category?: string | undefined; canAccessFleet?: boolean | undefined; }" ], "path": "packages/shared-ux/card/no_data/types/index.d.ts", "deprecated": false, @@ -184,13 +184,13 @@ "\nProps for the `NoDataCard` sevice-connected component." ], "signature": [ - "{ prefix?: string | undefined; id?: string | undefined; defaultValue?: string | number | readonly string[] | undefined; children?: React.ReactNode; description?: React.ReactNode; category?: string | undefined; is?: string | undefined; title?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; security?: string | undefined; button?: React.ReactNode; footer?: React.ReactNode; slot?: string | undefined; style?: React.CSSProperties | undefined; image?: string | React.ReactElement> | undefined; className?: string | undefined; 'aria-label'?: string | undefined; 'data-test-subj'?: string | undefined; css?: ", + "{ prefix?: string | undefined; id?: string | undefined; defaultValue?: string | number | readonly string[] | undefined; children?: React.ReactNode; description?: React.ReactNode; category?: string | undefined; onChange?: React.FormEventHandler | undefined; defaultChecked?: boolean | undefined; suppressContentEditableWarning?: boolean | undefined; suppressHydrationWarning?: boolean | undefined; accessKey?: string | undefined; className?: string | undefined; contentEditable?: Booleanish | \"inherit\" | undefined; contextMenu?: string | undefined; dir?: string | undefined; draggable?: Booleanish | undefined; hidden?: boolean | undefined; lang?: string | undefined; placeholder?: string | undefined; slot?: string | undefined; spellCheck?: Booleanish | undefined; style?: React.CSSProperties | undefined; tabIndex?: number | undefined; title?: boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | undefined; translate?: \"yes\" | \"no\" | undefined; radioGroup?: string | undefined; role?: React.AriaRole | undefined; about?: string | undefined; datatype?: string | undefined; inlist?: any; property?: string | undefined; resource?: string | undefined; typeof?: string | undefined; vocab?: string | undefined; autoCapitalize?: string | undefined; autoCorrect?: string | undefined; autoSave?: string | undefined; itemProp?: string | undefined; itemScope?: boolean | undefined; itemType?: string | undefined; itemID?: string | undefined; itemRef?: string | undefined; results?: number | undefined; security?: string | undefined; unselectable?: \"on\" | \"off\" | undefined; inputMode?: \"search\" | \"none\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\" | undefined; is?: string | undefined; 'aria-activedescendant'?: string | undefined; 'aria-atomic'?: Booleanish | undefined; 'aria-autocomplete'?: \"none\" | \"list\" | \"inline\" | \"both\" | undefined; 'aria-busy'?: Booleanish | undefined; 'aria-checked'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-colcount'?: number | undefined; 'aria-colindex'?: number | undefined; 'aria-colspan'?: number | undefined; 'aria-controls'?: string | undefined; 'aria-current'?: boolean | \"page\" | \"date\" | \"time\" | \"true\" | \"false\" | \"step\" | \"location\" | undefined; 'aria-describedby'?: string | undefined; 'aria-details'?: string | undefined; 'aria-disabled'?: Booleanish | undefined; 'aria-dropeffect'?: \"execute\" | \"link\" | \"none\" | \"copy\" | \"move\" | \"popup\" | undefined; 'aria-errormessage'?: string | undefined; 'aria-expanded'?: Booleanish | undefined; 'aria-flowto'?: string | undefined; 'aria-grabbed'?: Booleanish | undefined; 'aria-haspopup'?: boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\" | undefined; 'aria-hidden'?: Booleanish | undefined; 'aria-invalid'?: boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\" | undefined; 'aria-keyshortcuts'?: string | undefined; 'aria-label'?: string | undefined; 'aria-labelledby'?: string | undefined; 'aria-level'?: number | undefined; 'aria-live'?: \"off\" | \"assertive\" | \"polite\" | undefined; 'aria-modal'?: Booleanish | undefined; 'aria-multiline'?: Booleanish | undefined; 'aria-multiselectable'?: Booleanish | undefined; 'aria-orientation'?: \"horizontal\" | \"vertical\" | undefined; 'aria-owns'?: string | undefined; 'aria-placeholder'?: string | undefined; 'aria-posinset'?: number | undefined; 'aria-pressed'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-readonly'?: Booleanish | undefined; 'aria-relevant'?: \"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\" | undefined; 'aria-required'?: Booleanish | undefined; 'aria-roledescription'?: string | undefined; 'aria-rowcount'?: number | undefined; 'aria-rowindex'?: number | undefined; 'aria-rowspan'?: number | undefined; 'aria-selected'?: Booleanish | undefined; 'aria-setsize'?: number | undefined; 'aria-sort'?: \"none\" | \"ascending\" | \"descending\" | \"other\" | undefined; 'aria-valuemax'?: number | undefined; 'aria-valuemin'?: number | undefined; 'aria-valuenow'?: number | undefined; 'aria-valuetext'?: string | undefined; dangerouslySetInnerHTML?: { __html: string; } | undefined; onCopy?: React.ClipboardEventHandler | undefined; onCopyCapture?: React.ClipboardEventHandler | undefined; onCut?: React.ClipboardEventHandler | undefined; onCutCapture?: React.ClipboardEventHandler | undefined; onPaste?: React.ClipboardEventHandler | undefined; onPasteCapture?: React.ClipboardEventHandler | undefined; onCompositionEnd?: React.CompositionEventHandler | undefined; onCompositionEndCapture?: React.CompositionEventHandler | undefined; onCompositionStart?: React.CompositionEventHandler | undefined; onCompositionStartCapture?: React.CompositionEventHandler | undefined; onCompositionUpdate?: React.CompositionEventHandler | undefined; onCompositionUpdateCapture?: React.CompositionEventHandler | undefined; onFocus?: React.FocusEventHandler | undefined; onFocusCapture?: React.FocusEventHandler | undefined; onBlur?: React.FocusEventHandler | undefined; onBlurCapture?: React.FocusEventHandler | undefined; onChangeCapture?: React.FormEventHandler | undefined; onBeforeInput?: React.FormEventHandler | undefined; onBeforeInputCapture?: React.FormEventHandler | undefined; onInput?: React.FormEventHandler | undefined; onInputCapture?: React.FormEventHandler | undefined; onReset?: React.FormEventHandler | undefined; onResetCapture?: React.FormEventHandler | undefined; onSubmit?: React.FormEventHandler | undefined; onSubmitCapture?: React.FormEventHandler | undefined; onInvalid?: React.FormEventHandler | undefined; onInvalidCapture?: React.FormEventHandler | undefined; onLoad?: React.ReactEventHandler | undefined; onLoadCapture?: React.ReactEventHandler | undefined; onError?: React.ReactEventHandler | undefined; onErrorCapture?: React.ReactEventHandler | undefined; onKeyDown?: React.KeyboardEventHandler | undefined; onKeyDownCapture?: React.KeyboardEventHandler | undefined; onKeyPress?: React.KeyboardEventHandler | undefined; onKeyPressCapture?: React.KeyboardEventHandler | undefined; onKeyUp?: React.KeyboardEventHandler | undefined; onKeyUpCapture?: React.KeyboardEventHandler | undefined; onAbort?: React.ReactEventHandler | undefined; onAbortCapture?: React.ReactEventHandler | undefined; onCanPlay?: React.ReactEventHandler | undefined; onCanPlayCapture?: React.ReactEventHandler | undefined; onCanPlayThrough?: React.ReactEventHandler | undefined; onCanPlayThroughCapture?: React.ReactEventHandler | undefined; onDurationChange?: React.ReactEventHandler | undefined; onDurationChangeCapture?: React.ReactEventHandler | undefined; onEmptied?: React.ReactEventHandler | undefined; onEmptiedCapture?: React.ReactEventHandler | undefined; onEncrypted?: React.ReactEventHandler | undefined; onEncryptedCapture?: React.ReactEventHandler | undefined; onEnded?: React.ReactEventHandler | undefined; onEndedCapture?: React.ReactEventHandler | undefined; onLoadedData?: React.ReactEventHandler | undefined; onLoadedDataCapture?: React.ReactEventHandler | undefined; onLoadedMetadata?: React.ReactEventHandler | undefined; onLoadedMetadataCapture?: React.ReactEventHandler | undefined; onLoadStart?: React.ReactEventHandler | undefined; onLoadStartCapture?: React.ReactEventHandler | undefined; onPause?: React.ReactEventHandler | undefined; onPauseCapture?: React.ReactEventHandler | undefined; onPlay?: React.ReactEventHandler | undefined; onPlayCapture?: React.ReactEventHandler | undefined; onPlaying?: React.ReactEventHandler | undefined; onPlayingCapture?: React.ReactEventHandler | undefined; onProgress?: React.ReactEventHandler | undefined; onProgressCapture?: React.ReactEventHandler | undefined; onRateChange?: React.ReactEventHandler | undefined; onRateChangeCapture?: React.ReactEventHandler | undefined; onSeeked?: React.ReactEventHandler | undefined; onSeekedCapture?: React.ReactEventHandler | undefined; onSeeking?: React.ReactEventHandler | undefined; onSeekingCapture?: React.ReactEventHandler | undefined; onStalled?: React.ReactEventHandler | undefined; onStalledCapture?: React.ReactEventHandler | undefined; onSuspend?: React.ReactEventHandler | undefined; onSuspendCapture?: React.ReactEventHandler | undefined; onTimeUpdate?: React.ReactEventHandler | undefined; onTimeUpdateCapture?: React.ReactEventHandler | undefined; onVolumeChange?: React.ReactEventHandler | undefined; onVolumeChangeCapture?: React.ReactEventHandler | undefined; onWaiting?: React.ReactEventHandler | undefined; onWaitingCapture?: React.ReactEventHandler | undefined; onAuxClick?: React.MouseEventHandler | undefined; onAuxClickCapture?: React.MouseEventHandler | undefined; onClick?: React.MouseEventHandler | undefined; onClickCapture?: React.MouseEventHandler | undefined; onContextMenu?: React.MouseEventHandler | undefined; onContextMenuCapture?: React.MouseEventHandler | undefined; onDoubleClick?: React.MouseEventHandler | undefined; onDoubleClickCapture?: React.MouseEventHandler | undefined; onDrag?: React.DragEventHandler | undefined; onDragCapture?: React.DragEventHandler | undefined; onDragEnd?: React.DragEventHandler | undefined; onDragEndCapture?: React.DragEventHandler | undefined; onDragEnter?: React.DragEventHandler | undefined; onDragEnterCapture?: React.DragEventHandler | undefined; onDragExit?: React.DragEventHandler | undefined; onDragExitCapture?: React.DragEventHandler | undefined; onDragLeave?: React.DragEventHandler | undefined; onDragLeaveCapture?: React.DragEventHandler | undefined; onDragOver?: React.DragEventHandler | undefined; onDragOverCapture?: React.DragEventHandler | undefined; onDragStart?: React.DragEventHandler | undefined; onDragStartCapture?: React.DragEventHandler | undefined; onDrop?: React.DragEventHandler | undefined; onDropCapture?: React.DragEventHandler | undefined; onMouseDown?: React.MouseEventHandler | undefined; onMouseDownCapture?: React.MouseEventHandler | undefined; onMouseEnter?: React.MouseEventHandler | undefined; onMouseLeave?: React.MouseEventHandler | undefined; onMouseMove?: React.MouseEventHandler | undefined; onMouseMoveCapture?: React.MouseEventHandler | undefined; onMouseOut?: React.MouseEventHandler | undefined; onMouseOutCapture?: React.MouseEventHandler | undefined; onMouseOver?: React.MouseEventHandler | undefined; onMouseOverCapture?: React.MouseEventHandler | undefined; onMouseUp?: React.MouseEventHandler | undefined; onMouseUpCapture?: React.MouseEventHandler | undefined; onSelect?: React.ReactEventHandler | undefined; onSelectCapture?: React.ReactEventHandler | undefined; onTouchCancel?: React.TouchEventHandler | undefined; onTouchCancelCapture?: React.TouchEventHandler | undefined; onTouchEnd?: React.TouchEventHandler | undefined; onTouchEndCapture?: React.TouchEventHandler | undefined; onTouchMove?: React.TouchEventHandler | undefined; onTouchMoveCapture?: React.TouchEventHandler | undefined; onTouchStart?: React.TouchEventHandler | undefined; onTouchStartCapture?: React.TouchEventHandler | undefined; onPointerDown?: React.PointerEventHandler | undefined; onPointerDownCapture?: React.PointerEventHandler | undefined; onPointerMove?: React.PointerEventHandler | undefined; onPointerMoveCapture?: React.PointerEventHandler | undefined; onPointerUp?: React.PointerEventHandler | undefined; onPointerUpCapture?: React.PointerEventHandler | undefined; onPointerCancel?: React.PointerEventHandler | undefined; onPointerCancelCapture?: React.PointerEventHandler | undefined; onPointerEnter?: React.PointerEventHandler | undefined; onPointerEnterCapture?: React.PointerEventHandler | undefined; onPointerLeave?: React.PointerEventHandler | undefined; onPointerLeaveCapture?: React.PointerEventHandler | undefined; onPointerOver?: React.PointerEventHandler | undefined; onPointerOverCapture?: React.PointerEventHandler | undefined; onPointerOut?: React.PointerEventHandler | undefined; onPointerOutCapture?: React.PointerEventHandler | undefined; onGotPointerCapture?: React.PointerEventHandler | undefined; onGotPointerCaptureCapture?: React.PointerEventHandler | undefined; onLostPointerCapture?: React.PointerEventHandler | undefined; onLostPointerCaptureCapture?: React.PointerEventHandler | undefined; onScroll?: React.UIEventHandler | undefined; onScrollCapture?: React.UIEventHandler | undefined; onWheel?: React.WheelEventHandler | undefined; onWheelCapture?: React.WheelEventHandler | undefined; onAnimationStart?: React.AnimationEventHandler | undefined; onAnimationStartCapture?: React.AnimationEventHandler | undefined; onAnimationEnd?: React.AnimationEventHandler | undefined; onAnimationEndCapture?: React.AnimationEventHandler | undefined; onAnimationIteration?: React.AnimationEventHandler | undefined; onAnimationIterationCapture?: React.AnimationEventHandler | undefined; onTransitionEnd?: React.TransitionEventHandler | undefined; onTransitionEndCapture?: React.TransitionEventHandler | undefined; hasBorder?: boolean | undefined; paddingSize?: \"m\" | \"none\" | \"s\" | \"xs\" | \"l\" | \"xl\" | undefined; 'data-test-subj'?: string | undefined; css?: ", "Interpolation", "<", "Theme", - ">; defaultChecked?: boolean | undefined; suppressContentEditableWarning?: boolean | undefined; suppressHydrationWarning?: boolean | undefined; accessKey?: string | undefined; contentEditable?: Booleanish | \"inherit\" | undefined; contextMenu?: string | undefined; dir?: string | undefined; draggable?: Booleanish | undefined; hidden?: boolean | undefined; lang?: string | undefined; placeholder?: string | undefined; spellCheck?: Booleanish | undefined; tabIndex?: number | undefined; translate?: \"yes\" | \"no\" | undefined; radioGroup?: string | undefined; role?: React.AriaRole | undefined; about?: string | undefined; datatype?: string | undefined; inlist?: any; property?: string | undefined; resource?: string | undefined; typeof?: string | undefined; vocab?: string | undefined; autoCapitalize?: string | undefined; autoCorrect?: string | undefined; autoSave?: string | undefined; itemProp?: string | undefined; itemScope?: boolean | undefined; itemType?: string | undefined; itemID?: string | undefined; itemRef?: string | undefined; results?: number | undefined; unselectable?: \"on\" | \"off\" | undefined; inputMode?: \"search\" | \"none\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\" | undefined; 'aria-activedescendant'?: string | undefined; 'aria-atomic'?: Booleanish | undefined; 'aria-autocomplete'?: \"none\" | \"list\" | \"inline\" | \"both\" | undefined; 'aria-busy'?: Booleanish | undefined; 'aria-checked'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-colcount'?: number | undefined; 'aria-colindex'?: number | undefined; 'aria-colspan'?: number | undefined; 'aria-controls'?: string | undefined; 'aria-current'?: boolean | \"page\" | \"date\" | \"time\" | \"true\" | \"false\" | \"step\" | \"location\" | undefined; 'aria-describedby'?: string | undefined; 'aria-details'?: string | undefined; 'aria-disabled'?: Booleanish | undefined; 'aria-dropeffect'?: \"execute\" | \"link\" | \"none\" | \"copy\" | \"move\" | \"popup\" | undefined; 'aria-errormessage'?: string | undefined; 'aria-expanded'?: Booleanish | undefined; 'aria-flowto'?: string | undefined; 'aria-grabbed'?: Booleanish | undefined; 'aria-haspopup'?: boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\" | undefined; 'aria-hidden'?: Booleanish | undefined; 'aria-invalid'?: boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\" | undefined; 'aria-keyshortcuts'?: string | undefined; 'aria-labelledby'?: string | undefined; 'aria-level'?: number | undefined; 'aria-live'?: \"off\" | \"assertive\" | \"polite\" | undefined; 'aria-modal'?: Booleanish | undefined; 'aria-multiline'?: Booleanish | undefined; 'aria-multiselectable'?: Booleanish | undefined; 'aria-orientation'?: \"horizontal\" | \"vertical\" | undefined; 'aria-owns'?: string | undefined; 'aria-placeholder'?: string | undefined; 'aria-posinset'?: number | undefined; 'aria-pressed'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-readonly'?: Booleanish | undefined; 'aria-relevant'?: \"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\" | undefined; 'aria-required'?: Booleanish | undefined; 'aria-roledescription'?: string | undefined; 'aria-rowcount'?: number | undefined; 'aria-rowindex'?: number | undefined; 'aria-rowspan'?: number | undefined; 'aria-selected'?: Booleanish | undefined; 'aria-setsize'?: number | undefined; 'aria-sort'?: \"none\" | \"ascending\" | \"descending\" | \"other\" | undefined; 'aria-valuemax'?: number | undefined; 'aria-valuemin'?: number | undefined; 'aria-valuenow'?: number | undefined; 'aria-valuetext'?: string | undefined; dangerouslySetInnerHTML?: { __html: string; } | undefined; onCopy?: React.ClipboardEventHandler | undefined; onCopyCapture?: React.ClipboardEventHandler | undefined; onCut?: React.ClipboardEventHandler | undefined; onCutCapture?: React.ClipboardEventHandler | undefined; onPaste?: React.ClipboardEventHandler | undefined; onPasteCapture?: React.ClipboardEventHandler | undefined; onCompositionEnd?: React.CompositionEventHandler | undefined; onCompositionEndCapture?: React.CompositionEventHandler | undefined; onCompositionStart?: React.CompositionEventHandler | undefined; onCompositionStartCapture?: React.CompositionEventHandler | undefined; onCompositionUpdate?: React.CompositionEventHandler | undefined; onCompositionUpdateCapture?: React.CompositionEventHandler | undefined; onFocus?: React.FocusEventHandler | undefined; onFocusCapture?: React.FocusEventHandler | undefined; onBlur?: React.FocusEventHandler | undefined; onBlurCapture?: React.FocusEventHandler | undefined; onChange?: React.FormEventHandler | undefined; onChangeCapture?: React.FormEventHandler | undefined; onBeforeInput?: React.FormEventHandler | undefined; onBeforeInputCapture?: React.FormEventHandler | undefined; onInput?: React.FormEventHandler | undefined; onInputCapture?: React.FormEventHandler | undefined; onReset?: React.FormEventHandler | undefined; onResetCapture?: React.FormEventHandler | undefined; onSubmit?: React.FormEventHandler | undefined; onSubmitCapture?: React.FormEventHandler | undefined; onInvalid?: React.FormEventHandler | undefined; onInvalidCapture?: React.FormEventHandler | undefined; onLoad?: React.ReactEventHandler | undefined; onLoadCapture?: React.ReactEventHandler | undefined; onError?: React.ReactEventHandler | undefined; onErrorCapture?: React.ReactEventHandler | undefined; onKeyDown?: React.KeyboardEventHandler | undefined; onKeyDownCapture?: React.KeyboardEventHandler | undefined; onKeyPress?: React.KeyboardEventHandler | undefined; onKeyPressCapture?: React.KeyboardEventHandler | undefined; onKeyUp?: React.KeyboardEventHandler | undefined; onKeyUpCapture?: React.KeyboardEventHandler | undefined; onAbort?: React.ReactEventHandler | undefined; onAbortCapture?: React.ReactEventHandler | undefined; onCanPlay?: React.ReactEventHandler | undefined; onCanPlayCapture?: React.ReactEventHandler | undefined; onCanPlayThrough?: React.ReactEventHandler | undefined; onCanPlayThroughCapture?: React.ReactEventHandler | undefined; onDurationChange?: React.ReactEventHandler | undefined; onDurationChangeCapture?: React.ReactEventHandler | undefined; onEmptied?: React.ReactEventHandler | undefined; onEmptiedCapture?: React.ReactEventHandler | undefined; onEncrypted?: React.ReactEventHandler | undefined; onEncryptedCapture?: React.ReactEventHandler | undefined; onEnded?: React.ReactEventHandler | undefined; onEndedCapture?: React.ReactEventHandler | undefined; onLoadedData?: React.ReactEventHandler | undefined; onLoadedDataCapture?: React.ReactEventHandler | undefined; onLoadedMetadata?: React.ReactEventHandler | undefined; onLoadedMetadataCapture?: React.ReactEventHandler | undefined; onLoadStart?: React.ReactEventHandler | undefined; onLoadStartCapture?: React.ReactEventHandler | undefined; onPause?: React.ReactEventHandler | undefined; onPauseCapture?: React.ReactEventHandler | undefined; onPlay?: React.ReactEventHandler | undefined; onPlayCapture?: React.ReactEventHandler | undefined; onPlaying?: React.ReactEventHandler | undefined; onPlayingCapture?: React.ReactEventHandler | undefined; onProgress?: React.ReactEventHandler | undefined; onProgressCapture?: React.ReactEventHandler | undefined; onRateChange?: React.ReactEventHandler | undefined; onRateChangeCapture?: React.ReactEventHandler | undefined; onSeeked?: React.ReactEventHandler | undefined; onSeekedCapture?: React.ReactEventHandler | undefined; onSeeking?: React.ReactEventHandler | undefined; onSeekingCapture?: React.ReactEventHandler | undefined; onStalled?: React.ReactEventHandler | undefined; onStalledCapture?: React.ReactEventHandler | undefined; onSuspend?: React.ReactEventHandler | undefined; onSuspendCapture?: React.ReactEventHandler | undefined; onTimeUpdate?: React.ReactEventHandler | undefined; onTimeUpdateCapture?: React.ReactEventHandler | undefined; onVolumeChange?: React.ReactEventHandler | undefined; onVolumeChangeCapture?: React.ReactEventHandler | undefined; onWaiting?: React.ReactEventHandler | undefined; onWaitingCapture?: React.ReactEventHandler | undefined; onAuxClick?: React.MouseEventHandler | undefined; onAuxClickCapture?: React.MouseEventHandler | undefined; onClick?: React.MouseEventHandler | undefined; onClickCapture?: React.MouseEventHandler | undefined; onContextMenu?: React.MouseEventHandler | undefined; onContextMenuCapture?: React.MouseEventHandler | undefined; onDoubleClick?: React.MouseEventHandler | undefined; onDoubleClickCapture?: React.MouseEventHandler | undefined; onDrag?: React.DragEventHandler | undefined; onDragCapture?: React.DragEventHandler | undefined; onDragEnd?: React.DragEventHandler | undefined; onDragEndCapture?: React.DragEventHandler | undefined; onDragEnter?: React.DragEventHandler | undefined; onDragEnterCapture?: React.DragEventHandler | undefined; onDragExit?: React.DragEventHandler | undefined; onDragExitCapture?: React.DragEventHandler | undefined; onDragLeave?: React.DragEventHandler | undefined; onDragLeaveCapture?: React.DragEventHandler | undefined; onDragOver?: React.DragEventHandler | undefined; onDragOverCapture?: React.DragEventHandler | undefined; onDragStart?: React.DragEventHandler | undefined; onDragStartCapture?: React.DragEventHandler | undefined; onDrop?: React.DragEventHandler | undefined; onDropCapture?: React.DragEventHandler | undefined; onMouseDown?: React.MouseEventHandler | undefined; onMouseDownCapture?: React.MouseEventHandler | undefined; onMouseEnter?: React.MouseEventHandler | undefined; onMouseLeave?: React.MouseEventHandler | undefined; onMouseMove?: React.MouseEventHandler | undefined; onMouseMoveCapture?: React.MouseEventHandler | undefined; onMouseOut?: React.MouseEventHandler | undefined; onMouseOutCapture?: React.MouseEventHandler | undefined; onMouseOver?: React.MouseEventHandler | undefined; onMouseOverCapture?: React.MouseEventHandler | undefined; onMouseUp?: React.MouseEventHandler | undefined; onMouseUpCapture?: React.MouseEventHandler | undefined; onSelect?: React.ReactEventHandler | undefined; onSelectCapture?: React.ReactEventHandler | undefined; onTouchCancel?: React.TouchEventHandler | undefined; onTouchCancelCapture?: React.TouchEventHandler | undefined; onTouchEnd?: React.TouchEventHandler | undefined; onTouchEndCapture?: React.TouchEventHandler | undefined; onTouchMove?: React.TouchEventHandler | undefined; onTouchMoveCapture?: React.TouchEventHandler | undefined; onTouchStart?: React.TouchEventHandler | undefined; onTouchStartCapture?: React.TouchEventHandler | undefined; onPointerDown?: React.PointerEventHandler | undefined; onPointerDownCapture?: React.PointerEventHandler | undefined; onPointerMove?: React.PointerEventHandler | undefined; onPointerMoveCapture?: React.PointerEventHandler | undefined; onPointerUp?: React.PointerEventHandler | undefined; onPointerUpCapture?: React.PointerEventHandler | undefined; onPointerCancel?: React.PointerEventHandler | undefined; onPointerCancelCapture?: React.PointerEventHandler | undefined; onPointerEnter?: React.PointerEventHandler | undefined; onPointerEnterCapture?: React.PointerEventHandler | undefined; onPointerLeave?: React.PointerEventHandler | undefined; onPointerLeaveCapture?: React.PointerEventHandler | undefined; onPointerOver?: React.PointerEventHandler | undefined; onPointerOverCapture?: React.PointerEventHandler | undefined; onPointerOut?: React.PointerEventHandler | undefined; onPointerOutCapture?: React.PointerEventHandler | undefined; onGotPointerCapture?: React.PointerEventHandler | undefined; onGotPointerCaptureCapture?: React.PointerEventHandler | undefined; onLostPointerCapture?: React.PointerEventHandler | undefined; onLostPointerCaptureCapture?: React.PointerEventHandler | undefined; onScroll?: React.UIEventHandler | undefined; onScrollCapture?: React.UIEventHandler | undefined; onWheel?: React.WheelEventHandler | undefined; onWheelCapture?: React.WheelEventHandler | undefined; onAnimationStart?: React.AnimationEventHandler | undefined; onAnimationStartCapture?: React.AnimationEventHandler | undefined; onAnimationEnd?: React.AnimationEventHandler | undefined; onAnimationEndCapture?: React.AnimationEventHandler | undefined; onAnimationIteration?: React.AnimationEventHandler | undefined; onAnimationIterationCapture?: React.AnimationEventHandler | undefined; onTransitionEnd?: React.TransitionEventHandler | undefined; onTransitionEndCapture?: React.TransitionEventHandler | undefined; paddingSize?: \"m\" | \"none\" | \"s\" | \"xs\" | \"l\" | \"xl\" | undefined; href?: string | undefined; rel?: string | undefined; target?: string | undefined; icon?: React.ReactElement<", + ">; button?: React.ReactNode; footer?: React.ReactNode; image?: string | React.ReactElement> | undefined; href?: string | undefined; rel?: string | undefined; target?: string | undefined; icon?: React.ReactElement<", "EuiIconProps", - ", string | React.JSXElementConstructor> | null | undefined; display?: \"warning\" | \"success\" | \"subdued\" | \"primary\" | \"accent\" | \"danger\" | \"transparent\" | \"plain\" | undefined; hasBorder?: boolean | undefined; textAlign?: \"right\" | \"left\" | \"center\" | undefined; titleElement?: \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"span\" | undefined; titleSize?: \"s\" | \"xs\" | undefined; betaBadgeProps?: (", + ", string | React.JSXElementConstructor> | null | undefined; display?: \"warning\" | \"success\" | \"subdued\" | \"primary\" | \"accent\" | \"danger\" | \"transparent\" | \"plain\" | undefined; textAlign?: \"left\" | \"right\" | \"center\" | undefined; titleElement?: \"h2\" | \"h3\" | \"h4\" | \"h5\" | \"h6\" | \"p\" | \"span\" | undefined; titleSize?: \"s\" | \"xs\" | undefined; betaBadgeProps?: (", "CommonProps", " & ", "DisambiguateSet", diff --git a/api_docs/kbn_shared_ux_card_no_data.mdx b/api_docs/kbn_shared_ux_card_no_data.mdx index c68ef789fbdbb..6744cc7da9aa8 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-20 +date: 2023-04-21 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 695f2cff79895..604622664685d 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-20 +date: 2023-04-21 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 36ca2b6012f1a..2218b967c0672 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-20 +date: 2023-04-21 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 2353fe64e7fa5..961468e71949a 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-20 +date: 2023-04-21 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 41369b47d7695..f82ac77b98773 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-20 +date: 2023-04-21 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 7a2a7cd63a069..1ab3bafb4ee5f 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-20 +date: 2023-04-21 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 e38116a4c51f8..f48a321a34b54 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-20 +date: 2023-04-21 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 42a15ee900a51..cf77561da9e6e 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-20 +date: 2023-04-21 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 b26284ac14961..84e8d32366c10 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-20 +date: 2023-04-21 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 14ad06eaae562..d79e2ec066afd 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-20 +date: 2023-04-21 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 d92a08bcb9832..35763b229e400 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-20 +date: 2023-04-21 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 22627650e89bc..714f376ffb7c5 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-20 +date: 2023-04-21 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 321cd32d3a8d1..f4f56efd30485 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_shared_ux_markdown_mocks.devdocs.json index 8a44ef7777828..3595a96dd2846 100644 --- a/api_docs/kbn_shared_ux_markdown_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_markdown_mocks.devdocs.json @@ -433,13 +433,13 @@ "label": "getServices", "description": [], "signature": [ - "() => { prefix?: string | undefined; value?: string | undefined; id?: string | undefined; defaultValue?: string | number | readonly string[] | undefined; children?: React.ReactNode; errors?: ", - "EuiMarkdownParseError", - "[] | undefined; is?: string | undefined; title?: string | undefined; security?: string | undefined; slot?: string | undefined; style?: React.CSSProperties | undefined; className?: string | undefined; 'aria-label'?: string | undefined; 'data-test-subj'?: string | undefined; css?: ", + "() => { prefix?: string | undefined; value?: string | undefined; id?: string | undefined; defaultValue?: string | number | readonly string[] | undefined; children?: React.ReactNode; onChange?: ((value: string) => void) | undefined; defaultChecked?: boolean | undefined; suppressContentEditableWarning?: boolean | undefined; suppressHydrationWarning?: boolean | undefined; accessKey?: string | undefined; className?: string | undefined; contentEditable?: Booleanish | \"inherit\" | undefined; contextMenu?: string | undefined; dir?: string | undefined; draggable?: Booleanish | undefined; hidden?: boolean | undefined; lang?: string | undefined; placeholder?: string | undefined; slot?: string | undefined; spellCheck?: Booleanish | undefined; style?: React.CSSProperties | undefined; tabIndex?: number | undefined; title?: string | undefined; translate?: \"yes\" | \"no\" | undefined; radioGroup?: string | undefined; role?: React.AriaRole | undefined; about?: string | undefined; datatype?: string | undefined; inlist?: any; property?: string | undefined; resource?: string | undefined; typeof?: string | undefined; vocab?: string | undefined; autoCapitalize?: string | undefined; autoCorrect?: string | undefined; autoSave?: string | undefined; color?: string | undefined; itemProp?: string | undefined; itemScope?: boolean | undefined; itemType?: string | undefined; itemID?: string | undefined; itemRef?: string | undefined; results?: number | undefined; security?: string | undefined; unselectable?: \"on\" | \"off\" | undefined; inputMode?: \"search\" | \"none\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\" | undefined; is?: string | undefined; 'aria-activedescendant'?: string | undefined; 'aria-atomic'?: Booleanish | undefined; 'aria-autocomplete'?: \"none\" | \"list\" | \"inline\" | \"both\" | undefined; 'aria-busy'?: Booleanish | undefined; 'aria-checked'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-colcount'?: number | undefined; 'aria-colindex'?: number | undefined; 'aria-colspan'?: number | undefined; 'aria-controls'?: string | undefined; 'aria-current'?: boolean | \"page\" | \"date\" | \"time\" | \"true\" | \"false\" | \"step\" | \"location\" | undefined; 'aria-describedby'?: string | undefined; 'aria-details'?: string | undefined; 'aria-disabled'?: Booleanish | undefined; 'aria-dropeffect'?: \"execute\" | \"link\" | \"none\" | \"copy\" | \"move\" | \"popup\" | undefined; 'aria-errormessage'?: string | undefined; 'aria-expanded'?: Booleanish | undefined; 'aria-flowto'?: string | undefined; 'aria-grabbed'?: Booleanish | undefined; 'aria-haspopup'?: boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\" | undefined; 'aria-hidden'?: Booleanish | undefined; 'aria-invalid'?: boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\" | undefined; 'aria-keyshortcuts'?: string | undefined; 'aria-label'?: string | undefined; 'aria-labelledby'?: string | undefined; 'aria-level'?: number | undefined; 'aria-live'?: \"off\" | \"assertive\" | \"polite\" | undefined; 'aria-modal'?: Booleanish | undefined; 'aria-multiline'?: Booleanish | undefined; 'aria-multiselectable'?: Booleanish | undefined; 'aria-orientation'?: \"horizontal\" | \"vertical\" | undefined; 'aria-owns'?: string | undefined; 'aria-placeholder'?: string | undefined; 'aria-posinset'?: number | undefined; 'aria-pressed'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-readonly'?: Booleanish | undefined; 'aria-relevant'?: \"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\" | undefined; 'aria-required'?: Booleanish | undefined; 'aria-roledescription'?: string | undefined; 'aria-rowcount'?: number | undefined; 'aria-rowindex'?: number | undefined; 'aria-rowspan'?: number | undefined; 'aria-selected'?: Booleanish | undefined; 'aria-setsize'?: number | undefined; 'aria-sort'?: \"none\" | \"ascending\" | \"descending\" | \"other\" | undefined; 'aria-valuemax'?: number | undefined; 'aria-valuemin'?: number | undefined; 'aria-valuenow'?: number | undefined; 'aria-valuetext'?: string | undefined; dangerouslySetInnerHTML?: { __html: string; } | undefined; onCopy?: React.ClipboardEventHandler | undefined; onCopyCapture?: React.ClipboardEventHandler | undefined; onCut?: React.ClipboardEventHandler | undefined; onCutCapture?: React.ClipboardEventHandler | undefined; onPaste?: React.ClipboardEventHandler | undefined; onPasteCapture?: React.ClipboardEventHandler | undefined; onCompositionEnd?: React.CompositionEventHandler | undefined; onCompositionEndCapture?: React.CompositionEventHandler | undefined; onCompositionStart?: React.CompositionEventHandler | undefined; onCompositionStartCapture?: React.CompositionEventHandler | undefined; onCompositionUpdate?: React.CompositionEventHandler | undefined; onCompositionUpdateCapture?: React.CompositionEventHandler | undefined; onFocus?: React.FocusEventHandler | undefined; onFocusCapture?: React.FocusEventHandler | undefined; onBlur?: React.FocusEventHandler | undefined; onBlurCapture?: React.FocusEventHandler | undefined; onChangeCapture?: React.FormEventHandler | undefined; onBeforeInput?: React.FormEventHandler | undefined; onBeforeInputCapture?: React.FormEventHandler | undefined; onInput?: React.FormEventHandler | undefined; onInputCapture?: React.FormEventHandler | undefined; onReset?: React.FormEventHandler | undefined; onResetCapture?: React.FormEventHandler | undefined; onSubmit?: React.FormEventHandler | undefined; onSubmitCapture?: React.FormEventHandler | undefined; onInvalid?: React.FormEventHandler | undefined; onInvalidCapture?: React.FormEventHandler | undefined; onLoad?: React.ReactEventHandler | undefined; onLoadCapture?: React.ReactEventHandler | undefined; onError?: React.ReactEventHandler | undefined; onErrorCapture?: React.ReactEventHandler | undefined; onKeyDown?: React.KeyboardEventHandler | undefined; onKeyDownCapture?: React.KeyboardEventHandler | undefined; onKeyPress?: React.KeyboardEventHandler | undefined; onKeyPressCapture?: React.KeyboardEventHandler | undefined; onKeyUp?: React.KeyboardEventHandler | undefined; onKeyUpCapture?: React.KeyboardEventHandler | undefined; onAbort?: React.ReactEventHandler | undefined; onAbortCapture?: React.ReactEventHandler | undefined; onCanPlay?: React.ReactEventHandler | undefined; onCanPlayCapture?: React.ReactEventHandler | undefined; onCanPlayThrough?: React.ReactEventHandler | undefined; onCanPlayThroughCapture?: React.ReactEventHandler | undefined; onDurationChange?: React.ReactEventHandler | undefined; onDurationChangeCapture?: React.ReactEventHandler | undefined; onEmptied?: React.ReactEventHandler | undefined; onEmptiedCapture?: React.ReactEventHandler | undefined; onEncrypted?: React.ReactEventHandler | undefined; onEncryptedCapture?: React.ReactEventHandler | undefined; onEnded?: React.ReactEventHandler | undefined; onEndedCapture?: React.ReactEventHandler | undefined; onLoadedData?: React.ReactEventHandler | undefined; onLoadedDataCapture?: React.ReactEventHandler | undefined; onLoadedMetadata?: React.ReactEventHandler | undefined; onLoadedMetadataCapture?: React.ReactEventHandler | undefined; onLoadStart?: React.ReactEventHandler | undefined; onLoadStartCapture?: React.ReactEventHandler | undefined; onPause?: React.ReactEventHandler | undefined; onPauseCapture?: React.ReactEventHandler | undefined; onPlay?: React.ReactEventHandler | undefined; onPlayCapture?: React.ReactEventHandler | undefined; onPlaying?: React.ReactEventHandler | undefined; onPlayingCapture?: React.ReactEventHandler | undefined; onProgress?: React.ReactEventHandler | undefined; onProgressCapture?: React.ReactEventHandler | undefined; onRateChange?: React.ReactEventHandler | undefined; onRateChangeCapture?: React.ReactEventHandler | undefined; onSeeked?: React.ReactEventHandler | undefined; onSeekedCapture?: React.ReactEventHandler | undefined; onSeeking?: React.ReactEventHandler | undefined; onSeekingCapture?: React.ReactEventHandler | undefined; onStalled?: React.ReactEventHandler | undefined; onStalledCapture?: React.ReactEventHandler | undefined; onSuspend?: React.ReactEventHandler | undefined; onSuspendCapture?: React.ReactEventHandler | undefined; onTimeUpdate?: React.ReactEventHandler | undefined; onTimeUpdateCapture?: React.ReactEventHandler | undefined; onVolumeChange?: React.ReactEventHandler | undefined; onVolumeChangeCapture?: React.ReactEventHandler | undefined; onWaiting?: React.ReactEventHandler | undefined; onWaitingCapture?: React.ReactEventHandler | undefined; onAuxClick?: React.MouseEventHandler | undefined; onAuxClickCapture?: React.MouseEventHandler | undefined; onClick?: React.MouseEventHandler | undefined; onClickCapture?: React.MouseEventHandler | undefined; onContextMenu?: React.MouseEventHandler | undefined; onContextMenuCapture?: React.MouseEventHandler | undefined; onDoubleClick?: React.MouseEventHandler | undefined; onDoubleClickCapture?: React.MouseEventHandler | undefined; onDrag?: React.DragEventHandler | undefined; onDragCapture?: React.DragEventHandler | undefined; onDragEnd?: React.DragEventHandler | undefined; onDragEndCapture?: React.DragEventHandler | undefined; onDragEnter?: React.DragEventHandler | undefined; onDragEnterCapture?: React.DragEventHandler | undefined; onDragExit?: React.DragEventHandler | undefined; onDragExitCapture?: React.DragEventHandler | undefined; onDragLeave?: React.DragEventHandler | undefined; onDragLeaveCapture?: React.DragEventHandler | undefined; onDragOver?: React.DragEventHandler | undefined; onDragOverCapture?: React.DragEventHandler | undefined; onDragStart?: React.DragEventHandler | undefined; onDragStartCapture?: React.DragEventHandler | undefined; onDrop?: React.DragEventHandler | undefined; onDropCapture?: React.DragEventHandler | undefined; onMouseDown?: React.MouseEventHandler | undefined; onMouseDownCapture?: React.MouseEventHandler | undefined; onMouseEnter?: React.MouseEventHandler | undefined; onMouseLeave?: React.MouseEventHandler | undefined; onMouseMove?: React.MouseEventHandler | undefined; onMouseMoveCapture?: React.MouseEventHandler | undefined; onMouseOut?: React.MouseEventHandler | undefined; onMouseOutCapture?: React.MouseEventHandler | undefined; onMouseOver?: React.MouseEventHandler | undefined; onMouseOverCapture?: React.MouseEventHandler | undefined; onMouseUp?: React.MouseEventHandler | undefined; onMouseUpCapture?: React.MouseEventHandler | undefined; onSelect?: React.ReactEventHandler | undefined; onSelectCapture?: React.ReactEventHandler | undefined; onTouchCancel?: React.TouchEventHandler | undefined; onTouchCancelCapture?: React.TouchEventHandler | undefined; onTouchEnd?: React.TouchEventHandler | undefined; onTouchEndCapture?: React.TouchEventHandler | undefined; onTouchMove?: React.TouchEventHandler | undefined; onTouchMoveCapture?: React.TouchEventHandler | undefined; onTouchStart?: React.TouchEventHandler | undefined; onTouchStartCapture?: React.TouchEventHandler | undefined; onPointerDown?: React.PointerEventHandler | undefined; onPointerDownCapture?: React.PointerEventHandler | undefined; onPointerMove?: React.PointerEventHandler | undefined; onPointerMoveCapture?: React.PointerEventHandler | undefined; onPointerUp?: React.PointerEventHandler | undefined; onPointerUpCapture?: React.PointerEventHandler | undefined; onPointerCancel?: React.PointerEventHandler | undefined; onPointerCancelCapture?: React.PointerEventHandler | undefined; onPointerEnter?: React.PointerEventHandler | undefined; onPointerEnterCapture?: React.PointerEventHandler | undefined; onPointerLeave?: React.PointerEventHandler | undefined; onPointerLeaveCapture?: React.PointerEventHandler | undefined; onPointerOver?: React.PointerEventHandler | undefined; onPointerOverCapture?: React.PointerEventHandler | undefined; onPointerOut?: React.PointerEventHandler | undefined; onPointerOutCapture?: React.PointerEventHandler | undefined; onGotPointerCapture?: React.PointerEventHandler | undefined; onGotPointerCaptureCapture?: React.PointerEventHandler | undefined; onLostPointerCapture?: React.PointerEventHandler | undefined; onLostPointerCaptureCapture?: React.PointerEventHandler | undefined; onScroll?: React.UIEventHandler | undefined; onScrollCapture?: React.UIEventHandler | undefined; onWheel?: React.WheelEventHandler | undefined; onWheelCapture?: React.WheelEventHandler | undefined; onAnimationStart?: React.AnimationEventHandler | undefined; onAnimationStartCapture?: React.AnimationEventHandler | undefined; onAnimationEnd?: React.AnimationEventHandler | undefined; onAnimationEndCapture?: React.AnimationEventHandler | undefined; onAnimationIteration?: React.AnimationEventHandler | undefined; onAnimationIterationCapture?: React.AnimationEventHandler | undefined; onTransitionEnd?: React.TransitionEventHandler | undefined; onTransitionEndCapture?: React.TransitionEventHandler | undefined; 'data-test-subj'?: string | undefined; css?: ", "Interpolation", "<", "Theme", - ">; defaultChecked?: boolean | undefined; suppressContentEditableWarning?: boolean | undefined; suppressHydrationWarning?: boolean | undefined; accessKey?: string | undefined; contentEditable?: Booleanish | \"inherit\" | undefined; contextMenu?: string | undefined; dir?: string | undefined; draggable?: Booleanish | undefined; hidden?: boolean | undefined; lang?: string | undefined; placeholder?: string | undefined; spellCheck?: Booleanish | undefined; tabIndex?: number | undefined; translate?: \"yes\" | \"no\" | undefined; radioGroup?: string | undefined; role?: React.AriaRole | undefined; about?: string | undefined; datatype?: string | undefined; inlist?: any; property?: string | undefined; resource?: string | undefined; typeof?: string | undefined; vocab?: string | undefined; autoCapitalize?: string | undefined; autoCorrect?: string | undefined; autoSave?: string | undefined; color?: string | undefined; itemProp?: string | undefined; itemScope?: boolean | undefined; itemType?: string | undefined; itemID?: string | undefined; itemRef?: string | undefined; results?: number | undefined; unselectable?: \"on\" | \"off\" | undefined; inputMode?: \"search\" | \"none\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\" | undefined; 'aria-activedescendant'?: string | undefined; 'aria-atomic'?: Booleanish | undefined; 'aria-autocomplete'?: \"none\" | \"list\" | \"inline\" | \"both\" | undefined; 'aria-busy'?: Booleanish | undefined; 'aria-checked'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-colcount'?: number | undefined; 'aria-colindex'?: number | undefined; 'aria-colspan'?: number | undefined; 'aria-controls'?: string | undefined; 'aria-current'?: boolean | \"page\" | \"date\" | \"time\" | \"true\" | \"false\" | \"step\" | \"location\" | undefined; 'aria-describedby'?: string | undefined; 'aria-details'?: string | undefined; 'aria-disabled'?: Booleanish | undefined; 'aria-dropeffect'?: \"execute\" | \"link\" | \"none\" | \"copy\" | \"move\" | \"popup\" | undefined; 'aria-errormessage'?: string | undefined; 'aria-expanded'?: Booleanish | undefined; 'aria-flowto'?: string | undefined; 'aria-grabbed'?: Booleanish | undefined; 'aria-haspopup'?: boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\" | undefined; 'aria-hidden'?: Booleanish | undefined; 'aria-invalid'?: boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\" | undefined; 'aria-keyshortcuts'?: string | undefined; 'aria-labelledby'?: string | undefined; 'aria-level'?: number | undefined; 'aria-live'?: \"off\" | \"assertive\" | \"polite\" | undefined; 'aria-modal'?: Booleanish | undefined; 'aria-multiline'?: Booleanish | undefined; 'aria-multiselectable'?: Booleanish | undefined; 'aria-orientation'?: \"horizontal\" | \"vertical\" | undefined; 'aria-owns'?: string | undefined; 'aria-placeholder'?: string | undefined; 'aria-posinset'?: number | undefined; 'aria-pressed'?: boolean | \"true\" | \"false\" | \"mixed\" | undefined; 'aria-readonly'?: Booleanish | undefined; 'aria-relevant'?: \"text\" | \"all\" | \"additions\" | \"additions removals\" | \"additions text\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\" | undefined; 'aria-required'?: Booleanish | undefined; 'aria-roledescription'?: string | undefined; 'aria-rowcount'?: number | undefined; 'aria-rowindex'?: number | undefined; 'aria-rowspan'?: number | undefined; 'aria-selected'?: Booleanish | undefined; 'aria-setsize'?: number | undefined; 'aria-sort'?: \"none\" | \"ascending\" | \"descending\" | \"other\" | undefined; 'aria-valuemax'?: number | undefined; 'aria-valuemin'?: number | undefined; 'aria-valuenow'?: number | undefined; 'aria-valuetext'?: string | undefined; dangerouslySetInnerHTML?: { __html: string; } | undefined; onCopy?: React.ClipboardEventHandler | undefined; onCopyCapture?: React.ClipboardEventHandler | undefined; onCut?: React.ClipboardEventHandler | undefined; onCutCapture?: React.ClipboardEventHandler | undefined; onPaste?: React.ClipboardEventHandler | undefined; onPasteCapture?: React.ClipboardEventHandler | undefined; onCompositionEnd?: React.CompositionEventHandler | undefined; onCompositionEndCapture?: React.CompositionEventHandler | undefined; onCompositionStart?: React.CompositionEventHandler | undefined; onCompositionStartCapture?: React.CompositionEventHandler | undefined; onCompositionUpdate?: React.CompositionEventHandler | undefined; onCompositionUpdateCapture?: React.CompositionEventHandler | undefined; onFocus?: React.FocusEventHandler | undefined; onFocusCapture?: React.FocusEventHandler | undefined; onBlur?: React.FocusEventHandler | undefined; onBlurCapture?: React.FocusEventHandler | undefined; onChange?: ((value: string) => void) | undefined; onChangeCapture?: React.FormEventHandler | undefined; onBeforeInput?: React.FormEventHandler | undefined; onBeforeInputCapture?: React.FormEventHandler | undefined; onInput?: React.FormEventHandler | undefined; onInputCapture?: React.FormEventHandler | undefined; onReset?: React.FormEventHandler | undefined; onResetCapture?: React.FormEventHandler | undefined; onSubmit?: React.FormEventHandler | undefined; onSubmitCapture?: React.FormEventHandler | undefined; onInvalid?: React.FormEventHandler | undefined; onInvalidCapture?: React.FormEventHandler | undefined; onLoad?: React.ReactEventHandler | undefined; onLoadCapture?: React.ReactEventHandler | undefined; onError?: React.ReactEventHandler | undefined; onErrorCapture?: React.ReactEventHandler | undefined; onKeyDown?: React.KeyboardEventHandler | undefined; onKeyDownCapture?: React.KeyboardEventHandler | undefined; onKeyPress?: React.KeyboardEventHandler | undefined; onKeyPressCapture?: React.KeyboardEventHandler | undefined; onKeyUp?: React.KeyboardEventHandler | undefined; onKeyUpCapture?: React.KeyboardEventHandler | undefined; onAbort?: React.ReactEventHandler | undefined; onAbortCapture?: React.ReactEventHandler | undefined; onCanPlay?: React.ReactEventHandler | undefined; onCanPlayCapture?: React.ReactEventHandler | undefined; onCanPlayThrough?: React.ReactEventHandler | undefined; onCanPlayThroughCapture?: React.ReactEventHandler | undefined; onDurationChange?: React.ReactEventHandler | undefined; onDurationChangeCapture?: React.ReactEventHandler | undefined; onEmptied?: React.ReactEventHandler | undefined; onEmptiedCapture?: React.ReactEventHandler | undefined; onEncrypted?: React.ReactEventHandler | undefined; onEncryptedCapture?: React.ReactEventHandler | undefined; onEnded?: React.ReactEventHandler | undefined; onEndedCapture?: React.ReactEventHandler | undefined; onLoadedData?: React.ReactEventHandler | undefined; onLoadedDataCapture?: React.ReactEventHandler | undefined; onLoadedMetadata?: React.ReactEventHandler | undefined; onLoadedMetadataCapture?: React.ReactEventHandler | undefined; onLoadStart?: React.ReactEventHandler | undefined; onLoadStartCapture?: React.ReactEventHandler | undefined; onPause?: React.ReactEventHandler | undefined; onPauseCapture?: React.ReactEventHandler | undefined; onPlay?: React.ReactEventHandler | undefined; onPlayCapture?: React.ReactEventHandler | undefined; onPlaying?: React.ReactEventHandler | undefined; onPlayingCapture?: React.ReactEventHandler | undefined; onProgress?: React.ReactEventHandler | undefined; onProgressCapture?: React.ReactEventHandler | undefined; onRateChange?: React.ReactEventHandler | undefined; onRateChangeCapture?: React.ReactEventHandler | undefined; onSeeked?: React.ReactEventHandler | undefined; onSeekedCapture?: React.ReactEventHandler | undefined; onSeeking?: React.ReactEventHandler | undefined; onSeekingCapture?: React.ReactEventHandler | undefined; onStalled?: React.ReactEventHandler | undefined; onStalledCapture?: React.ReactEventHandler | undefined; onSuspend?: React.ReactEventHandler | undefined; onSuspendCapture?: React.ReactEventHandler | undefined; onTimeUpdate?: React.ReactEventHandler | undefined; onTimeUpdateCapture?: React.ReactEventHandler | undefined; onVolumeChange?: React.ReactEventHandler | undefined; onVolumeChangeCapture?: React.ReactEventHandler | undefined; onWaiting?: React.ReactEventHandler | undefined; onWaitingCapture?: React.ReactEventHandler | undefined; onAuxClick?: React.MouseEventHandler | undefined; onAuxClickCapture?: React.MouseEventHandler | undefined; onClick?: React.MouseEventHandler | undefined; onClickCapture?: React.MouseEventHandler | undefined; onContextMenu?: React.MouseEventHandler | undefined; onContextMenuCapture?: React.MouseEventHandler | undefined; onDoubleClick?: React.MouseEventHandler | undefined; onDoubleClickCapture?: React.MouseEventHandler | undefined; onDrag?: React.DragEventHandler | undefined; onDragCapture?: React.DragEventHandler | undefined; onDragEnd?: React.DragEventHandler | undefined; onDragEndCapture?: React.DragEventHandler | undefined; onDragEnter?: React.DragEventHandler | undefined; onDragEnterCapture?: React.DragEventHandler | undefined; onDragExit?: React.DragEventHandler | undefined; onDragExitCapture?: React.DragEventHandler | undefined; onDragLeave?: React.DragEventHandler | undefined; onDragLeaveCapture?: React.DragEventHandler | undefined; onDragOver?: React.DragEventHandler | undefined; onDragOverCapture?: React.DragEventHandler | undefined; onDragStart?: React.DragEventHandler | undefined; onDragStartCapture?: React.DragEventHandler | undefined; onDrop?: React.DragEventHandler | undefined; onDropCapture?: React.DragEventHandler | undefined; onMouseDown?: React.MouseEventHandler | undefined; onMouseDownCapture?: React.MouseEventHandler | undefined; onMouseEnter?: React.MouseEventHandler | undefined; onMouseLeave?: React.MouseEventHandler | undefined; onMouseMove?: React.MouseEventHandler | undefined; onMouseMoveCapture?: React.MouseEventHandler | undefined; onMouseOut?: React.MouseEventHandler | undefined; onMouseOutCapture?: React.MouseEventHandler | undefined; onMouseOver?: React.MouseEventHandler | undefined; onMouseOverCapture?: React.MouseEventHandler | undefined; onMouseUp?: React.MouseEventHandler | undefined; onMouseUpCapture?: React.MouseEventHandler | undefined; onSelect?: React.ReactEventHandler | undefined; onSelectCapture?: React.ReactEventHandler | undefined; onTouchCancel?: React.TouchEventHandler | undefined; onTouchCancelCapture?: React.TouchEventHandler | undefined; onTouchEnd?: React.TouchEventHandler | undefined; onTouchEndCapture?: React.TouchEventHandler | undefined; onTouchMove?: React.TouchEventHandler | undefined; onTouchMoveCapture?: React.TouchEventHandler | undefined; onTouchStart?: React.TouchEventHandler | undefined; onTouchStartCapture?: React.TouchEventHandler | undefined; onPointerDown?: React.PointerEventHandler | undefined; onPointerDownCapture?: React.PointerEventHandler | undefined; onPointerMove?: React.PointerEventHandler | undefined; onPointerMoveCapture?: React.PointerEventHandler | undefined; onPointerUp?: React.PointerEventHandler | undefined; onPointerUpCapture?: React.PointerEventHandler | undefined; onPointerCancel?: React.PointerEventHandler | undefined; onPointerCancelCapture?: React.PointerEventHandler | undefined; onPointerEnter?: React.PointerEventHandler | undefined; onPointerEnterCapture?: React.PointerEventHandler | undefined; onPointerLeave?: React.PointerEventHandler | undefined; onPointerLeaveCapture?: React.PointerEventHandler | undefined; onPointerOver?: React.PointerEventHandler | undefined; onPointerOverCapture?: React.PointerEventHandler | undefined; onPointerOut?: React.PointerEventHandler | undefined; onPointerOutCapture?: React.PointerEventHandler | undefined; onGotPointerCapture?: React.PointerEventHandler | undefined; onGotPointerCaptureCapture?: React.PointerEventHandler | undefined; onLostPointerCapture?: React.PointerEventHandler | undefined; onLostPointerCaptureCapture?: React.PointerEventHandler | undefined; onScroll?: React.UIEventHandler | undefined; onScrollCapture?: React.UIEventHandler | undefined; onWheel?: React.WheelEventHandler | undefined; onWheelCapture?: React.WheelEventHandler | undefined; onAnimationStart?: React.AnimationEventHandler | undefined; onAnimationStartCapture?: React.AnimationEventHandler | undefined; onAnimationEnd?: React.AnimationEventHandler | undefined; onAnimationEndCapture?: React.AnimationEventHandler | undefined; onAnimationIteration?: React.AnimationEventHandler | undefined; onAnimationIterationCapture?: React.AnimationEventHandler | undefined; onTransitionEnd?: React.TransitionEventHandler | undefined; onTransitionEndCapture?: React.TransitionEventHandler | undefined; height?: number | \"full\" | undefined; readOnly: boolean; maxHeight?: number | undefined; autoExpandPreview?: boolean | undefined; parsingPluginList?: ", + ">; errors?: ", + "EuiMarkdownParseError", + "[] | undefined; height?: number | \"full\" | undefined; readOnly: boolean; maxHeight?: number | undefined; autoExpandPreview?: boolean | undefined; parsingPluginList?: ", "PluggableList", "<", "Settings", diff --git a/api_docs/kbn_shared_ux_markdown_mocks.mdx b/api_docs/kbn_shared_ux_markdown_mocks.mdx index 4d9ba562a688a..5d46068526cc8 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-20 +date: 2023-04-21 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 f31c06cdcefe1..a703893f75dec 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-20 +date: 2023-04-21 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 4be5cf0a56ee1..c6146d86359c0 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-20 +date: 2023-04-21 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 168413e262671..2fc62d3203dab 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-20 +date: 2023-04-21 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 524c1ff746967..e4a702e9d4de6 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-20 +date: 2023-04-21 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 55fa2b0ae3b15..0281befb594ed 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-20 +date: 2023-04-21 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 ed670cabe25e8..bc4addd3208ad 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-20 +date: 2023-04-21 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 96243a193177f..0144374aab4fb 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-20 +date: 2023-04-21 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 044721d260078..da46bad1d78e5 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-20 +date: 2023-04-21 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 74808ff365570..4681ccfbf18d8 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-20 +date: 2023-04-21 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 83e1e1473ce12..ac7fbb18cee1d 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-20 +date: 2023-04-21 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 aaa935152d277..c5f2135a7e18e 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-20 +date: 2023-04-21 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 26de1039527e6..90f8c67503a8a 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-20 +date: 2023-04-21 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 f3e00b73a9714..0c4bc9ae73323 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-20 +date: 2023-04-21 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 b11967841a90e..da5e9ae1eb9a1 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-20 +date: 2023-04-21 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 434c920814f46..aa816570472a8 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-20 +date: 2023-04-21 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 a5a61a8c5c9fe..135cdbf742f31 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-20 +date: 2023-04-21 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 5157cc5fa9273..9ca85a30f64b6 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-20 +date: 2023-04-21 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 399a594d4755b..ce99698fd9f1b 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-20 +date: 2023-04-21 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 b4fe6a2f4e57d..0e8f337108e82 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-20 +date: 2023-04-21 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 e2f98d7df5a53..97a606deb5c99 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-20 +date: 2023-04-21 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 ca0b3b3b89180..d1a8eebc6a352 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-20 +date: 2023-04-21 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 797a5224e6422..0217dc9a965db 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-20 +date: 2023-04-21 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 e3b72f32afd1c..b4b67a76d6345 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-20 +date: 2023-04-21 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 69ca75f1b1a7b..fd6b8221cc8fd 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-20 +date: 2023-04-21 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 c22a72bacd8e7..a2a8c3a870b1a 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-20 +date: 2023-04-21 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 cb320fb09998e..245f8573362f4 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-20 +date: 2023-04-21 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 4d7893ebac23c..7c8dcb3038c28 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-20 +date: 2023-04-21 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 0438a884bb668..f4a6b85e91f0c 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-20 +date: 2023-04-21 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 601a95786408a..2da057aa80b43 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-20 +date: 2023-04-21 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 96c4e09406920..efa271163a527 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-20 +date: 2023-04-21 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 414ac3451f9d8..e36f3796a6a55 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-20 +date: 2023-04-21 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 00176fb3bf00e..3cd1a6aef2f77 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-20 +date: 2023-04-21 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 bf12be46d108e..11107207bbef6 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-20 +date: 2023-04-21 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 ad80982ad1262..a6c35e39c2b54 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-20 +date: 2023-04-21 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.devdocs.json b/api_docs/kbn_user_profile_components.devdocs.json index f75915d1917f0..bbc4c86988e45 100644 --- a/api_docs/kbn_user_profile_components.devdocs.json +++ b/api_docs/kbn_user_profile_components.devdocs.json @@ -719,7 +719,7 @@ }, "
    ); 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 2869d8d7da321..7c73eccff12eb 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 @@ -13,6 +13,7 @@ import { LATEST_VULNERABILITIES_INDEX_PATTERN } from '../../../../common/constan import { useKibana } from '../../../common/hooks/use_kibana'; import { showErrorToast } from '../../../common/utils/show_error_toast'; import { MAX_FINDINGS_TO_LOAD } from '../../../common/constants'; +import { FindingsBaseEsQuery } from '../../../common/types'; type LatestFindingsRequest = IKibanaSearchRequest; type LatestFindingsResponse = IKibanaSearchResponse>; @@ -20,14 +21,35 @@ interface FindingsAggs { count: estypes.AggregationsMultiBucketAggregateBase; } -export const getFindingsQuery = ({ query, sort }: any) => ({ +interface VulnerabilitiesQuery extends FindingsBaseEsQuery { + sort: estypes.Sort; + enabled: boolean; +} + +export const getFindingsQuery = ({ query, sort }: VulnerabilitiesQuery) => ({ index: LATEST_VULNERABILITIES_INDEX_PATTERN, - query, + query: { + ...query, + bool: { + ...query?.bool, + filter: [ + ...(query?.bool?.filter || []), + { exists: { field: 'vulnerability.score.base' } }, + { exists: { field: 'vulnerability.score.version' } }, + { exists: { field: 'resource.name' } }, + { match_phrase: { 'vulnerability.enumeration': 'CVE' } }, + ], + must_not: [ + ...(query?.bool?.must_not || []), + { match_phrase: { 'vulnerability.severity': 'UNKNOWN' } }, + ], + }, + }, size: MAX_FINDINGS_TO_LOAD, sort, }); -export const useLatestVulnerabilities = (options: any) => { +export const useLatestVulnerabilities = (options: VulnerabilitiesQuery) => { const { data, notifications: { toasts }, diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/translations.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/translations.ts new file mode 100644 index 0000000000000..b2c0ca0ca8366 --- /dev/null +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/translations.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 { i18n } from '@kbn/i18n'; + +export const FILTER_IN = i18n.translate('xpack.csp.vulnerabilities.table.filterIn', { + defaultMessage: 'Filter in', +}); +export const FILTER_OUT = i18n.translate('xpack.csp.vulnerabilities.table.filterOut', { + defaultMessage: 'Filter out', +}); +export const SEARCH_BAR_PLACEHOLDER = i18n.translate( + 'xpack.csp.vulnerabilities.searchBar.placeholder', + { + defaultMessage: 'Search vulnerabilities (eg. vulnerability.severity : "CRITICAL" )', + } +); +export const VULNERABILITIES = i18n.translate('xpack.csp.vulnerabilities', { + defaultMessage: 'Vulnerabilities', +}); diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/types.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/types.ts index 8f01271677321..8d5d267f8135c 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/types.ts +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/types.ts @@ -77,10 +77,9 @@ export interface VulnerabilityRecord { } export interface Vulnerability { - published_at: string; + published_date: string; score: { version: string; - impact: number; base: number; }; cwe: string[]; diff --git a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_filters.ts b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_filters.ts new file mode 100644 index 0000000000000..7f7d9ff544c62 --- /dev/null +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/get_filters.ts @@ -0,0 +1,65 @@ +/* + * 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 Filter, + buildFilter, + FILTERS, + FilterStateStore, + compareFilters, + FilterCompareOptions, +} from '@kbn/es-query'; +import type { Serializable } from '@kbn/utility-types'; +import type { FindingsBaseProps } from '../../../common/types'; + +const compareOptions: FilterCompareOptions = { + negate: false, +}; + +/** + * adds a new filter to a new filters array + * removes existing filter if negated filter is added + * + * @returns {Filter[]} a new array of filters to be added back to filterManager + */ +export const getFilters = ({ + filters: existingFilters, + dataView, + field, + value, + negate, +}: { + filters: Filter[]; + dataView: FindingsBaseProps['dataView']; + field: string; + value: Serializable; + negate: boolean; +}): Filter[] => { + const dataViewField = dataView.fields.find((f) => f.spec.name === field); + if (!dataViewField) return existingFilters; + + const phraseFilter = buildFilter( + dataView, + dataViewField, + FILTERS.PHRASE, + negate, + false, + value, + null, + FilterStateStore.APP_STATE + ); + + const nextFilters = [ + ...existingFilters.filter( + // Exclude existing filters that match the newly added 'phraseFilter' + (filter) => !compareFilters(filter, phraseFilter, compareOptions) + ), + phraseFilter, + ]; + + return nextFilters; +}; 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/index.ts similarity index 91% rename from x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils.ts rename to x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/index.ts index 1e330a00b4fcf..0f7a3b6f1477b 100644 --- a/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils.ts +++ b/x-pack/plugins/cloud_security_posture/public/pages/vulnerabilities/utils/index.ts @@ -5,7 +5,7 @@ * 2.0. */ -import { VectorScoreBase, Vector } from './types'; +import { VectorScoreBase, Vector } from '../types'; export const getVectorScoreList = (vectorBaseScore: VectorScoreBase) => { const result: Vector[] = []; @@ -24,7 +24,7 @@ export const getVectorScoreList = (vectorBaseScore: VectorScoreBase) => { if (v3Vector) { result.push({ - version: '2.0', + version: '3.0', vector: v3Vector, score: v3Score, }); 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 bc54dd08f5126..22142a5818731 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,8 +9,10 @@ import { EuiButtonIcon, EuiDataGrid, EuiDataGridCellValueElementProps, + EuiDataGridColumnCellAction, EuiProgress, EuiSpacer, + EuiToolTip, useEuiTheme, } from '@elastic/eui'; import { css } from '@emotion/react'; @@ -37,6 +39,8 @@ import { vulnerabilitiesColumns, } from './vulnerabilities_table_columns'; import { defaultLoadingRenderer, defaultNoDataRenderer } from '../../components/cloud_posture_page'; +import { getFilters } from './utils/get_filters'; +import { FILTER_IN, FILTER_OUT, SEARCH_BAR_PLACEHOLDER, VULNERABILITIES } from './translations'; const getDefaultQuery = ({ query, filters }: any): any => ({ query, @@ -77,6 +81,7 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { onSort, setUrlQuery, onResetFilters, + urlQuery, } = useCloudPostureTable({ dataView, defaultQuery: getDefaultQuery, @@ -118,8 +123,87 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { }); const columns = useMemo(() => { - return getVulnerabilitiesColumnsGrid(); - }, []); + const getColumnIdValue = (rowIndex: number, columnId: string) => { + const vulnerabilityRow = data?.page[rowIndex] as VulnerabilityRecord; + if (columnId === vulnerabilitiesColumns.vulnerability) { + return vulnerabilityRow.vulnerability.id; + } + if (columnId === vulnerabilitiesColumns.cvss) { + return vulnerabilityRow.vulnerability.score.base; + } + if (columnId === vulnerabilitiesColumns.resource) { + return vulnerabilityRow.resource?.name; + } + if (columnId === vulnerabilitiesColumns.severity) { + return vulnerabilityRow.vulnerability.severity; + } + if (columnId === vulnerabilitiesColumns.package_version) { + return vulnerabilityRow.vulnerability?.package?.name; + } + if (columnId === vulnerabilitiesColumns.fix_version) { + return vulnerabilityRow.vulnerability.package?.fixed_version; + } + }; + + const cellActions: EuiDataGridColumnCellAction[] = [ + ({ Component, rowIndex, columnId }) => { + const value = getColumnIdValue(rowIndex, columnId); + + if (!value) return null; + return ( + + { + setUrlQuery({ + pageIndex: 0, + filters: getFilters({ + filters: urlQuery.filters, + dataView, + field: columnId, + value, + negate: false, + }), + }); + }} + > + {FILTER_IN} + + + ); + }, + ({ Component, rowIndex, columnId }) => { + const value = getColumnIdValue(rowIndex, columnId); + + if (!value) return null; + return ( + + { + setUrlQuery({ + pageIndex: 0, + filters: getFilters({ + filters: urlQuery.filters, + dataView, + field: columnId, + value: getColumnIdValue(rowIndex, columnId), + negate: true, + }), + }); + }} + > + {FILTER_OUT} + + + ); + }, + ]; + + return getVulnerabilitiesColumnsGrid(cellActions); + }, [data?.page, dataView, setUrlQuery, urlQuery.filters]); const renderCellValue = useMemo(() => { return ({ rowIndex, columnId }: EuiDataGridCellValueElementProps) => { @@ -176,10 +260,13 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { ); } if (columnId === vulnerabilitiesColumns.fix_version) { + if (!vulnerabilityRow.vulnerability.package?.fixed_version) { + return null; + } return ( <> {vulnerabilityRow.vulnerability.package?.name}{' '} - {vulnerabilityRow.vulnerability.package?.fixed_version} + {vulnerabilityRow.vulnerability.package.fixed_version} ); } @@ -207,6 +294,7 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { setUrlQuery({ ...newQuery, pageIndex: 0 }); }} loading={isLoading} + placeholder={SEARCH_BAR_PLACEHOLDER} /> {!isLoading && data.page.length === 0 ? ( @@ -236,8 +324,16 @@ const VulnerabilitiesContent = ({ dataView }: { dataView: DataView }) => { & .euiDataGridRowCell { font-size: ${euiTheme.size.m}; } + & + .euiDataGridRowCell__expandActions + > [data-test-subj='euiDataGridCellExpandButton'] { + display: none; + } + & .euiDataGridRowCell__expandFlex { + align-items: center; + } `} - aria-label="Data grid styling demo" + aria-label={VULNERABILITIES} columns={columns} columnVisibility={{ visibleColumns: columns.map(({ id }) => id), 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 547bec3c9b173..89a1232540a0d 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 @@ -114,11 +114,11 @@ const VulnerabilityOverviewTiles = ({ vulnerability }: VulnerabilityTabProps) => margin-bottom: 6px; `; - const date = moment(vulnerability?.published_at).format('LL').toString(); + const date = moment(vulnerability?.published_date).format('LL').toString(); return ( - {vulnerability?.score?.version && vulnerability?.score?.impact && ( + {vulnerability?.score?.version && vulnerability?.score?.base && (
    - +
    )} 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 index 88a6a8e569c80..bfa23ac440cd6 100644 --- 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 @@ -5,7 +5,7 @@ * 2.0. */ -import { EuiDataGridColumn } from '@elastic/eui'; +import { EuiDataGridColumn, EuiDataGridColumnCellAction } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; export const vulnerabilitiesColumns = { @@ -27,7 +27,9 @@ const defaultColumnProps = () => ({ }, }); -export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ +export const getVulnerabilitiesColumnsGrid = ( + cellActions: EuiDataGridColumnCellAction[] +): EuiDataGridColumn[] => [ { ...defaultColumnProps(), id: vulnerabilitiesColumns.actions, @@ -36,6 +38,7 @@ export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ actions: false, isSortable: false, isResizable: false, + cellActions: [], }, { ...defaultColumnProps(), @@ -43,15 +46,16 @@ export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.vulnerability', { defaultMessage: 'Vulnerability', }), - initialWidth: 150, - isResizable: false, + initialWidth: 130, + cellActions, }, { ...defaultColumnProps(), id: vulnerabilitiesColumns.cvss, displayAsText: 'CVSS', - initialWidth: 84, + initialWidth: 80, isResizable: false, + cellActions, }, { ...defaultColumnProps(), @@ -59,6 +63,7 @@ export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.resource', { defaultMessage: 'Resource', }), + cellActions, }, { ...defaultColumnProps(), @@ -67,6 +72,7 @@ export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ defaultMessage: 'Severity', }), initialWidth: 100, + cellActions, }, { ...defaultColumnProps(), @@ -74,6 +80,7 @@ export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.packageAndVersion', { defaultMessage: 'Package and Version', }), + cellActions, }, { ...defaultColumnProps(), @@ -81,5 +88,6 @@ export const getVulnerabilitiesColumnsGrid = (): EuiDataGridColumn[] => [ displayAsText: i18n.translate('xpack.csp.vulnerabilityTable.column.fixVersion', { defaultMessage: 'Fix Version', }), + cellActions, }, ];