[8.10] [Profiling] Adding automated tests (#164276) (#164839)

# Backport

This will backport the following commits from `main` to `8.10`:
- [[Profiling] Adding automated tests
(#164276)](https://github.com/elastic/kibana/pull/164276)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Cauê
Marcondes","email":"55978943+cauemarcondes@users.noreply.github.com"},"sourceCommit":{"committedDate":"2023-08-25T13:09:18Z","message":"[Profiling]
Adding automated tests (#164276)\n\n- Functions page e2e test\r\n-
Differential Functions page e2e
test","sha":"0b4adc868781b6af7a8b5a6ebd5d44fd5c3d5d8b","branchLabelMapping":{"^v8.11.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:fix","v8.10.0","v8.11.0"],"number":164276,"url":"https://github.com/elastic/kibana/pull/164276","mergeCommit":{"message":"[Profiling]
Adding automated tests (#164276)\n\n- Functions page e2e test\r\n-
Differential Functions page e2e
test","sha":"0b4adc868781b6af7a8b5a6ebd5d44fd5c3d5d8b"}},"sourceBranch":"main","suggestedTargetBranches":["8.10"],"targetPullRequestStates":[{"branch":"8.10","label":"v8.10.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.11.0","labelRegex":"^v8.11.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/164276","number":164276,"mergeCommit":{"message":"[Profiling]
Adding automated tests (#164276)\n\n- Functions page e2e test\r\n-
Differential Functions page e2e
test","sha":"0b4adc868781b6af7a8b5a6ebd5d44fd5c3d5d8b"}}]}] BACKPORT-->

Co-authored-by: Cauê Marcondes <55978943+cauemarcondes@users.noreply.github.com>
This commit is contained in:
Kibana Machine 2023-08-25 10:26:04 -04:00 committed by GitHub
parent 58b63b381f
commit c861e5b533
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 27118 additions and 33070 deletions

View file

@ -0,0 +1,220 @@
/*
* Copyright 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.
*/
describe('Differential Functions page', () => {
const rangeFrom = '2023-04-18T00:00:00.000Z';
const rangeTo = '2023-04-18T00:00:30.000Z';
const comparisonRangeFrom = '2023-04-18T00:01:00.000Z';
const comparisonRangeTo = '2023-04-18T00:01:30.000Z';
beforeEach(() => {
cy.loginAsElastic();
});
it('opens differential page', () => {
cy.visitKibana('/app/profiling/functions/differential', { rangeFrom, rangeTo });
cy.contains('Baseline functions');
cy.contains('Comparison functions');
});
describe('summary', () => {
it('shows only the baseline values when comparison data is not available', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions/differential', { rangeFrom, rangeTo });
// wait for both apis to finisto move on
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
[
{ id: 'overallPerformance', value: '0%' },
{ id: 'annualizedCo2', value: '33.79 lbs / 15.33 kg' },
{ id: 'annualizedCost', value: '$318.32' },
{ id: 'totalNumberOfSamples', value: '513' },
].forEach((item) => {
cy.get(`[data-test-subj="${item.id}_value"]`).contains(item.value);
cy.get(`[data-test-subj="${item.id}_comparison_value"]`).should('not.exist');
});
});
it('shows empty baseline values when data is not available', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions/differential', {
comparisonRangeFrom: rangeFrom,
comparisonRangeTo: rangeTo,
});
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
[
{ id: 'overallPerformance', value: '0%' },
{ id: 'annualizedCo2', value: '0 lbs / 0 kg', comparisonValue: '33.79 lbs / 15.33 kg' },
{ id: 'annualizedCost', value: '$0', comparisonValue: '$318.32' },
{ id: 'totalNumberOfSamples', value: '0', comparisonValue: '15,390' },
].forEach((item) => {
cy.get(`[data-test-subj="${item.id}_value"]`).contains(item.value);
if (item.comparisonValue) {
cy.get(`[data-test-subj="${item.id}_comparison_value"]`).contains(item.comparisonValue);
}
});
});
it('show gained performance when comparison data has less samples than baseline', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions/differential', {
rangeFrom,
rangeTo,
comparisonRangeFrom,
comparisonRangeTo,
});
// wait for both apis to finisto move on
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
[
{ id: 'overallPerformance', value: '65.89%', icon: 'sortUp_success' },
{
id: 'annualizedCo2',
value: '33.79 lbs / 15.33 kg',
comparisonValue: '11.53 lbs / 5.23 kg (65.89%)',
icon: 'comparison_sortUp_success',
},
{
id: 'annualizedCost',
value: '$318.32',
comparisonValue: '$108.59 (65.89%)',
icon: 'comparison_sortUp_success',
},
{
id: 'totalNumberOfSamples',
value: '513',
comparisonValue: '175 (65.89%)',
icon: 'comparison_sortUp_success',
},
].forEach((item) => {
cy.get(`[data-test-subj="${item.id}_value"]`).contains(item.value);
cy.get(`[data-test-subj="${item.id}_${item.icon}"]`).should('exist');
if (item.comparisonValue) {
cy.get(`[data-test-subj="${item.id}_comparison_value"]`).contains(item.comparisonValue);
}
});
});
it('show lost performance when comparison data has more samples than baseline', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions/differential', {
rangeFrom: comparisonRangeFrom,
rangeTo: comparisonRangeTo,
comparisonRangeFrom: rangeFrom,
comparisonRangeTo: rangeTo,
});
// wait for both apis to finisto move on
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
[
{ id: 'overallPerformance', value: '193.14%', icon: 'sortDown_danger' },
{
id: 'annualizedCo2',
value: '11.53 lbs / 5.23 kg',
comparisonValue: '33.79 lbs / 15.33 kg (193.14%)',
icon: 'comparison_sortDown_danger',
},
{
id: 'annualizedCost',
value: '$108.59',
comparisonValue: '$318.32 (193.14%)',
icon: 'comparison_sortDown_danger',
},
{
id: 'totalNumberOfSamples',
value: '175',
comparisonValue: '513 (193.14%)',
icon: 'comparison_sortDown_danger',
},
].forEach((item) => {
cy.get(`[data-test-subj="${item.id}_value"]`).contains(item.value);
cy.get(`[data-test-subj="${item.id}_${item.icon}"]`).should('exist');
if (item.comparisonValue) {
cy.get(`[data-test-subj="${item.id}_comparison_value"]`).contains(item.comparisonValue);
}
});
});
it('show empty summary when no data is availble', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions/differential');
// wait for both apis to finisto move on
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
[
{ id: 'overallPerformance', value: '0%' },
{ id: 'annualizedCo2', value: '0 lbs / 0 kg' },
{ id: 'annualizedCost', value: '$0' },
{ id: 'totalNumberOfSamples', value: '0' },
].forEach((item) => {
cy.get(`[data-test-subj="${item.id}_value"]`).contains(item.value);
cy.get(`[data-test-subj="${item.id}_comparison_value"]`).should('not.exist');
});
});
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions/differential', {
rangeFrom: comparisonRangeFrom,
rangeTo: comparisonRangeTo,
comparisonRangeFrom: rangeFrom,
comparisonRangeTo: rangeTo,
});
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
cy.get('[data-test-subj="topNFunctionsGrid"] .euiDataGridRow').should('have.length.gt', 1);
cy.get('[data-test-subj="TopNFunctionsComparisonGrid"] .euiDataGridRow').should(
'have.length.gt',
1
);
cy.addKqlFilter({
key: 'process.thread.name',
value: '108795321966692',
});
cy.addKqlFilter({
key: 'Stacktrace.id',
value: '-7DvnP1mizQYw8mIIpgbMg',
dataTestSubj: 'profilingComparisonUnifiedSearchBar',
});
cy.wait('@getTopNFunctions');
cy.wait('@getTopNFunctions');
cy.get('[data-test-subj="topNFunctionsGrid"] .euiDataGridRow').should('have.length', 2);
cy.get('[data-test-subj="TopNFunctionsComparisonGrid"] .euiDataGridRow').should(
'have.length',
1
);
[
{ id: 'overallPerformance', value: '50.00%', icon: 'sortUp_success' },
{
id: 'annualizedCo2',
value: '0.13 lbs / 0.06 kg',
comparisonValue: '0.07 lbs / 0.03 kg (50.00%)',
icon: 'comparison_sortUp_success',
},
{
id: 'annualizedCost',
value: '$1.24',
comparisonValue: '$0.62 (50.00%)',
icon: 'comparison_sortUp_success',
},
{
id: 'totalNumberOfSamples',
value: '2',
comparisonValue: '1 (50.00%)',
icon: 'comparison_sortUp_success',
},
].forEach((item) => {
cy.get(`[data-test-subj="${item.id}_value"]`).contains(item.value);
cy.get(`[data-test-subj="${item.id}_${item.icon}"]`).should('exist');
if (item.comparisonValue) {
cy.get(`[data-test-subj="${item.id}_comparison_value"]`).contains(item.comparisonValue);
}
});
});
});
});

View file

@ -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.
*/
describe('Functions page', () => {
const rangeFrom = '2023-04-18T00:00:00.000Z';
const rangeTo = '2023-04-18T00:00:30.000Z';
beforeEach(() => {
cy.loginAsElastic();
});
it('opens /topN page when navigating to /functions page', () => {
cy.visitKibana('/app/profiling/functions', { rangeFrom, rangeTo });
cy.url().should('include', '/app/profiling/functions/topn');
});
it('shows TopN functions and Differential TopN functions', () => {
cy.visitKibana('/app/profiling/functions', { rangeFrom, rangeTo });
cy.contains('TopN functions');
cy.contains('Differential TopN functions');
});
it('validates values in the table', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions', { rangeFrom, rangeTo });
cy.wait('@getTopNFunctions');
const firstRowSelector = '[data-grid-row-index="0"] [data-test-subj="dataGridRowCell"]';
cy.get(firstRowSelector).eq(1).contains('1');
cy.get(firstRowSelector).eq(2).contains('vmlinux');
cy.get(firstRowSelector).eq(3).contains('5.46%');
cy.get(firstRowSelector).eq(4).contains('5.46%');
cy.get(firstRowSelector).eq(5).contains('1.84 lbs / 0.84 kg');
cy.get(firstRowSelector).eq(6).contains('$17.37');
cy.get(firstRowSelector).eq(7).contains('28');
});
it('shows function details when action button is clicked on the table ', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions', { rangeFrom, rangeTo });
cy.wait('@getTopNFunctions');
const firstRowSelector =
'[data-grid-row-index="0"] [data-test-subj="dataGridRowCell"] .euiButtonIcon';
cy.get(firstRowSelector).click();
cy.contains('Frame information');
cy.contains('Impact estimates');
[
{ parentKey: 'informationRows', key: 'executable', value: 'vmlinux' },
{ parentKey: 'informationRows', key: 'function', value: 'N/A' },
{ parentKey: 'informationRows', key: 'sourceFile', value: 'N/A' },
{ parentKey: 'impactEstimates', key: 'totalCPU', value: '5.46%' },
{ parentKey: 'impactEstimates', key: 'selfCPU', value: '5.46%' },
{ parentKey: 'impactEstimates', key: 'samples', value: '28' },
{ parentKey: 'impactEstimates', key: 'selfSamples', value: '28' },
{ parentKey: 'impactEstimates', key: 'coreSeconds', value: '1.4 seconds' },
{ parentKey: 'impactEstimates', key: 'selfCoreSeconds', value: '1.4 seconds' },
{ parentKey: 'impactEstimates', key: 'annualizedCoreSeconds', value: '17.03 days' },
{ parentKey: 'impactEstimates', key: 'annualizedSelfCoreSeconds', value: '17.03 days' },
{ parentKey: 'impactEstimates', key: 'co2Emission', value: '~0.00 lbs / ~0.00 kg' },
{ parentKey: 'impactEstimates', key: 'selfCo2Emission', value: '~0.00 lbs / ~0.00 kg' },
{ parentKey: 'impactEstimates', key: 'annualizedCo2Emission', value: '1.84 lbs / 0.84 kg' },
{
parentKey: 'impactEstimates',
key: 'annualizedSelfCo2Emission',
value: '1.84 lbs / 0.84 kg',
},
{ parentKey: 'impactEstimates', key: 'dollarCost', value: '$~0.00' },
{ parentKey: 'impactEstimates', key: 'selfDollarCost', value: '$~0.00' },
{ parentKey: 'impactEstimates', key: 'annualizedDollarCost', value: '$17.37' },
{ parentKey: 'impactEstimates', key: 'annualizedSelfDollarCost', value: '$17.37' },
].forEach(({ parentKey, key, value }) => {
cy.get(`[data-test-subj="${parentKey}_${key}"]`).contains(value);
});
});
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/functions?*').as('getTopNFunctions');
cy.visitKibana('/app/profiling/functions', { rangeFrom, rangeTo });
cy.wait('@getTopNFunctions');
cy.get('.euiDataGridRow').should('have.length.gt', 1);
cy.addKqlFilter({ key: 'Stacktrace.id', value: '-7DvnP1mizQYw8mIIpgbMg' });
cy.wait('@getTopNFunctions');
cy.get('.euiDataGridRow').should('have.length', 1);
const firstRowSelector = '[data-grid-row-index="0"] [data-test-subj="dataGridRowCell"]';
cy.get(firstRowSelector).eq(2).contains('libjvm.so');
});
});

View file

@ -11,16 +11,16 @@
* 2.0.
*/
const start = '2023-03-17T01:00:00.000Z';
const end = '2023-03-17T01:05:00.000Z';
describe('Home page', () => {
const rangeFrom = '2023-04-18T00:00:00.000Z';
const rangeTo = '2023-04-18T00:05:00.000Z';
beforeEach(() => {
cy.loginAsElastic();
});
it('navigates through the tabs', () => {
cy.visitKibana('/app/profiling', start, end);
cy.visitKibana('/app/profiling', { rangeFrom, rangeTo });
cy.url().should('include', '/app/profiling/stacktraces/threads');
cy.get('[role="tablist"]').within(() => {
cy.contains('Traces').click();

View file

@ -0,0 +1,139 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
describe('Stacktraces page', () => {
const rangeFrom = '2023-04-18T00:00:00.000Z';
const rangeTo = '2023-04-18T00:05:00.000Z';
beforeEach(() => {
cy.loginAsElastic();
});
it('Persists kql filter when navigating between tabs', () => {
cy.intercept('GET', '/internal/profiling/topn/threads?*').as('getThreads');
cy.visitKibana('/app/profiling/stacktraces/threads', { rangeFrom, rangeTo });
cy.wait('@getThreads');
cy.addKqlFilter({
key: 'Stacktrace.id',
value: '-7DvnP1mizQYw8mIIpgbMg',
});
const kueryInUrl = 'kuery=Stacktrace.id%20%3A%20%22-7DvnP1mizQYw8mIIpgbMg%22';
cy.url().should('include', kueryInUrl);
cy.get('[data-test-subj="profilingPageTemplate"]').contains('Traces').click();
cy.url().should('include', kueryInUrl);
cy.get('[data-test-subj="profilingPageTemplate"]').contains('Hosts').click();
cy.url().should('include', kueryInUrl);
cy.get('[data-test-subj="profilingPageTemplate"]').contains('Deployments').click();
cy.url().should('include', kueryInUrl);
cy.get('[data-test-subj="profilingPageTemplate"]').contains('Containers').click();
cy.url().should('include', kueryInUrl);
});
describe('Threads', () => {
it('Navigates to the Traces tab when clicking on an item', () => {
cy.intercept('GET', '/internal/profiling/topn/threads?*').as('getThreads');
cy.intercept('GET', '/internal/profiling/topn/traces?*').as('getTraces');
cy.visitKibana('/app/profiling/stacktraces/threads', { rangeFrom, rangeTo });
cy.wait('@getThreads');
cy.contains('66687612094024').click();
cy.wait('@getTraces');
cy.url().should(
'include',
'/stacktraces/traces?displayAs=stackTraces&kuery=process.thread.name%3A%2266687612094024%22'
);
});
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/threads?*').as('getThreads');
cy.visitKibana('/app/profiling/stacktraces/threads', { rangeFrom, rangeTo });
cy.wait('@getThreads');
cy.contains('Top 46');
cy.addKqlFilter({ key: 'process.thread.name', value: '66687612094024' });
cy.contains('Top 1');
});
});
describe('Traces', () => {
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/traces?*').as('getTraces');
cy.visitKibana('/app/profiling/stacktraces/traces', { rangeFrom, rangeTo });
cy.wait('@getTraces');
cy.contains('Top 100');
cy.addKqlFilter({ key: 'Stacktrace.id', value: '-7DvnP1mizQYw8mIIpgbMg' });
cy.contains('Top 1');
});
it('opens flyout when clicking on an item', () => {
cy.intercept('GET', '/internal/profiling/topn/traces?*').as('getTraces');
cy.visitKibana('/app/profiling/stacktraces/traces', { rangeFrom, rangeTo });
cy.wait('@getTraces');
cy.contains('Top 100');
cy.get('.euiFlyout').should('not.exist');
cy.contains('oVuo4Odmf-MdkPEKxNJxdQ').click();
cy.get('.euiFlyout').should('exist');
});
});
describe('Hosts', () => {
it('Navigates to the Traces tab when clicking on an item', () => {
cy.intercept('GET', '/internal/profiling/topn/hosts?*').as('getHosts');
cy.intercept('GET', '/internal/profiling/topn/traces?*').as('getTraces');
cy.visitKibana('/app/profiling/stacktraces/hosts', { rangeFrom, rangeTo });
cy.wait('@getHosts');
cy.contains('ip-192-168-1-2').click();
cy.wait('@getTraces');
cy.url().should(
'include',
'/stacktraces/traces?displayAs=stackTraces&kuery=host.id%3A%228457605156473051743%22'
);
});
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/hosts?*').as('getHosts');
cy.visitKibana('/app/profiling/stacktraces/hosts', { rangeFrom, rangeTo });
cy.wait('@getHosts');
cy.contains('Top 1');
cy.addKqlFilter({ key: 'process.thread.name', value: 'foo', waitForSuggestion: false });
cy.contains('Top 0');
});
});
describe('Deployments', () => {
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/deployments?*').as('getDeployments');
cy.visitKibana('/app/profiling/stacktraces/deployments', { rangeFrom, rangeTo });
cy.wait('@getDeployments');
cy.contains('Top 1');
cy.addKqlFilter({ key: 'process.thread.name', value: 'foo', waitForSuggestion: false });
cy.contains('Top 0');
});
});
describe('Containers', () => {
it('Navigates to the Traces tab when clicking on an item', () => {
cy.intercept('GET', '/internal/profiling/topn/containers?*').as('getContainer');
cy.intercept('GET', '/internal/profiling/topn/traces?*').as('getTraces');
cy.visitKibana('/app/profiling/stacktraces/containers', { rangeFrom, rangeTo });
cy.wait('@getContainer');
cy.contains('instance-0000000010').click();
cy.wait('@getTraces');
cy.url().should(
'include',
'/stacktraces/traces?displayAs=stackTraces&kuery=container.name%3A%22instance-0000000010%22'
);
});
it('adds kql filter', () => {
cy.intercept('GET', '/internal/profiling/topn/containers?*').as('getContainer');
cy.visitKibana('/app/profiling/stacktraces/containers', { rangeFrom, rangeTo });
cy.wait('@getContainer');
cy.contains('Top 1');
cy.addKqlFilter({ key: 'process.thread.name', value: 'foo', waitForSuggestion: false });
cy.contains('Top 0');
});
});
});

View file

@ -0,0 +1,116 @@
/*
* Copyright 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.
*/
describe('Storage explorer page', () => {
const rangeFrom = '2023-04-18T00:00:00.000Z';
const rangeTo = '2023-04-18T00:05:00.000Z';
beforeEach(() => {
cy.loginAsElastic();
});
it('does not show warning for distinct probabilistic profiling values found', () => {
cy.intercept('GET', '/internal/profiling/storage_explorer/summary?*').as('summary');
cy.visitKibana('/app/profiling/storage-explorer', {
rangeFrom: '2023-08-08T18:00:00.000Z',
rangeTo: '2023-08-08T20:00:00.000Z',
});
cy.contains('Storage Explorer');
cy.wait('@summary');
cy.contains(
"We've identified 2 distinct probabilistic profiling values. Make sure to update them."
).should('not.exist');
});
it('shows warning for distinct probabilistic profiling values found', () => {
cy.intercept('GET', '/internal/profiling/storage_explorer/summary?*', {
fixture: 'storage_explorer_summary.json',
}).as('summary');
cy.visitKibana('/app/profiling/storage-explorer', {
rangeFrom: '2023-08-08T18:00:00.000Z',
rangeTo: '2023-08-08T20:00:00.000Z',
});
cy.contains('Storage Explorer');
cy.wait('@summary');
cy.contains(
"We've identified 2 distinct probabilistic profiling values. Make sure to update them."
);
});
describe('Host agent breakdown', () => {
it('displays host agent details', () => {
cy.intercept('GET', '/internal/profiling/storage_explorer/host_storage_details?*').as(
'hostDetails'
);
cy.visitKibana('/app/profiling/storage-explorer', { rangeFrom, rangeTo });
cy.contains('Storage Explorer');
cy.wait('@hostDetails');
const firstRowSelector = 'table > tbody .euiTableRowCell';
cy.get(firstRowSelector).eq(0).get('.euiTableCellContent__text').contains('3145700');
cy.get('[data-test-subj="hostId_8457605156473051743"]').contains('[8457605156473051743]');
cy.get('[data-test-subj="hostId_8457605156473051743"]').should(
'have.attr',
'href',
'/app/profiling/flamegraphs/flamegraph?kuery=host.id%3A%20%228457605156473051743%22&rangeFrom=2023-04-18T00%3A00%3A00.000Z&rangeTo=2023-04-18T00%3A05%3A00.000Z'
);
});
});
describe('Data breakdown', () => {
it('displays correct values per index', () => {
cy.intercept('GET', '/internal/profiling/storage_explorer/indices_storage_details?*').as(
'indicesDetails'
);
cy.visitKibana('/app/profiling/storage-explorer', { rangeFrom, rangeTo });
cy.contains('Storage Explorer');
cy.contains('Data breakdown').click();
cy.wait('@indicesDetails');
[
{ indexName: 'stackframes', docSize: '7,616' },
{ indexName: 'stacktraces', docSize: '2,217' },
{ indexName: 'executables', docSize: '85' },
{ indexName: 'metrics', docSize: '0' },
{ indexName: 'events', docSize: '3,242' },
].forEach(({ indexName, docSize }) => {
cy.get(`[data-test-subj="${indexName}_docSize"]`).contains(docSize);
});
});
it('displays top 10 indices in the table', () => {
cy.intercept('GET', '/internal/profiling/storage_explorer/indices_storage_details?*').as(
'indicesDetails'
);
cy.visitKibana('/app/profiling/storage-explorer', { rangeFrom, rangeTo });
cy.contains('Storage Explorer');
cy.contains('Data breakdown').click();
cy.wait('@indicesDetails');
cy.get('table > tbody tr.euiTableRow').should('have.length', 10);
});
it('displays a chart with percentage of each index', () => {
cy.intercept('GET', '/internal/profiling/storage_explorer/indices_storage_details?*').as(
'indicesDetails'
);
cy.visitKibana('/app/profiling/storage-explorer', { rangeFrom, rangeTo });
cy.contains('Storage Explorer');
cy.contains('Data breakdown').click();
cy.wait('@indicesDetails');
const indices = [
{ index: 'Stackframes', perc: '32%' },
{ index: 'Samples', perc: '15%' },
{ index: 'Executables', perc: '1%' },
{ index: 'Metrics', perc: '0%' },
{ index: 'Stacktraces', perc: '52%' },
];
cy.get('.echChartPointerContainer table tbody tr').each(($row, idx) => {
cy.wrap($row).find('th').contains(indices[idx].index);
cy.wrap($row).find('td').contains(indices[idx].perc);
});
});
});
});

View file

@ -0,0 +1,8 @@
{
"totalProfilingSizeBytes": 3042204,
"totalSymbolsSizeBytes": 644588,
"diskSpaceUsedPct": 0.0000030585286387140013,
"totalNumberOfDistinctProbabilisticValues": 2,
"totalNumberOfHosts": 1,
"dailyDataGenerationBytes": 8601.25
}

View file

@ -42,10 +42,10 @@ Cypress.Commands.add('getByTestSubj', (selector: string) => {
return cy.get(`[data-test-subj="${selector}"]`);
});
Cypress.Commands.add('visitKibana', (url: string, rangeFrom?: string, rangeTo?: string) => {
Cypress.Commands.add('visitKibana', (url, query) => {
const urlPath = URL.format({
pathname: url,
query: { rangeFrom, rangeTo },
query,
});
cy.visit(urlPath);
@ -54,3 +54,20 @@ Cypress.Commands.add('visitKibana', (url: string, rangeFrom?: string, rangeTo?:
timeout: 50000,
});
});
Cypress.Commands.add(
'addKqlFilter',
({ key, value, dataTestSubj = 'profilingUnifiedSearchBar', waitForSuggestion = true }) => {
cy.getByTestSubj(dataTestSubj).type(key);
cy.contains(key);
cy.getByTestSubj(`autocompleteSuggestion-field-${key}-`).click();
// Do not close quotes here as it will not display the suggestion box
cy.getByTestSubj(dataTestSubj).type(`: "${value}`);
if (waitForSuggestion) {
cy.getByTestSubj(
Cypress.$.escapeSelector(`autocompleteSuggestion-value-"${value}"-`)
).click();
}
cy.getByTestSubj(dataTestSubj).type('{enter}');
}
);

View file

@ -13,6 +13,19 @@ declare namespace Cypress {
}): Cypress.Chainable<Cypress.Response<any>>;
loginAsElastic(): Cypress.Chainable<Cypress.Response<any>>;
getByTestSubj(selector: string): Chainable<JQuery<Element>>;
visitKibana(url: string, rangeFrom?: string, rangeTo?: string): void;
visitKibana(
url: string,
query?: {
rangeFrom?: string;
rangeTo?: string;
[key: string]: string | undefined;
}
): void;
addKqlFilter(params: {
key: string;
value: string;
dataTestSubj?: 'profilingUnifiedSearchBar' | 'profilingComparisonUnifiedSearchBar';
waitForSuggestion?: boolean;
}): void;
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,278 +0,0 @@
{"create": {"_index": "profiling-events-5pow02", "_id": "RtYU7YYBBkbVtX3nuwHT"}}
{"Stacktrace.count": [1], "service.name": ["3145700"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "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"}

View file

@ -1,42 +0,0 @@
{"create": {"_index": "profiling-events-5pow03", "_id": "r2YV7YYBO2e_P_QbtW5b"}}
{"Stacktrace.count": [1], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"}

View file

@ -1,8 +0,0 @@
{"create": {"_index": "profiling-events-5pow04", "_id": "5GYV7YYBO2e_P_QbaTSA"}}
{"Stacktrace.count": [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"], "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"], "os.kernel": "9.9.9-0", "tags": ["environment: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"], "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"}

View file

@ -1,2 +0,0 @@
{"create": {"_index": "profiling-events-5pow05", "_id": "xdcW7YYBBkbVtX3nz_hr"}}
{"Stacktrace.count": [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"}

View file

@ -1,2 +0,0 @@
{"create": {"_index": "profiling-events-5pow06", "_id": "m-EW7YYByh-A-Biyz7fk"}}
{"Stacktrace.count": [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"}

View file

@ -1,176 +0,0 @@
{"create": {"_index": "profiling-executables", "_id": "Fuiq0RN8VMfwSLHsA6DzhA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "c52b0055d6c5b32b0561ffe7c25b40eba4aec3c2"}, "file": {"name": "Fuiq0RN8VMfwSLHsA6DzhA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "BkWkPRvktqhDDhVdutdfuA"}}
{"@timestamp": "1677456000", "Executable": {"build": {"id": ""}, "file": {"name": "BkWkPRvktqhDDhVdutdfuA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "cEvvhuguaGYCmGWrnWRz1Q"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "7ce3ef6b0c6c2c687b4c6643596171dc03569610"}, "file": {"name": "cEvvhuguaGYCmGWrnWRz1Q"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "UJmIMEc6K8gJ39NHYaD0Ww"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "f7307432a8b162377e77a182b6cc2e53d771ec4b"}, "file": {"name": "UJmIMEc6K8gJ39NHYaD0Ww"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "I-7FSPUFvGFUkGA6jlppyw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "I-7FSPUFvGFUkGA6jlppyw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "3aS07d9PG4lc4UzuBbVWzQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "9470e279388f7f9cb2ed3b2872d0c2095b191ff4"}, "file": {"name": "3aS07d9PG4lc4UzuBbVWzQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "HWXbCIJWwuTsAgHvMObKpw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "HWXbCIJWwuTsAgHvMObKpw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "J6SM8hBvw5MHsxqbsEPRPw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "86572322482a3b3b84e96e9afb9f76bd886ae8c9"}, "file": {"name": "J6SM8hBvw5MHsxqbsEPRPw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "2HVF-fC6bGu1PSwJc2kzOg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "ec302b318786ec3830d9c27d96c6a45ebc496bf5"}, "file": {"name": "2HVF-fC6bGu1PSwJc2kzOg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "bzrt0cDU6UPpwGohqCueZw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "bzrt0cDU6UPpwGohqCueZw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Fe-1yupiO-DRoVp2Fo11nQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "Fe-1yupiO-DRoVp2Fo11nQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "1gXEZRnAPQTspGOB36fnyQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "c3e565680f4f33fdfabce12db4b079ccab4700f1"}, "file": {"name": "1gXEZRnAPQTspGOB36fnyQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "SZxl-YF9wOaedogsBMtvRA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "995a3b33b7fc4a1d9f13f380a4342f45f55f1390"}, "file": {"name": "SZxl-YF9wOaedogsBMtvRA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "634wiWh6F21tPpXr0Zz3mg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "9fdb74e7b217d06c93172a8243f8547f947ee6d1"}, "file": {"name": "634wiWh6F21tPpXr0Zz3mg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "_x4aKgh_XJ5-w5YMGr9j7g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "abc2fdc38635eae448da9df55f8d57e7345eb12b"}, "file": {"name": "_x4aKgh_XJ5-w5YMGr9j7g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "EM1xxPB-70RIIw82DzybBg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "d7ab172bb790dd2f74b40c6a7f3c42004a696c59"}, "file": {"name": "EM1xxPB-70RIIw82DzybBg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "JD-mlhc2khMaMvypB7uCow"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "6663632b2e6ec778bd4b6a4ac4f8069fc59abdeb"}, "file": {"name": "JD-mlhc2khMaMvypB7uCow"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "eJ7BYIhIN72fM2Cz8k8m9Q"}}
{"@timestamp": "1678060800", "Executable": {"build": {"id": "cf6d86cf965b129ec9dfdcd756741e43233684ab"}, "file": {"name": "eJ7BYIhIN72fM2Cz8k8m9Q"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "ogCgWMgT5mMAMhpNA0IMiQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "d78066a9c36f5fd63e2f6ac851ae3515c4c9792a"}, "file": {"name": "ogCgWMgT5mMAMhpNA0IMiQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "CHB6oSdNIPFu3CdR74BZKQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "84da8693eb3e8bb2e3a72811e577c71ff5a7be10"}, "file": {"name": "CHB6oSdNIPFu3CdR74BZKQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "dtiM4BIZ8uj8Pj0m6lGJqw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "04b8cebb47ace5fbbdd442c6b0b6ecd9cca323fb"}, "file": {"name": "dtiM4BIZ8uj8Pj0m6lGJqw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "qFV6xhVekP5-uToPI32rag"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "e13db30654e69f6d20d45376356bf83d9fd5c490"}, "file": {"name": "qFV6xhVekP5-uToPI32rag"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "uQABjZuvQhtEKnwbx2fUhQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "1f06001733b9be9478b105faf0dac6bdf36c85de"}, "file": {"name": "uQABjZuvQhtEKnwbx2fUhQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Z3CKaS4aU08RhYA19y5ITQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "ced267ea05869f9c3b8e789e83b7fa545f0b7c49"}, "file": {"name": "Z3CKaS4aU08RhYA19y5ITQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Jsaw4aRwbsrSC4mkOwhwQQ"}}
{"@timestamp": "1677456000", "Executable": {"build": {"id": ""}, "file": {"name": "Jsaw4aRwbsrSC4mkOwhwQQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "ZHpec9nZGwrrhoUYM845NA"}}
{"@timestamp": "1676851200", "Executable": {"build": {"id": ""}, "file": {"name": "ZHpec9nZGwrrhoUYM845NA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "uof2oKCX86V-_cQCuGg7Ew"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "ede88b3a0c7efa97624d2875c85517af0a739253"}, "file": {"name": "uof2oKCX86V-_cQCuGg7Ew"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "9BM25vr762IbGPHbtur65g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "b9d5f73428bd6ad68c96986b57bea3b7cedb9745"}, "file": {"name": "9BM25vr762IbGPHbtur65g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "MP5HRDaDTxfL7AK376UJ7g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "MP5HRDaDTxfL7AK376UJ7g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "klPbOjidNHRsFecU34u2tQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "11c85923a4f8a1024e7362084c9b85dd241330b5"}, "file": {"name": "klPbOjidNHRsFecU34u2tQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "R_3RsDYccfUxjNYYah3JZg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "71f0f3074a929e519e85f6a5c03a7d1fd976bfe4"}, "file": {"name": "R_3RsDYccfUxjNYYah3JZg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "ZSkKN3zNxr0HYuO2pqe5hQ"}}
{"@timestamp": "1677456000", "Executable": {"build": {"id": ""}, "file": {"name": "ZSkKN3zNxr0HYuO2pqe5hQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "2gc0AZFX7cRANst-IF7zQA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "94b20c7f7a0529512f63bae145b524890ceae5a5"}, "file": {"name": "2gc0AZFX7cRANst-IF7zQA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "J6GSZQSmfOBquczb-SF8bA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "9c7a770263493ec798d32cd798c22e08491e48d7"}, "file": {"name": "J6GSZQSmfOBquczb-SF8bA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "wEIfl0pGBuepuUcTwdKc2g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "101d8983a254f1b26637242e10b80ecae42eff2d"}, "file": {"name": "wEIfl0pGBuepuUcTwdKc2g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "sTGLCNH21piOrMPoln5uBQ"}}
{"@timestamp": "1678060800", "Executable": {"build": {"id": ""}, "file": {"name": "sTGLCNH21piOrMPoln5uBQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "0qzGEnWLNN8utw6c2ruTzg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "0qzGEnWLNN8utw6c2ruTzg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "qYXyCTfSoRiD_M2RLVXihA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "e629008d82b69029fec4d9755ab7f7ef2234885d"}, "file": {"name": "qYXyCTfSoRiD_M2RLVXihA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "gtQ4kMk_MBWrPUAFqVnYyw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "489d0f22c85c3a32cedf379a2deb4b94829ec873"}, "file": {"name": "gtQ4kMk_MBWrPUAFqVnYyw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "IG5EpvTeHopVC9IqkA_kSg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "82ea9e63228be586342161635bc31afbb96637a7"}, "file": {"name": "IG5EpvTeHopVC9IqkA_kSg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "vQ7EacG6CR4rzcFaNFEsTQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "7b4536f41cdaa5888408e82d0836e33dcf436466"}, "file": {"name": "vQ7EacG6CR4rzcFaNFEsTQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Yxe-SHgukLEpCkawSk1QWA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "48bc7a3db1ec42839f4106b0d13a932c60d75405"}, "file": {"name": "Yxe-SHgukLEpCkawSk1QWA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "cgIdU-uvJLoO1WrtsV2P8g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "bb16b0161f80427dc45ea6e94c412fcad34bc15a"}, "file": {"name": "cgIdU-uvJLoO1WrtsV2P8g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "YsnZ_Lwaqr0cHEPo0D185Q"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "YsnZ_Lwaqr0cHEPo0D185Q"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Sxgb26oKQwlt07if9woPTQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "af19d8efb1fb159bdc44e043adbc3412c282ad12"}, "file": {"name": "Sxgb26oKQwlt07if9woPTQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "c6lwtZBG2BzNKGtSyzLrTA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "230acb059171dc7c19b9318d5ef5feb2c6f4e568"}, "file": {"name": "c6lwtZBG2BzNKGtSyzLrTA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "qMaIQHwhzmbCa4rmJIpC-w"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "52efb3ab08eb9c9a6def547a991b4f167fa80022"}, "file": {"name": "qMaIQHwhzmbCa4rmJIpC-w"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "8NlMClggx8jaziUTJXlmWA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "f0983025f0e0f327a6da752ff4ffa675e0be393f"}, "file": {"name": "8NlMClggx8jaziUTJXlmWA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "3mYYqsL3RyZ4MT4Z8-by-g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "3mYYqsL3RyZ4MT4Z8-by-g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "SNDzWiYDmLZi_Z1ZVETLoA"}}
{"@timestamp": "1676851200", "Executable": {"build": {"id": ""}, "file": {"name": "SNDzWiYDmLZi_Z1ZVETLoA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "2iSc_7W6mQyfzHA8XRDUrw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "32c06165c2d881e2a2818a73062abc3cc0bdb0a1"}, "file": {"name": "2iSc_7W6mQyfzHA8XRDUrw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "qx4FMnWuIFjZ3ox_KYmoKw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "qx4FMnWuIFjZ3ox_KYmoKw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "CCkMJUJSep499Owma_umeA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "de8cc35a80d72702fb10b7217b73c681caedf499"}, "file": {"name": "CCkMJUJSep499Owma_umeA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "-IlGUwajicqSE5-hS5VYig"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "8b60b9f8d9a27f2264a0d8e6c0768b3b02c29926"}, "file": {"name": "-IlGUwajicqSE5-hS5VYig"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "z5k14PsCcDvFyUC1kmlV3Q"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "0eca98a615313a9d2be9a993097f65969dee8816"}, "file": {"name": "z5k14PsCcDvFyUC1kmlV3Q"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "-FiXU0afkg-sRwubj2WiAw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "a607524ba9b6f400a9af233fa574bc7f2abd5f33"}, "file": {"name": "-FiXU0afkg-sRwubj2WiAw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "D4Dr8MgtAQr1KQWI51wjAw"}}
{"@timestamp": "1676851200", "Executable": {"build": {"id": ""}, "file": {"name": "D4Dr8MgtAQr1KQWI51wjAw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "UbK4uezrplMLlSw0h87Xfg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "6eee75cb89aff959ae1ba2c54194fd82d6aa604e"}, "file": {"name": "UbK4uezrplMLlSw0h87Xfg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "6tVKI4mSYDEJ-ABAIpYXcg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "c5f89ea1c68710d2a493bb604c343a92c4f8ddeb"}, "file": {"name": "6tVKI4mSYDEJ-ABAIpYXcg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "am-Z0RfUVY0oYK5VXRDk9w"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "10b53d2317fc7019f88bbcc546ca761c8a4c76cc"}, "file": {"name": "am-Z0RfUVY0oYK5VXRDk9w"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "XT4fd_WKeR1cE-hlLelCQA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "562adab00e70282ab9d563a7aeaff7bc7c4e0f61"}, "file": {"name": "XT4fd_WKeR1cE-hlLelCQA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "S5FLyxJzArwdyTGdAwNyNA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "27ffd1fbc69569c776e666474eed723395e6d727"}, "file": {"name": "S5FLyxJzArwdyTGdAwNyNA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "pp6LgRqCGeGjs7cnnwItcA"}}
{"@timestamp": "1678060800", "Executable": {"build": {"id": "a91d7b51b23a64e86b82a91511c446c137d3ec8e"}, "file": {"name": "pp6LgRqCGeGjs7cnnwItcA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "QRLEHBaKoaTG7nEoPkKciQ"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "QRLEHBaKoaTG7nEoPkKciQ"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "TRhdHOKO7GmLMAaUL3Xw6Q"}}
{"@timestamp": "1676851200", "Executable": {"build": {"id": ""}, "file": {"name": "TRhdHOKO7GmLMAaUL3Xw6Q"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "t-dIxcHyLp_aTZW6ZkmJVA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "9ea8014cf02021a29e57aa3e0512e9bb6e30541d"}, "file": {"name": "t-dIxcHyLp_aTZW6ZkmJVA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "1NmuNXqOaWlDl-ljfvsBcw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "1NmuNXqOaWlDl-ljfvsBcw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Ifn5UOOZw7Eb-8v_kPDQow"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "3a290cfffcf4a580f1579a0fc9988346eb180264"}, "file": {"name": "Ifn5UOOZw7Eb-8v_kPDQow"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "hrCIM-i5cm0sSd-oVTZrsg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "hrCIM-i5cm0sSd-oVTZrsg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "_0p5KjcGZxNrWgyCAXUjfg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "_0p5KjcGZxNrWgyCAXUjfg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "NvEDT4zSZcnoSuXBl2lV4g"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "7cbcb0322f585236d81b557ed95c708f98a20c33"}, "file": {"name": "NvEDT4zSZcnoSuXBl2lV4g"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "qjB_amR59Lv13Nhle_Nwbw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "1878e6b475720c7c51969e69ab2d276fae6d1dee"}, "file": {"name": "qjB_amR59Lv13Nhle_Nwbw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "DHMn6ZZcNA6-RmrkDCI6ig"}}
{"@timestamp": "1678060800", "Executable": {"build": {"id": ""}, "file": {"name": "DHMn6ZZcNA6-RmrkDCI6ig"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "xFA0V1dCXRoFBkiljWo8aA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "xFA0V1dCXRoFBkiljWo8aA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "rtOWfs-RaxXWHIPyRB9RAA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "e745ee2423d5388da9345298b9499a5308e467b2"}, "file": {"name": "rtOWfs-RaxXWHIPyRB9RAA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "Clmtm3Gj4Mb2mUsOYrmYag"}}
{"@timestamp": "1678060800", "Executable": {"build": {"id": ""}, "file": {"name": "Clmtm3Gj4Mb2mUsOYrmYag"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "hpS1QtdrBQjGg-LCbfqeSA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "d1163134b6cc14098083ac420083eea08b245718"}, "file": {"name": "hpS1QtdrBQjGg-LCbfqeSA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "xMRv8h0MeAAUolTb6e8vGw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "62c449974331341bb08dcce3859560a22af1e172"}, "file": {"name": "xMRv8h0MeAAUolTb6e8vGw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "pqmEMTIUDz-nhY9YtlE3YA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "3fa84cf2a0a53f8cf90190794bb3e3947edc589f"}, "file": {"name": "pqmEMTIUDz-nhY9YtlE3YA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "NH411-U9ZJbhx9KntPIOtA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "4431119007b4c6c2321f0b6ee069885935a3885d"}, "file": {"name": "NH411-U9ZJbhx9KntPIOtA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "L9Bd3XIiGWasJdN8trI5tg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "L9Bd3XIiGWasJdN8trI5tg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "sjkXvSc06kCzT5ulprfEPA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "552e8051256198b01b16ebf5ff0e611697b57645"}, "file": {"name": "sjkXvSc06kCzT5ulprfEPA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "_QYAzQdAagYTCI2yUMpa7w"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "2b482b3bae79def4e5bc9791bc6bbdae0e93e359"}, "file": {"name": "_QYAzQdAagYTCI2yUMpa7w"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "SVqTovndX3vgWwiNPDrUZA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "SVqTovndX3vgWwiNPDrUZA"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "SHpn8pwAHiX47J0IzMtXvw"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "c82d390b13c4cea8624cd19365023f7d6c07e4fa"}, "file": {"name": "SHpn8pwAHiX47J0IzMtXvw"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "tQgAmBJBgPLrkikSPRsmtg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "e10cc8f2b932fc3daeda22f8dac5ebb969524e5b"}, "file": {"name": "tQgAmBJBgPLrkikSPRsmtg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "a7-X3xxhJ0wnbzlLWX3GVg"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": ""}, "file": {"name": "a7-X3xxhJ0wnbzlLWX3GVg"}}, "ecs": {"version": "1.12.0"}}
{"create": {"_index": "profiling-executables", "_id": "KBED7d_qPYnnB4dZrQQHsA"}}
{"@timestamp": "1679270400", "Executable": {"build": {"id": "622f79c1ab7612f082403f4987ce1dac287775c3"}, "file": {"name": "KBED7d_qPYnnB4dZrQQHsA"}}, "ecs": {"version": "1.12.0"}}

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,6 @@
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import globby from 'globby';
import path from 'path';
import fs from 'fs';
import { createEsClientForTesting } from '@kbn/test';
@ -26,12 +25,12 @@ export async function loadProfilingData({
isCloud: true,
});
const dataAsArray = globby.sync('*', { cwd: esArchiversPath }).flatMap((fileName) => {
const content = fs.readFileSync(`${esArchiversPath}/${fileName}`, 'utf8');
return content.split('\n');
});
const profilingData = fs.readFileSync(
`${esArchiversPath}/profiling_data_anonymized.json`,
'utf8'
);
await client.bulk({ operations: dataAsArray, refresh: 'wait_for' });
await client.bulk({ operations: profilingData.split('\n'), refresh: 'wait_for', timeout: '1m' });
// eslint-disable-next-line no-console
console.log('[Done] Loading Universal profiling data.');
}

View file

@ -33,28 +33,33 @@ export function getImpactRows({
totalSeconds,
});
const impactRows = [
return [
{
'data-test-subj': 'totalCPU',
label: <CPULabelWithHint type="total" labelSize="s" iconSize="s" />,
value: asPercentage(totalCPU.percentage),
},
{
'data-test-subj': 'selfCPU',
label: <CPULabelWithHint type="self" labelSize="s" iconSize="s" />,
value: asPercentage(selfCPU.percentage),
},
{
'data-test-subj': 'samples',
label: i18n.translate('xpack.profiling.flameGraphInformationWindow.samplesInclusiveLabel', {
defaultMessage: 'Samples',
}),
value: asNumber(countInclusive),
},
{
'data-test-subj': 'selfSamples',
label: i18n.translate('xpack.profiling.flameGraphInformationWindow.samplesExclusiveLabel', {
defaultMessage: 'Samples (excl. children)',
}),
value: asNumber(countExclusive),
},
{
'data-test-subj': 'coreSeconds',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.coreSecondsInclusiveLabel',
{ defaultMessage: 'Core-seconds' }
@ -62,6 +67,7 @@ export function getImpactRows({
value: asDuration(totalCPU.coreSeconds),
},
{
'data-test-subj': 'selfCoreSeconds',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.coreSecondsExclusiveLabel',
{ defaultMessage: 'Core-seconds (excl. children)' }
@ -69,6 +75,7 @@ export function getImpactRows({
value: asDuration(selfCPU.coreSeconds),
},
{
'data-test-subj': 'annualizedCoreSeconds',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.annualizedCoreSecondsInclusiveLabel',
{ defaultMessage: 'Annualized core-seconds' }
@ -76,6 +83,7 @@ export function getImpactRows({
value: asDuration(totalCPU.annualizedCoreSeconds),
},
{
'data-test-subj': 'annualizedSelfCoreSeconds',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.annualizedCoreSecondsExclusiveLabel',
{ defaultMessage: 'Annualized core-seconds (excl. children)' }
@ -83,6 +91,7 @@ export function getImpactRows({
value: asDuration(selfCPU.annualizedCoreSeconds),
},
{
'data-test-subj': 'co2Emission',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.co2EmissionInclusiveLabel',
{
@ -92,6 +101,7 @@ export function getImpactRows({
value: asWeight(totalCPU.co2),
},
{
'data-test-subj': 'selfCo2Emission',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.co2EmissionExclusiveLabel',
{ defaultMessage: 'CO2 emission (excl. children)' }
@ -99,6 +109,7 @@ export function getImpactRows({
value: asWeight(selfCPU.co2),
},
{
'data-test-subj': 'annualizedCo2Emission',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.annualizedCo2InclusiveLabel',
{ defaultMessage: 'Annualized CO2' }
@ -106,6 +117,7 @@ export function getImpactRows({
value: asWeight(totalCPU.annualizedCo2),
},
{
'data-test-subj': 'annualizedSelfCo2Emission',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.annualizedCo2ExclusiveLabel',
{ defaultMessage: 'Annualized CO2 (excl. children)' }
@ -113,6 +125,7 @@ export function getImpactRows({
value: asWeight(selfCPU.annualizedCo2),
},
{
'data-test-subj': 'dollarCost',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.dollarCostInclusiveLabel',
{ defaultMessage: 'Dollar cost' }
@ -120,6 +133,7 @@ export function getImpactRows({
value: asCost(totalCPU.dollarCost),
},
{
'data-test-subj': 'selfDollarCost',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.dollarCostExclusiveLabel',
{ defaultMessage: 'Dollar cost (excl. children)' }
@ -127,6 +141,7 @@ export function getImpactRows({
value: asCost(selfCPU.dollarCost),
},
{
'data-test-subj': 'annualizedDollarCost',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.annualizedDollarCostInclusiveLabel',
{ defaultMessage: 'Annualized dollar cost' }
@ -134,6 +149,7 @@ export function getImpactRows({
value: asCost(totalCPU.annualizedDollarCost),
},
{
'data-test-subj': 'annualizedSelfDollarCost',
label: i18n.translate(
'xpack.profiling.flameGraphInformationWindow.annualizedDollarCostExclusiveLabel',
{ defaultMessage: 'Annualized dollar cost (excl. children)' }
@ -141,6 +157,4 @@ export function getImpactRows({
value: asCost(selfCPU.annualizedDollarCost),
},
];
return impactRows;
}

View file

@ -33,6 +33,7 @@ export function getInformationRows({
if (executable) {
informationRows.push({
'data-test-subj': 'executable',
label: i18n.translate('xpack.profiling.flameGraphInformationWindow.executableLabel', {
defaultMessage: 'Executable',
}),
@ -40,6 +41,7 @@ export function getInformationRows({
});
} else {
informationRows.push({
'data-test-subj': 'frameType',
label: i18n.translate('xpack.profiling.flameGraphInformationWindow.frameTypeLabel', {
defaultMessage: 'Frame type',
}),
@ -48,6 +50,7 @@ export function getInformationRows({
}
informationRows.push({
'data-test-subj': 'function',
label: i18n.translate('xpack.profiling.flameGraphInformationWindow.functionLabel', {
defaultMessage: 'Function',
}),
@ -55,6 +58,7 @@ export function getInformationRows({
});
informationRows.push({
'data-test-subj': 'sourceFile',
label: i18n.translate('xpack.profiling.flameGraphInformationWindow.sourceFileLabel', {
defaultMessage: 'Source file',
}),

View file

@ -165,7 +165,7 @@ export function FrameInformationWindow({ frame, totalSamples, totalSeconds }: Pr
<FrameInformationPanel>
<EuiFlexGroup direction="column">
<EuiFlexItem>
<KeyValueList rows={informationRows} />
<KeyValueList data-test-subj="informationRows" rows={informationRows} />
</EuiFlexItem>
{aiAssistant.isEnabled() && promptMessages ? (
<>
@ -196,7 +196,7 @@ export function FrameInformationWindow({ frame, totalSamples, totalSeconds }: Pr
</EuiTitle>
</EuiFlexItem>
<EuiFlexItem>
<KeyValueList rows={impactRows} />
<KeyValueList data-test-subj="impactEstimates" rows={impactRows} />
</EuiFlexItem>
</EuiFlexGroup>
</EuiFlexItem>

View file

@ -9,11 +9,16 @@ import { EuiFlexGroup, EuiFlexItem, EuiHorizontalRule } from '@elastic/eui';
import React from 'react';
interface Props {
rows: Array<{ label: string | React.ReactNode; value: React.ReactNode }>;
'data-test-subj'?: string;
rows: Array<{
label: string | React.ReactNode;
value: React.ReactNode;
'data-test-subj'?: string;
}>;
prependString?: string;
}
export function KeyValueList({ rows, prependString = '' }: Props) {
export function KeyValueList({ rows, prependString = '', ...props }: Props) {
return (
<EuiFlexGroup direction="column" gutterSize="s">
{rows.map((row, index) => (
@ -23,7 +28,11 @@ export function KeyValueList({ rows, prependString = '' }: Props) {
<EuiFlexItem grow style={{ display: 'flex', flexDirection: 'row' }}>
{row.label}:
</EuiFlexItem>
<EuiFlexItem grow={false} style={{ alignSelf: 'flex-end', overflowWrap: 'anywhere' }}>
<EuiFlexItem
grow={false}
style={{ alignSelf: 'flex-end', overflowWrap: 'anywhere' }}
data-test-subj={`${props['data-test-subj']}_${row['data-test-subj']}`}
>
{prependString}
{row.value}
</EuiFlexItem>

View file

@ -145,6 +145,7 @@ export function PrimaryAndComparisonSearchBar() {
onRefreshClick={() => {
refresh();
}}
dataTestSubj="profilingComparisonUnifiedSearchBar"
/>
</EuiFlexItem>
</EuiFlexGroup>

View file

@ -58,6 +58,7 @@ export function ProfilingAppPageTemplate({
<ObservabilityPageTemplate
noDataConfig={noDataConfig}
pageHeader={{
'data-test-subj': 'profilingPageTemplate',
rightSideItems: [
<EuiButton
href={PROFILING_FEEDBACK_LINK}

View file

@ -20,6 +20,7 @@ export function ProfilingSearchBar({
onRefresh,
onRefreshClick,
showSubmitButton = true,
dataTestSubj = 'profilingUnifiedSearchBar',
}: {
kuery: string;
rangeFrom: string;
@ -34,6 +35,7 @@ export function ProfilingSearchBar({
onRefresh: Required<React.ComponentProps<typeof SearchBar>>['onRefresh'];
onRefreshClick: () => void;
showSubmitButton?: boolean;
dataTestSubj?: string;
}) {
const {
start: { dataViews },
@ -75,6 +77,7 @@ export function ProfilingSearchBar({
indexPatterns={compact([dataView])}
onRefresh={onRefresh}
displayStyle="inPage"
dataTestSubj={dataTestSubj}
/>
);
}

View file

@ -42,6 +42,7 @@ interface Props {
sortField: TopNFunctionSortField;
sortDirection: 'asc' | 'desc';
onChangeSort: (sorting: EuiDataGridSorting['columns'][0]) => void;
dataTestSubj?: string;
}
export const TopNFunctionsGrid = forwardRef(
@ -61,6 +62,7 @@ export const TopNFunctionsGrid = forwardRef(
sortField,
sortDirection,
onChangeSort,
dataTestSubj = 'topNFunctionsGrid',
}: Props,
ref: Ref<EuiDataGridRefProps> | undefined
) => {
@ -262,11 +264,12 @@ export const TopNFunctionsGrid = forwardRef(
return (
<>
<EuiDataGrid
data-test-subj={dataTestSubj}
ref={ref}
aria-label="TopN functions"
columns={columns}
columnVisibility={{ visibleColumns, setVisibleColumns }}
rowCount={100}
rowCount={totalCount > 100 ? 100 : totalCount}
renderCellValue={RenderCellValue}
inMemory={{ level: 'sorting' }}
sorting={{ columns: [{ id: sortField, direction: sortDirection }], onSort }}

View file

@ -94,6 +94,7 @@ export function TopNFunctionsSummary({
const data = [
{
id: 'overallPerformance',
title: i18n.translate('xpack.profiling.diffTopNFunctions.summary.performance', {
defaultMessage: '{label} overall performance by',
values: {
@ -113,6 +114,7 @@ export function TopNFunctionsSummary({
titleHint: ESTIMATED_VALUE_LABEL,
},
{
id: 'annualizedCo2',
title: i18n.translate('xpack.profiling.diffTopNFunctions.summary.co2', {
defaultMessage: 'Annualized CO2 emission impact',
}) as string,
@ -124,6 +126,7 @@ export function TopNFunctionsSummary({
titleHint: ESTIMATED_VALUE_LABEL,
},
{
id: 'annualizedCost',
title: i18n.translate('xpack.profiling.diffTopNFunctions.summary.cost', {
defaultMessage: 'Annualized cost impact',
}) as string,
@ -135,6 +138,7 @@ export function TopNFunctionsSummary({
titleHint: ESTIMATED_VALUE_LABEL,
},
{
id: 'totalNumberOfSamples',
title: i18n.translate('xpack.profiling.diffTopNFunctions.summary.samples', {
defaultMessage: 'Total number of samples',
}) as string,

View file

@ -19,6 +19,7 @@ import {
import React from 'react';
interface Props {
id: string;
title: string;
isLoading: boolean;
baseValue: string;
@ -39,16 +40,26 @@ function Title({ title }: { title: string }) {
);
}
function BaseValue({ value, icon, color }: { value: string; icon?: string; color?: string }) {
function BaseValue({
id,
value,
icon,
color,
}: {
id: string;
value: string;
icon?: string;
color?: string;
}) {
return (
<EuiFlexGroup gutterSize="s" justifyContent="flexEnd">
{icon ? (
<EuiFlexItem grow={false} style={{ justifyContent: 'center' }}>
<EuiIcon type={icon} color={color} size="l" />
<EuiIcon data-test-subj={`${id}_${icon}_${color}`} type={icon} color={color} size="l" />
</EuiFlexItem>
) : null}
<EuiFlexItem grow={false}>
<EuiTextColor style={{ fontWeight: 'bold' }} color={color}>
<EuiTextColor style={{ fontWeight: 'bold' }} color={color} data-test-subj={`${id}_value`}>
{value}
</EuiTextColor>
</EuiFlexItem>
@ -61,6 +72,7 @@ export function getValueLable(value: string, perc?: string) {
}
export function SummaryItem({
id,
baseValue,
baseIcon,
baseColor,
@ -75,7 +87,7 @@ export function SummaryItem({
return (
<EuiPanel hasShadow={false}>
<EuiStat
title={<BaseValue value={baseValue} color={baseColor} icon={baseIcon} />}
title={<BaseValue id={id} value={baseValue} color={baseColor} icon={baseIcon} />}
titleSize="m"
description={
<>
@ -101,8 +113,15 @@ export function SummaryItem({
>
{!isLoading && comparisonValue ? (
<EuiText color={comparisonColor}>
{comparisonIcon ? <EuiIcon type={comparisonIcon} /> : null}
{getValueLable(comparisonValue, comparisonPerc)}
{comparisonIcon ? (
<EuiIcon
data-test-subj={`${id}_comparison_${comparisonIcon}_${comparisonColor}`}
type={comparisonIcon}
/>
) : null}
<span data-test-subj={`${id}_comparison_value`}>
{getValueLable(comparisonValue, comparisonPerc)}
</span>
</EuiText>
) : null}
</EuiStat>

View file

@ -251,6 +251,7 @@ export function DifferentialTopNFunctionsView() {
sortField={sortField}
sortDirection={sortDirection}
onChangeSort={handleSortChange}
dataTestSubj="TopNFunctionsComparisonGrid"
/>
</AsyncComponent>
</EuiFlexItem>

View file

@ -106,8 +106,8 @@ function IndexSizeItem({
borderBottom: `${theme.euiTheme.border.width.thin} solid ${theme.euiTheme.border.color}`,
}}
>
<EuiFlexItem style={{ paddingLeft: 8 }}>
{docCount ? (
<EuiFlexItem style={{ paddingLeft: 8 }} data-test-subj={`${indexName}_docSize`}>
{docCount !== undefined ? (
asInteger(docCount)
) : (
<EuiText color="subdued" size="s">
@ -115,7 +115,7 @@ function IndexSizeItem({
</EuiText>
)}
</EuiFlexItem>
<EuiFlexItem style={{ paddingLeft: 8 }}>
<EuiFlexItem style={{ paddingLeft: 8 }} data-test-subj={`${indexName}_size`}>
{sizeInBytes ? (
asDynamicBytes(sizeInBytes)
) : (

View file

@ -108,6 +108,7 @@ export function HostsTable({ data = [], hasDistinctProbabilisticValues }: Props)
render: (_, item) => {
return (
<EuiLink
data-test-subj={`hostId_${item.hostId}`}
className="eui-textTruncate"
href={profilingRouter.link('/flamegraphs/flamegraph', {
query: { rangeFrom, rangeTo, kuery: `${'host.id'}: "${item.hostId}"` },

View file

@ -26,6 +26,7 @@ interface SummaryInfo {
title: string;
value?: string | number;
hint?: string;
dataTestSubj?: string;
}
export function Summary({ data, isLoading }: Props) {
@ -38,6 +39,7 @@ export function Summary({ data, isLoading }: Props) {
const summaryInfo: SummaryInfo[] = [
{
dataTestSubj: 'totalData',
title: i18n.translate('xpack.profiling.storageExplorer.summary.totalData', {
defaultMessage: 'Total data',
}),
@ -50,6 +52,7 @@ export function Summary({ data, isLoading }: Props) {
}),
},
{
dataTestSubj: 'dailyDataGeneration',
title: i18n.translate('xpack.profiling.storageExplorer.summary.dailyDataGeneration', {
defaultMessage: 'Daily data generation',
}),
@ -58,6 +61,7 @@ export function Summary({ data, isLoading }: Props) {
: undefined,
},
{
dataTestSubj: 'totalDebugSymbolsSize',
title: i18n.translate('xpack.profiling.storageExplorer.summary.totalDebugSymbolsSize', {
defaultMessage: 'Total debug symbols size',
}),
@ -67,6 +71,7 @@ export function Summary({ data, isLoading }: Props) {
}),
},
{
dataTestSubj: 'diskSpaceUsed',
title: i18n.translate('xpack.profiling.storageExplorer.summary.discSpaceUsed', {
defaultMessage: 'Disk space used',
}),
@ -77,6 +82,7 @@ export function Summary({ data, isLoading }: Props) {
}),
},
{
dataTestSubj: 'numberOfHostsAgents',
title: i18n.translate('xpack.profiling.storageExplorer.summary.numberOfHosts', {
defaultMessage: 'Number of host agents',
}),
@ -102,7 +108,7 @@ export function Summary({ data, isLoading }: Props) {
)
}
titleSize="s"
title={item.value}
title={<span data-test-subj={item.dataTestSubj}>{item.value}</span>}
isLoading={isLoading}
/>
</EuiFlexItem>

View file

@ -115,7 +115,7 @@ export async function getHostBreakdownSizeTimeseries({
return {
hostId,
hostName: hostDetails.hostName,
hostName: hostDetails?.hostName || '',
timeseries,
};
}) || []

View file

@ -115,7 +115,7 @@ export async function getHostDetails({
return {
hostId,
hostName: hostDetails?.hostName,
hostName: hostDetails?.hostName || '',
probabilisticValues: currentProjectProbabilisticValues?.probabilisticValues || [],
projectId,
totalEventsSize: totalPerIndex.events,